public class UpsertResult extends Object implements Serializable
Java class for UpsertResult complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="UpsertResult"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="jobStatus" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="message" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="objectEditResult" type="{urn:sfobject.sfapi.successfactors.com}ObjectEditResult" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected String |
jobStatus |
protected String |
message |
protected List<ObjectEditResult> |
objectEditResults |
Constructor and Description |
---|
UpsertResult() |
Modifier and Type | Method and Description |
---|---|
String |
getJobStatus()
Gets the value of the jobStatus property.
|
String |
getMessage()
Gets the value of the message property.
|
List<ObjectEditResult> |
getObjectEditResults()
Gets the value of the objectEditResults property.
|
void |
setJobStatus(String value)
Sets the value of the jobStatus property.
|
void |
setMessage(String value)
Sets the value of the message property.
|
void |
setObjectEditResults(List<ObjectEditResult> objectEditResults)
Sets the value of the objectEditResults property.
|
protected String jobStatus
protected String message
protected List<ObjectEditResult> objectEditResults
public String getJobStatus()
String
public void setJobStatus(String value)
value
- allowed object is
String
public String getMessage()
String
public void setMessage(String value)
value
- allowed object is
String
public List<ObjectEditResult> getObjectEditResults()
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 set
method for the objectEditResults property.
For example, to add a new item, do as follows:
getObjectEditResults().add(newItem);
Objects of the following type(s) are allowed in the list
ObjectEditResult
public void setObjectEditResults(List<ObjectEditResult> objectEditResults)
objectEditResults
- allowed object is
ObjectEditResult
Copyright © 2010–2017. All rights reserved.