694 lines
33 KiB
Java
694 lines
33 KiB
Java
package com.sforce.soap.tooling.sobject;
|
|
|
|
/**
|
|
* This is a generated class for the SObject Enterprise API.
|
|
* Do not edit this file, as your changes will be lost.
|
|
*/
|
|
public class DeployTestResult extends com.sforce.soap.tooling.sobject.SObject {
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public DeployTestResult() {}
|
|
|
|
/* Cache the typeInfo instead of declaring static fields throughout*/
|
|
private transient java.util.Map<String, com.sforce.ws.bind.TypeInfo> typeInfoCache = new java.util.HashMap<String, com.sforce.ws.bind.TypeInfo>();
|
|
private com.sforce.ws.bind.TypeInfo _lookupTypeInfo(String fieldName, String namespace, String name, String typeNS, String type, int minOcc, int maxOcc, boolean elementForm) {
|
|
com.sforce.ws.bind.TypeInfo typeInfo = typeInfoCache.get(fieldName);
|
|
if (typeInfo == null) {
|
|
typeInfo = new com.sforce.ws.bind.TypeInfo(namespace, name, typeNS, type, minOcc, maxOcc, elementForm);
|
|
typeInfoCache.put(fieldName, typeInfo);
|
|
}
|
|
return typeInfo;
|
|
}
|
|
|
|
/**
|
|
* element : CodeType of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean CodeType__is_set = false;
|
|
|
|
private java.lang.String CodeType;
|
|
|
|
public java.lang.String getCodeType() {
|
|
return CodeType;
|
|
}
|
|
|
|
public void setCodeType(java.lang.String CodeType) {
|
|
this.CodeType = CodeType;
|
|
CodeType__is_set = true;
|
|
}
|
|
|
|
protected void setCodeType(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("CodeType", "urn:sobject.tooling.soap.sforce.com","CodeType","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setCodeType(__typeMapper.readString(__in, _lookupTypeInfo("CodeType", "urn:sobject.tooling.soap.sforce.com","CodeType","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldCodeType(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("CodeType", "urn:sobject.tooling.soap.sforce.com","CodeType","http://www.w3.org/2001/XMLSchema","string",0,1,true), CodeType, CodeType__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : ComponentId of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean ComponentId__is_set = false;
|
|
|
|
private java.lang.String ComponentId;
|
|
|
|
public java.lang.String getComponentId() {
|
|
return ComponentId;
|
|
}
|
|
|
|
public void setComponentId(java.lang.String ComponentId) {
|
|
this.ComponentId = ComponentId;
|
|
ComponentId__is_set = true;
|
|
}
|
|
|
|
protected void setComponentId(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("ComponentId", "urn:sobject.tooling.soap.sforce.com","ComponentId","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setComponentId(__typeMapper.readString(__in, _lookupTypeInfo("ComponentId", "urn:sobject.tooling.soap.sforce.com","ComponentId","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldComponentId(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("ComponentId", "urn:sobject.tooling.soap.sforce.com","ComponentId","http://www.w3.org/2001/XMLSchema","string",0,1,true), ComponentId, ComponentId__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : CreatedBy of type {urn:sobject.tooling.soap.sforce.com}User
|
|
* java type: com.sforce.soap.tooling.sobject.User
|
|
*/
|
|
private boolean CreatedBy__is_set = false;
|
|
|
|
private com.sforce.soap.tooling.sobject.User CreatedBy;
|
|
|
|
public com.sforce.soap.tooling.sobject.User getCreatedBy() {
|
|
return CreatedBy;
|
|
}
|
|
|
|
public void setCreatedBy(com.sforce.soap.tooling.sobject.User CreatedBy) {
|
|
this.CreatedBy = CreatedBy;
|
|
CreatedBy__is_set = true;
|
|
}
|
|
|
|
protected void setCreatedBy(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("CreatedBy", "urn:sobject.tooling.soap.sforce.com","CreatedBy","urn:sobject.tooling.soap.sforce.com","User",0,1,true))) {
|
|
setCreatedBy((com.sforce.soap.tooling.sobject.User)__typeMapper.readObject(__in, _lookupTypeInfo("CreatedBy", "urn:sobject.tooling.soap.sforce.com","CreatedBy","urn:sobject.tooling.soap.sforce.com","User",0,1,true), com.sforce.soap.tooling.sobject.User.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldCreatedBy(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("CreatedBy", "urn:sobject.tooling.soap.sforce.com","CreatedBy","urn:sobject.tooling.soap.sforce.com","User",0,1,true), CreatedBy, CreatedBy__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : CreatedById of type {urn:tooling.soap.sforce.com}ID
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean CreatedById__is_set = false;
|
|
|
|
private java.lang.String CreatedById;
|
|
|
|
public java.lang.String getCreatedById() {
|
|
return CreatedById;
|
|
}
|
|
|
|
public void setCreatedById(java.lang.String CreatedById) {
|
|
this.CreatedById = CreatedById;
|
|
CreatedById__is_set = true;
|
|
}
|
|
|
|
protected void setCreatedById(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("CreatedById", "urn:sobject.tooling.soap.sforce.com","CreatedById","urn:tooling.soap.sforce.com","ID",0,1,true))) {
|
|
setCreatedById(__typeMapper.readString(__in, _lookupTypeInfo("CreatedById", "urn:sobject.tooling.soap.sforce.com","CreatedById","urn:tooling.soap.sforce.com","ID",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldCreatedById(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("CreatedById", "urn:sobject.tooling.soap.sforce.com","CreatedById","urn:tooling.soap.sforce.com","ID",0,1,true), CreatedById, CreatedById__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : CreatedDate of type {http://www.w3.org/2001/XMLSchema}dateTime
|
|
* java type: java.util.Calendar
|
|
*/
|
|
private boolean CreatedDate__is_set = false;
|
|
|
|
private java.util.Calendar CreatedDate;
|
|
|
|
public java.util.Calendar getCreatedDate() {
|
|
return CreatedDate;
|
|
}
|
|
|
|
public void setCreatedDate(java.util.Calendar CreatedDate) {
|
|
this.CreatedDate = CreatedDate;
|
|
CreatedDate__is_set = true;
|
|
}
|
|
|
|
protected void setCreatedDate(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("CreatedDate", "urn:sobject.tooling.soap.sforce.com","CreatedDate","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true))) {
|
|
setCreatedDate((java.util.Calendar)__typeMapper.readObject(__in, _lookupTypeInfo("CreatedDate", "urn:sobject.tooling.soap.sforce.com","CreatedDate","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true), java.util.Calendar.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldCreatedDate(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("CreatedDate", "urn:sobject.tooling.soap.sforce.com","CreatedDate","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true), CreatedDate, CreatedDate__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : DeployRequest of type {urn:sobject.tooling.soap.sforce.com}DeployRequest
|
|
* java type: com.sforce.soap.tooling.sobject.DeployRequest
|
|
*/
|
|
private boolean DeployRequest__is_set = false;
|
|
|
|
private com.sforce.soap.tooling.sobject.DeployRequest DeployRequest;
|
|
|
|
public com.sforce.soap.tooling.sobject.DeployRequest getDeployRequest() {
|
|
return DeployRequest;
|
|
}
|
|
|
|
public void setDeployRequest(com.sforce.soap.tooling.sobject.DeployRequest DeployRequest) {
|
|
this.DeployRequest = DeployRequest;
|
|
DeployRequest__is_set = true;
|
|
}
|
|
|
|
protected void setDeployRequest(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("DeployRequest", "urn:sobject.tooling.soap.sforce.com","DeployRequest","urn:sobject.tooling.soap.sforce.com","DeployRequest",0,1,true))) {
|
|
setDeployRequest((com.sforce.soap.tooling.sobject.DeployRequest)__typeMapper.readObject(__in, _lookupTypeInfo("DeployRequest", "urn:sobject.tooling.soap.sforce.com","DeployRequest","urn:sobject.tooling.soap.sforce.com","DeployRequest",0,1,true), com.sforce.soap.tooling.sobject.DeployRequest.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldDeployRequest(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("DeployRequest", "urn:sobject.tooling.soap.sforce.com","DeployRequest","urn:sobject.tooling.soap.sforce.com","DeployRequest",0,1,true), DeployRequest, DeployRequest__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : DeployRequestId of type {urn:tooling.soap.sforce.com}ID
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean DeployRequestId__is_set = false;
|
|
|
|
private java.lang.String DeployRequestId;
|
|
|
|
public java.lang.String getDeployRequestId() {
|
|
return DeployRequestId;
|
|
}
|
|
|
|
public void setDeployRequestId(java.lang.String DeployRequestId) {
|
|
this.DeployRequestId = DeployRequestId;
|
|
DeployRequestId__is_set = true;
|
|
}
|
|
|
|
protected void setDeployRequestId(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("DeployRequestId", "urn:sobject.tooling.soap.sforce.com","DeployRequestId","urn:tooling.soap.sforce.com","ID",0,1,true))) {
|
|
setDeployRequestId(__typeMapper.readString(__in, _lookupTypeInfo("DeployRequestId", "urn:sobject.tooling.soap.sforce.com","DeployRequestId","urn:tooling.soap.sforce.com","ID",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldDeployRequestId(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("DeployRequestId", "urn:sobject.tooling.soap.sforce.com","DeployRequestId","urn:tooling.soap.sforce.com","ID",0,1,true), DeployRequestId, DeployRequestId__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : IsDeleted of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: java.lang.Boolean
|
|
*/
|
|
private boolean IsDeleted__is_set = false;
|
|
|
|
private java.lang.Boolean IsDeleted;
|
|
|
|
public java.lang.Boolean getIsDeleted() {
|
|
return IsDeleted;
|
|
}
|
|
|
|
public void setIsDeleted(java.lang.Boolean IsDeleted) {
|
|
this.IsDeleted = IsDeleted;
|
|
IsDeleted__is_set = true;
|
|
}
|
|
|
|
protected void setIsDeleted(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("IsDeleted", "urn:sobject.tooling.soap.sforce.com","IsDeleted","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
|
setIsDeleted((java.lang.Boolean)__typeMapper.readObject(__in, _lookupTypeInfo("IsDeleted", "urn:sobject.tooling.soap.sforce.com","IsDeleted","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), java.lang.Boolean.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldIsDeleted(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("IsDeleted", "urn:sobject.tooling.soap.sforce.com","IsDeleted","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), IsDeleted, IsDeleted__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : LastModifiedBy of type {urn:sobject.tooling.soap.sforce.com}User
|
|
* java type: com.sforce.soap.tooling.sobject.User
|
|
*/
|
|
private boolean LastModifiedBy__is_set = false;
|
|
|
|
private com.sforce.soap.tooling.sobject.User LastModifiedBy;
|
|
|
|
public com.sforce.soap.tooling.sobject.User getLastModifiedBy() {
|
|
return LastModifiedBy;
|
|
}
|
|
|
|
public void setLastModifiedBy(com.sforce.soap.tooling.sobject.User LastModifiedBy) {
|
|
this.LastModifiedBy = LastModifiedBy;
|
|
LastModifiedBy__is_set = true;
|
|
}
|
|
|
|
protected void setLastModifiedBy(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("LastModifiedBy", "urn:sobject.tooling.soap.sforce.com","LastModifiedBy","urn:sobject.tooling.soap.sforce.com","User",0,1,true))) {
|
|
setLastModifiedBy((com.sforce.soap.tooling.sobject.User)__typeMapper.readObject(__in, _lookupTypeInfo("LastModifiedBy", "urn:sobject.tooling.soap.sforce.com","LastModifiedBy","urn:sobject.tooling.soap.sforce.com","User",0,1,true), com.sforce.soap.tooling.sobject.User.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldLastModifiedBy(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("LastModifiedBy", "urn:sobject.tooling.soap.sforce.com","LastModifiedBy","urn:sobject.tooling.soap.sforce.com","User",0,1,true), LastModifiedBy, LastModifiedBy__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : LastModifiedById of type {urn:tooling.soap.sforce.com}ID
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean LastModifiedById__is_set = false;
|
|
|
|
private java.lang.String LastModifiedById;
|
|
|
|
public java.lang.String getLastModifiedById() {
|
|
return LastModifiedById;
|
|
}
|
|
|
|
public void setLastModifiedById(java.lang.String LastModifiedById) {
|
|
this.LastModifiedById = LastModifiedById;
|
|
LastModifiedById__is_set = true;
|
|
}
|
|
|
|
protected void setLastModifiedById(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("LastModifiedById", "urn:sobject.tooling.soap.sforce.com","LastModifiedById","urn:tooling.soap.sforce.com","ID",0,1,true))) {
|
|
setLastModifiedById(__typeMapper.readString(__in, _lookupTypeInfo("LastModifiedById", "urn:sobject.tooling.soap.sforce.com","LastModifiedById","urn:tooling.soap.sforce.com","ID",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldLastModifiedById(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("LastModifiedById", "urn:sobject.tooling.soap.sforce.com","LastModifiedById","urn:tooling.soap.sforce.com","ID",0,1,true), LastModifiedById, LastModifiedById__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : LastModifiedDate of type {http://www.w3.org/2001/XMLSchema}dateTime
|
|
* java type: java.util.Calendar
|
|
*/
|
|
private boolean LastModifiedDate__is_set = false;
|
|
|
|
private java.util.Calendar LastModifiedDate;
|
|
|
|
public java.util.Calendar getLastModifiedDate() {
|
|
return LastModifiedDate;
|
|
}
|
|
|
|
public void setLastModifiedDate(java.util.Calendar LastModifiedDate) {
|
|
this.LastModifiedDate = LastModifiedDate;
|
|
LastModifiedDate__is_set = true;
|
|
}
|
|
|
|
protected void setLastModifiedDate(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("LastModifiedDate", "urn:sobject.tooling.soap.sforce.com","LastModifiedDate","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true))) {
|
|
setLastModifiedDate((java.util.Calendar)__typeMapper.readObject(__in, _lookupTypeInfo("LastModifiedDate", "urn:sobject.tooling.soap.sforce.com","LastModifiedDate","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true), java.util.Calendar.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldLastModifiedDate(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("LastModifiedDate", "urn:sobject.tooling.soap.sforce.com","LastModifiedDate","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true), LastModifiedDate, LastModifiedDate__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : Message of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean Message__is_set = false;
|
|
|
|
private java.lang.String Message;
|
|
|
|
public java.lang.String getMessage() {
|
|
return Message;
|
|
}
|
|
|
|
public void setMessage(java.lang.String Message) {
|
|
this.Message = Message;
|
|
Message__is_set = true;
|
|
}
|
|
|
|
protected void setMessage(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("Message", "urn:sobject.tooling.soap.sforce.com","Message","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setMessage(__typeMapper.readString(__in, _lookupTypeInfo("Message", "urn:sobject.tooling.soap.sforce.com","Message","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldMessage(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("Message", "urn:sobject.tooling.soap.sforce.com","Message","http://www.w3.org/2001/XMLSchema","string",0,1,true), Message, Message__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : MethodName of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean MethodName__is_set = false;
|
|
|
|
private java.lang.String MethodName;
|
|
|
|
public java.lang.String getMethodName() {
|
|
return MethodName;
|
|
}
|
|
|
|
public void setMethodName(java.lang.String MethodName) {
|
|
this.MethodName = MethodName;
|
|
MethodName__is_set = true;
|
|
}
|
|
|
|
protected void setMethodName(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("MethodName", "urn:sobject.tooling.soap.sforce.com","MethodName","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setMethodName(__typeMapper.readString(__in, _lookupTypeInfo("MethodName", "urn:sobject.tooling.soap.sforce.com","MethodName","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldMethodName(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("MethodName", "urn:sobject.tooling.soap.sforce.com","MethodName","http://www.w3.org/2001/XMLSchema","string",0,1,true), MethodName, MethodName__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : Name of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean Name__is_set = false;
|
|
|
|
private java.lang.String Name;
|
|
|
|
public java.lang.String getName() {
|
|
return Name;
|
|
}
|
|
|
|
public void setName(java.lang.String Name) {
|
|
this.Name = Name;
|
|
Name__is_set = true;
|
|
}
|
|
|
|
protected void setName(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("Name", "urn:sobject.tooling.soap.sforce.com","Name","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setName(__typeMapper.readString(__in, _lookupTypeInfo("Name", "urn:sobject.tooling.soap.sforce.com","Name","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldName(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("Name", "urn:sobject.tooling.soap.sforce.com","Name","http://www.w3.org/2001/XMLSchema","string",0,1,true), Name, Name__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : Namespace of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean Namespace__is_set = false;
|
|
|
|
private java.lang.String Namespace;
|
|
|
|
public java.lang.String getNamespace() {
|
|
return Namespace;
|
|
}
|
|
|
|
public void setNamespace(java.lang.String Namespace) {
|
|
this.Namespace = Namespace;
|
|
Namespace__is_set = true;
|
|
}
|
|
|
|
protected void setNamespace(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("Namespace", "urn:sobject.tooling.soap.sforce.com","Namespace","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setNamespace(__typeMapper.readString(__in, _lookupTypeInfo("Namespace", "urn:sobject.tooling.soap.sforce.com","Namespace","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldNamespace(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("Namespace", "urn:sobject.tooling.soap.sforce.com","Namespace","http://www.w3.org/2001/XMLSchema","string",0,1,true), Namespace, Namespace__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : StackTrace of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean StackTrace__is_set = false;
|
|
|
|
private java.lang.String StackTrace;
|
|
|
|
public java.lang.String getStackTrace() {
|
|
return StackTrace;
|
|
}
|
|
|
|
public void setStackTrace(java.lang.String StackTrace) {
|
|
this.StackTrace = StackTrace;
|
|
StackTrace__is_set = true;
|
|
}
|
|
|
|
protected void setStackTrace(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("StackTrace", "urn:sobject.tooling.soap.sforce.com","StackTrace","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setStackTrace(__typeMapper.readString(__in, _lookupTypeInfo("StackTrace", "urn:sobject.tooling.soap.sforce.com","StackTrace","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldStackTrace(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("StackTrace", "urn:sobject.tooling.soap.sforce.com","StackTrace","http://www.w3.org/2001/XMLSchema","string",0,1,true), StackTrace, StackTrace__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : Success of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: java.lang.Boolean
|
|
*/
|
|
private boolean Success__is_set = false;
|
|
|
|
private java.lang.Boolean Success;
|
|
|
|
public java.lang.Boolean getSuccess() {
|
|
return Success;
|
|
}
|
|
|
|
public void setSuccess(java.lang.Boolean Success) {
|
|
this.Success = Success;
|
|
Success__is_set = true;
|
|
}
|
|
|
|
protected void setSuccess(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("Success", "urn:sobject.tooling.soap.sforce.com","Success","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
|
setSuccess((java.lang.Boolean)__typeMapper.readObject(__in, _lookupTypeInfo("Success", "urn:sobject.tooling.soap.sforce.com","Success","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), java.lang.Boolean.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldSuccess(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("Success", "urn:sobject.tooling.soap.sforce.com","Success","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), Success, Success__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : SystemModstamp of type {http://www.w3.org/2001/XMLSchema}dateTime
|
|
* java type: java.util.Calendar
|
|
*/
|
|
private boolean SystemModstamp__is_set = false;
|
|
|
|
private java.util.Calendar SystemModstamp;
|
|
|
|
public java.util.Calendar getSystemModstamp() {
|
|
return SystemModstamp;
|
|
}
|
|
|
|
public void setSystemModstamp(java.util.Calendar SystemModstamp) {
|
|
this.SystemModstamp = SystemModstamp;
|
|
SystemModstamp__is_set = true;
|
|
}
|
|
|
|
protected void setSystemModstamp(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("SystemModstamp", "urn:sobject.tooling.soap.sforce.com","SystemModstamp","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true))) {
|
|
setSystemModstamp((java.util.Calendar)__typeMapper.readObject(__in, _lookupTypeInfo("SystemModstamp", "urn:sobject.tooling.soap.sforce.com","SystemModstamp","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true), java.util.Calendar.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldSystemModstamp(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("SystemModstamp", "urn:sobject.tooling.soap.sforce.com","SystemModstamp","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true), SystemModstamp, SystemModstamp__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : Time of type {http://www.w3.org/2001/XMLSchema}int
|
|
* java type: java.lang.Integer
|
|
*/
|
|
private boolean Time__is_set = false;
|
|
|
|
private java.lang.Integer Time;
|
|
|
|
public java.lang.Integer getTime() {
|
|
return Time;
|
|
}
|
|
|
|
public void setTime(java.lang.Integer Time) {
|
|
this.Time = Time;
|
|
Time__is_set = true;
|
|
}
|
|
|
|
protected void setTime(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.isElement(__in, _lookupTypeInfo("Time", "urn:sobject.tooling.soap.sforce.com","Time","http://www.w3.org/2001/XMLSchema","int",0,1,true))) {
|
|
setTime((java.lang.Integer)__typeMapper.readObject(__in, _lookupTypeInfo("Time", "urn:sobject.tooling.soap.sforce.com","Time","http://www.w3.org/2001/XMLSchema","int",0,1,true), java.lang.Integer.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldTime(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("Time", "urn:sobject.tooling.soap.sforce.com","Time","http://www.w3.org/2001/XMLSchema","int",0,1,true), Time, Time__is_set);
|
|
}
|
|
|
|
/**
|
|
*/
|
|
@Override
|
|
public void write(javax.xml.namespace.QName __element,
|
|
com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper)
|
|
throws java.io.IOException {
|
|
__out.writeStartTag(__element.getNamespaceURI(), __element.getLocalPart());
|
|
__typeMapper.writeXsiType(__out, "urn:sobject.tooling.soap.sforce.com", "DeployTestResult");
|
|
writeFields(__out, __typeMapper);
|
|
__out.writeEndTag(__element.getNamespaceURI(), __element.getLocalPart());
|
|
}
|
|
|
|
protected void writeFields(com.sforce.ws.parser.XmlOutputStream __out,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper)
|
|
throws java.io.IOException {
|
|
super.writeFields(__out, __typeMapper);
|
|
writeFields1(__out, __typeMapper);
|
|
}
|
|
|
|
@Override
|
|
public void load(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__typeMapper.consumeStartTag(__in);
|
|
loadFields(__in, __typeMapper);
|
|
__typeMapper.consumeEndTag(__in);
|
|
}
|
|
|
|
protected void loadFields(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
super.loadFields(__in, __typeMapper);
|
|
loadFields1(__in, __typeMapper);
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
java.lang.StringBuilder sb = new java.lang.StringBuilder();
|
|
sb.append("[DeployTestResult ");
|
|
sb.append(super.toString());
|
|
toString1(sb);
|
|
|
|
sb.append("]\n");
|
|
return sb.toString();
|
|
}
|
|
|
|
private void toStringHelper(StringBuilder sb, String name, Object value) {
|
|
sb.append(' ').append(name).append("='").append(com.sforce.ws.util.Verbose.toString(value)).append("'\n");
|
|
}
|
|
|
|
private void writeFields1(com.sforce.ws.parser.XmlOutputStream __out,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
writeFieldCodeType(__out, __typeMapper);
|
|
writeFieldComponentId(__out, __typeMapper);
|
|
writeFieldCreatedBy(__out, __typeMapper);
|
|
writeFieldCreatedById(__out, __typeMapper);
|
|
writeFieldCreatedDate(__out, __typeMapper);
|
|
writeFieldDeployRequest(__out, __typeMapper);
|
|
writeFieldDeployRequestId(__out, __typeMapper);
|
|
writeFieldIsDeleted(__out, __typeMapper);
|
|
writeFieldLastModifiedBy(__out, __typeMapper);
|
|
writeFieldLastModifiedById(__out, __typeMapper);
|
|
writeFieldLastModifiedDate(__out, __typeMapper);
|
|
writeFieldMessage(__out, __typeMapper);
|
|
writeFieldMethodName(__out, __typeMapper);
|
|
writeFieldName(__out, __typeMapper);
|
|
writeFieldNamespace(__out, __typeMapper);
|
|
writeFieldStackTrace(__out, __typeMapper);
|
|
writeFieldSuccess(__out, __typeMapper);
|
|
writeFieldSystemModstamp(__out, __typeMapper);
|
|
writeFieldTime(__out, __typeMapper);
|
|
}
|
|
|
|
private void loadFields1(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
setCodeType(__in, __typeMapper);
|
|
setComponentId(__in, __typeMapper);
|
|
setCreatedBy(__in, __typeMapper);
|
|
setCreatedById(__in, __typeMapper);
|
|
setCreatedDate(__in, __typeMapper);
|
|
setDeployRequest(__in, __typeMapper);
|
|
setDeployRequestId(__in, __typeMapper);
|
|
setIsDeleted(__in, __typeMapper);
|
|
setLastModifiedBy(__in, __typeMapper);
|
|
setLastModifiedById(__in, __typeMapper);
|
|
setLastModifiedDate(__in, __typeMapper);
|
|
setMessage(__in, __typeMapper);
|
|
setMethodName(__in, __typeMapper);
|
|
setName(__in, __typeMapper);
|
|
setNamespace(__in, __typeMapper);
|
|
setStackTrace(__in, __typeMapper);
|
|
setSuccess(__in, __typeMapper);
|
|
setSystemModstamp(__in, __typeMapper);
|
|
setTime(__in, __typeMapper);
|
|
}
|
|
|
|
private void toString1(StringBuilder sb) {
|
|
toStringHelper(sb, "CodeType", CodeType);
|
|
toStringHelper(sb, "ComponentId", ComponentId);
|
|
toStringHelper(sb, "CreatedBy", CreatedBy);
|
|
toStringHelper(sb, "CreatedById", CreatedById);
|
|
toStringHelper(sb, "CreatedDate", CreatedDate);
|
|
toStringHelper(sb, "DeployRequest", DeployRequest);
|
|
toStringHelper(sb, "DeployRequestId", DeployRequestId);
|
|
toStringHelper(sb, "IsDeleted", IsDeleted);
|
|
toStringHelper(sb, "LastModifiedBy", LastModifiedBy);
|
|
toStringHelper(sb, "LastModifiedById", LastModifiedById);
|
|
toStringHelper(sb, "LastModifiedDate", LastModifiedDate);
|
|
toStringHelper(sb, "Message", Message);
|
|
toStringHelper(sb, "MethodName", MethodName);
|
|
toStringHelper(sb, "Name", Name);
|
|
toStringHelper(sb, "Namespace", Namespace);
|
|
toStringHelper(sb, "StackTrace", StackTrace);
|
|
toStringHelper(sb, "Success", Success);
|
|
toStringHelper(sb, "SystemModstamp", SystemModstamp);
|
|
toStringHelper(sb, "Time", Time);
|
|
}
|
|
|
|
|
|
}
|