Package be.recipe.services.core
Class RecipeExceptionDetails
- java.lang.Object
-
- be.recipe.services.core.RecipeExceptionDetails
-
public class RecipeExceptionDetails extends Object
Java class for recipeExceptionDetails complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="recipeExceptionDetails"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="errorMap"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="entry" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="value" type="{http:/services.recipe.be/core}recipeError" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType> </element> </sequence> </restriction> </complexContent> </complexType> </element> </sequence> </restriction> </complexContent> </complexType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classRecipeExceptionDetails.ErrorMapJava class for anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected Stringcodeprotected RecipeExceptionDetails.ErrorMaperrorMap
-
Constructor Summary
Constructors Constructor Description RecipeExceptionDetails()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCode()Gets the value of the code property.RecipeExceptionDetails.ErrorMapgetErrorMap()Gets the value of the errorMap property.voidsetCode(String value)Sets the value of the code property.voidsetErrorMap(RecipeExceptionDetails.ErrorMap value)Sets the value of the errorMap property.
-
-
-
Field Detail
-
code
protected String code
-
errorMap
protected RecipeExceptionDetails.ErrorMap errorMap
-
-
Method Detail
-
getCode
public String getCode()
Gets the value of the code property.- Returns:
- possible object is
String
-
setCode
public void setCode(String value)
Sets the value of the code property.- Parameters:
value- allowed object isString
-
getErrorMap
public RecipeExceptionDetails.ErrorMap getErrorMap()
Gets the value of the errorMap property.- Returns:
- possible object is
RecipeExceptionDetails.ErrorMap
-
setErrorMap
public void setErrorMap(RecipeExceptionDetails.ErrorMap value)
Sets the value of the errorMap property.- Parameters:
value- allowed object isRecipeExceptionDetails.ErrorMap
-
-