Class DomibusConnectorMessageResponseType
- java.lang.Object
-
- eu.domibus.connector.domain.transition.DomibusConnectorMessageResponseType
-
public class DomibusConnectorMessageResponseType extends Object
<p>Java class for DomibusConnectorMessageResponseType complex type. <p>The following schema fragment specifies the expected content contained within this class. <pre> <complexType name="DomibusConnectorMessageResponseType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="responseForMessageId" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="result" type="{http://www.w3.org/2001/XMLSchema}boolean"/> <element name="resultMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="assignedMessageId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="messageErrors" type="{transition.domain.connector.domibus.eu}DomibusConnectorMessageErrorType" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType> </pre>
-
-
Field Summary
Fields Modifier and Type Field Description protected String
assignedMessageId
protected List<DomibusConnectorMessageErrorType>
messageErrors
protected String
responseForMessageId
protected boolean
result
protected String
resultMessage
-
Constructor Summary
Constructors Constructor Description DomibusConnectorMessageResponseType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAssignedMessageId()
Gets the value of the assignedMessageId property.List<DomibusConnectorMessageErrorType>
getMessageErrors()
Gets the value of the messageErrors property.String
getResponseForMessageId()
Gets the value of the responseForMessageId property.String
getResultMessage()
Gets the value of the resultMessage property.boolean
isResult()
Gets the value of the result property.void
setAssignedMessageId(String value)
Sets the value of the assignedMessageId property.void
setResponseForMessageId(String value)
Sets the value of the responseForMessageId property.void
setResult(boolean value)
Sets the value of the result property.void
setResultMessage(String value)
Sets the value of the resultMessage property.
-
-
-
Field Detail
-
responseForMessageId
protected String responseForMessageId
-
result
protected boolean result
-
resultMessage
protected String resultMessage
-
assignedMessageId
protected String assignedMessageId
-
messageErrors
protected List<DomibusConnectorMessageErrorType> messageErrors
-
-
Method Detail
-
getResponseForMessageId
public String getResponseForMessageId()
Gets the value of the responseForMessageId property.- Returns:
- possible object is
String
-
setResponseForMessageId
public void setResponseForMessageId(String value)
Sets the value of the responseForMessageId property.- Parameters:
value
- allowed object isString
-
isResult
public boolean isResult()
Gets the value of the result property.
-
setResult
public void setResult(boolean value)
Sets the value of the result property.
-
getResultMessage
public String getResultMessage()
Gets the value of the resultMessage property.- Returns:
- possible object is
String
-
setResultMessage
public void setResultMessage(String value)
Sets the value of the resultMessage property.- Parameters:
value
- allowed object isString
-
getAssignedMessageId
public String getAssignedMessageId()
Gets the value of the assignedMessageId property.- Returns:
- possible object is
String
-
setAssignedMessageId
public void setAssignedMessageId(String value)
Sets the value of the assignedMessageId property.- Parameters:
value
- allowed object isString
-
getMessageErrors
public List<DomibusConnectorMessageErrorType> getMessageErrors()
Gets the value of the messageErrors property. <p> This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a <CODE>set</CODE> method for the messageErrors property. <p> For example, to add a new item, do as follows: <pre> getMessageErrors().add(newItem); </pre> <p> Objects of the following type(s) are allowed in the listDomibusConnectorMessageErrorType
-
-