918 lines
44 KiB
Java
918 lines
44 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 TraceFlag extends com.sforce.soap.tooling.sobject.SObject {
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public TraceFlag() {}
|
|
|
|
/* 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 : ApexCode of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean ApexCode__is_set = false;
|
|
|
|
private java.lang.String ApexCode;
|
|
|
|
public java.lang.String getApexCode() {
|
|
return ApexCode;
|
|
}
|
|
|
|
public void setApexCode(java.lang.String ApexCode) {
|
|
this.ApexCode = ApexCode;
|
|
ApexCode__is_set = true;
|
|
}
|
|
|
|
protected void setApexCode(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("ApexCode", "urn:sobject.tooling.soap.sforce.com","ApexCode","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setApexCode(__typeMapper.readString(__in, _lookupTypeInfo("ApexCode", "urn:sobject.tooling.soap.sforce.com","ApexCode","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldApexCode(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("ApexCode", "urn:sobject.tooling.soap.sforce.com","ApexCode","http://www.w3.org/2001/XMLSchema","string",0,1,true), ApexCode, ApexCode__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : ApexProfiling of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean ApexProfiling__is_set = false;
|
|
|
|
private java.lang.String ApexProfiling;
|
|
|
|
public java.lang.String getApexProfiling() {
|
|
return ApexProfiling;
|
|
}
|
|
|
|
public void setApexProfiling(java.lang.String ApexProfiling) {
|
|
this.ApexProfiling = ApexProfiling;
|
|
ApexProfiling__is_set = true;
|
|
}
|
|
|
|
protected void setApexProfiling(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("ApexProfiling", "urn:sobject.tooling.soap.sforce.com","ApexProfiling","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setApexProfiling(__typeMapper.readString(__in, _lookupTypeInfo("ApexProfiling", "urn:sobject.tooling.soap.sforce.com","ApexProfiling","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldApexProfiling(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("ApexProfiling", "urn:sobject.tooling.soap.sforce.com","ApexProfiling","http://www.w3.org/2001/XMLSchema","string",0,1,true), ApexProfiling, ApexProfiling__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : Callout of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean Callout__is_set = false;
|
|
|
|
private java.lang.String Callout;
|
|
|
|
public java.lang.String getCallout() {
|
|
return Callout;
|
|
}
|
|
|
|
public void setCallout(java.lang.String Callout) {
|
|
this.Callout = Callout;
|
|
Callout__is_set = true;
|
|
}
|
|
|
|
protected void setCallout(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("Callout", "urn:sobject.tooling.soap.sforce.com","Callout","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setCallout(__typeMapper.readString(__in, _lookupTypeInfo("Callout", "urn:sobject.tooling.soap.sforce.com","Callout","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldCallout(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("Callout", "urn:sobject.tooling.soap.sforce.com","Callout","http://www.w3.org/2001/XMLSchema","string",0,1,true), Callout, Callout__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 : DataAccess of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean DataAccess__is_set = false;
|
|
|
|
private java.lang.String DataAccess;
|
|
|
|
public java.lang.String getDataAccess() {
|
|
return DataAccess;
|
|
}
|
|
|
|
public void setDataAccess(java.lang.String DataAccess) {
|
|
this.DataAccess = DataAccess;
|
|
DataAccess__is_set = true;
|
|
}
|
|
|
|
protected void setDataAccess(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("DataAccess", "urn:sobject.tooling.soap.sforce.com","DataAccess","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setDataAccess(__typeMapper.readString(__in, _lookupTypeInfo("DataAccess", "urn:sobject.tooling.soap.sforce.com","DataAccess","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldDataAccess(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("DataAccess", "urn:sobject.tooling.soap.sforce.com","DataAccess","http://www.w3.org/2001/XMLSchema","string",0,1,true), DataAccess, DataAccess__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : Database of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean Database__is_set = false;
|
|
|
|
private java.lang.String Database;
|
|
|
|
public java.lang.String getDatabase() {
|
|
return Database;
|
|
}
|
|
|
|
public void setDatabase(java.lang.String Database) {
|
|
this.Database = Database;
|
|
Database__is_set = true;
|
|
}
|
|
|
|
protected void setDatabase(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("Database", "urn:sobject.tooling.soap.sforce.com","Database","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setDatabase(__typeMapper.readString(__in, _lookupTypeInfo("Database", "urn:sobject.tooling.soap.sforce.com","Database","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldDatabase(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("Database", "urn:sobject.tooling.soap.sforce.com","Database","http://www.w3.org/2001/XMLSchema","string",0,1,true), Database, Database__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : DebugLevel of type {urn:sobject.tooling.soap.sforce.com}DebugLevel
|
|
* java type: com.sforce.soap.tooling.sobject.DebugLevel
|
|
*/
|
|
private boolean DebugLevel__is_set = false;
|
|
|
|
private com.sforce.soap.tooling.sobject.DebugLevel DebugLevel;
|
|
|
|
public com.sforce.soap.tooling.sobject.DebugLevel getDebugLevel() {
|
|
return DebugLevel;
|
|
}
|
|
|
|
public void setDebugLevel(com.sforce.soap.tooling.sobject.DebugLevel DebugLevel) {
|
|
this.DebugLevel = DebugLevel;
|
|
DebugLevel__is_set = true;
|
|
}
|
|
|
|
protected void setDebugLevel(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("DebugLevel", "urn:sobject.tooling.soap.sforce.com","DebugLevel","urn:sobject.tooling.soap.sforce.com","DebugLevel",0,1,true))) {
|
|
setDebugLevel((com.sforce.soap.tooling.sobject.DebugLevel)__typeMapper.readObject(__in, _lookupTypeInfo("DebugLevel", "urn:sobject.tooling.soap.sforce.com","DebugLevel","urn:sobject.tooling.soap.sforce.com","DebugLevel",0,1,true), com.sforce.soap.tooling.sobject.DebugLevel.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldDebugLevel(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("DebugLevel", "urn:sobject.tooling.soap.sforce.com","DebugLevel","urn:sobject.tooling.soap.sforce.com","DebugLevel",0,1,true), DebugLevel, DebugLevel__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : DebugLevelId of type {urn:tooling.soap.sforce.com}ID
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean DebugLevelId__is_set = false;
|
|
|
|
private java.lang.String DebugLevelId;
|
|
|
|
public java.lang.String getDebugLevelId() {
|
|
return DebugLevelId;
|
|
}
|
|
|
|
public void setDebugLevelId(java.lang.String DebugLevelId) {
|
|
this.DebugLevelId = DebugLevelId;
|
|
DebugLevelId__is_set = true;
|
|
}
|
|
|
|
protected void setDebugLevelId(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("DebugLevelId", "urn:sobject.tooling.soap.sforce.com","DebugLevelId","urn:tooling.soap.sforce.com","ID",0,1,true))) {
|
|
setDebugLevelId(__typeMapper.readString(__in, _lookupTypeInfo("DebugLevelId", "urn:sobject.tooling.soap.sforce.com","DebugLevelId","urn:tooling.soap.sforce.com","ID",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldDebugLevelId(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("DebugLevelId", "urn:sobject.tooling.soap.sforce.com","DebugLevelId","urn:tooling.soap.sforce.com","ID",0,1,true), DebugLevelId, DebugLevelId__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : ExpirationDate of type {http://www.w3.org/2001/XMLSchema}dateTime
|
|
* java type: java.util.Calendar
|
|
*/
|
|
private boolean ExpirationDate__is_set = false;
|
|
|
|
private java.util.Calendar ExpirationDate;
|
|
|
|
public java.util.Calendar getExpirationDate() {
|
|
return ExpirationDate;
|
|
}
|
|
|
|
public void setExpirationDate(java.util.Calendar ExpirationDate) {
|
|
this.ExpirationDate = ExpirationDate;
|
|
ExpirationDate__is_set = true;
|
|
}
|
|
|
|
protected void setExpirationDate(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("ExpirationDate", "urn:sobject.tooling.soap.sforce.com","ExpirationDate","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true))) {
|
|
setExpirationDate((java.util.Calendar)__typeMapper.readObject(__in, _lookupTypeInfo("ExpirationDate", "urn:sobject.tooling.soap.sforce.com","ExpirationDate","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true), java.util.Calendar.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldExpirationDate(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("ExpirationDate", "urn:sobject.tooling.soap.sforce.com","ExpirationDate","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true), ExpirationDate, ExpirationDate__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 : LogType of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean LogType__is_set = false;
|
|
|
|
private java.lang.String LogType;
|
|
|
|
public java.lang.String getLogType() {
|
|
return LogType;
|
|
}
|
|
|
|
public void setLogType(java.lang.String LogType) {
|
|
this.LogType = LogType;
|
|
LogType__is_set = true;
|
|
}
|
|
|
|
protected void setLogType(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("LogType", "urn:sobject.tooling.soap.sforce.com","LogType","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setLogType(__typeMapper.readString(__in, _lookupTypeInfo("LogType", "urn:sobject.tooling.soap.sforce.com","LogType","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldLogType(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("LogType", "urn:sobject.tooling.soap.sforce.com","LogType","http://www.w3.org/2001/XMLSchema","string",0,1,true), LogType, LogType__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : Nba of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean Nba__is_set = false;
|
|
|
|
private java.lang.String Nba;
|
|
|
|
public java.lang.String getNba() {
|
|
return Nba;
|
|
}
|
|
|
|
public void setNba(java.lang.String Nba) {
|
|
this.Nba = Nba;
|
|
Nba__is_set = true;
|
|
}
|
|
|
|
protected void setNba(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("Nba", "urn:sobject.tooling.soap.sforce.com","Nba","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setNba(__typeMapper.readString(__in, _lookupTypeInfo("Nba", "urn:sobject.tooling.soap.sforce.com","Nba","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldNba(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("Nba", "urn:sobject.tooling.soap.sforce.com","Nba","http://www.w3.org/2001/XMLSchema","string",0,1,true), Nba, Nba__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : StartDate of type {http://www.w3.org/2001/XMLSchema}dateTime
|
|
* java type: java.util.Calendar
|
|
*/
|
|
private boolean StartDate__is_set = false;
|
|
|
|
private java.util.Calendar StartDate;
|
|
|
|
public java.util.Calendar getStartDate() {
|
|
return StartDate;
|
|
}
|
|
|
|
public void setStartDate(java.util.Calendar StartDate) {
|
|
this.StartDate = StartDate;
|
|
StartDate__is_set = true;
|
|
}
|
|
|
|
protected void setStartDate(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("StartDate", "urn:sobject.tooling.soap.sforce.com","StartDate","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true))) {
|
|
setStartDate((java.util.Calendar)__typeMapper.readObject(__in, _lookupTypeInfo("StartDate", "urn:sobject.tooling.soap.sforce.com","StartDate","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true), java.util.Calendar.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldStartDate(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("StartDate", "urn:sobject.tooling.soap.sforce.com","StartDate","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true), StartDate, StartDate__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : System of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean System__is_set = false;
|
|
|
|
private java.lang.String System;
|
|
|
|
public java.lang.String getSystem() {
|
|
return System;
|
|
}
|
|
|
|
public void setSystem(java.lang.String System) {
|
|
this.System = System;
|
|
System__is_set = true;
|
|
}
|
|
|
|
protected void setSystem(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("System", "urn:sobject.tooling.soap.sforce.com","System","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setSystem(__typeMapper.readString(__in, _lookupTypeInfo("System", "urn:sobject.tooling.soap.sforce.com","System","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldSystem(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("System", "urn:sobject.tooling.soap.sforce.com","System","http://www.w3.org/2001/XMLSchema","string",0,1,true), System, System__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 : TracedEntity of type {urn:sobject.tooling.soap.sforce.com}sObject
|
|
* java type: com.sforce.soap.tooling.sobject.SObject
|
|
*/
|
|
private boolean TracedEntity__is_set = false;
|
|
|
|
private com.sforce.soap.tooling.sobject.SObject TracedEntity;
|
|
|
|
public com.sforce.soap.tooling.sobject.SObject getTracedEntity() {
|
|
return TracedEntity;
|
|
}
|
|
|
|
public void setTracedEntity(com.sforce.soap.tooling.sobject.SObject TracedEntity) {
|
|
this.TracedEntity = TracedEntity;
|
|
TracedEntity__is_set = true;
|
|
}
|
|
|
|
protected void setTracedEntity(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("TracedEntity", "urn:sobject.tooling.soap.sforce.com","TracedEntity","urn:sobject.tooling.soap.sforce.com","sObject",0,1,true))) {
|
|
setTracedEntity((com.sforce.soap.tooling.sobject.SObject)__typeMapper.readObject(__in, _lookupTypeInfo("TracedEntity", "urn:sobject.tooling.soap.sforce.com","TracedEntity","urn:sobject.tooling.soap.sforce.com","sObject",0,1,true), com.sforce.soap.tooling.sobject.SObject.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldTracedEntity(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("TracedEntity", "urn:sobject.tooling.soap.sforce.com","TracedEntity","urn:sobject.tooling.soap.sforce.com","sObject",0,1,true), TracedEntity, TracedEntity__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : TracedEntityId of type {urn:tooling.soap.sforce.com}ID
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean TracedEntityId__is_set = false;
|
|
|
|
private java.lang.String TracedEntityId;
|
|
|
|
public java.lang.String getTracedEntityId() {
|
|
return TracedEntityId;
|
|
}
|
|
|
|
public void setTracedEntityId(java.lang.String TracedEntityId) {
|
|
this.TracedEntityId = TracedEntityId;
|
|
TracedEntityId__is_set = true;
|
|
}
|
|
|
|
protected void setTracedEntityId(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("TracedEntityId", "urn:sobject.tooling.soap.sforce.com","TracedEntityId","urn:tooling.soap.sforce.com","ID",0,1,true))) {
|
|
setTracedEntityId(__typeMapper.readString(__in, _lookupTypeInfo("TracedEntityId", "urn:sobject.tooling.soap.sforce.com","TracedEntityId","urn:tooling.soap.sforce.com","ID",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldTracedEntityId(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("TracedEntityId", "urn:sobject.tooling.soap.sforce.com","TracedEntityId","urn:tooling.soap.sforce.com","ID",0,1,true), TracedEntityId, TracedEntityId__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : Validation of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean Validation__is_set = false;
|
|
|
|
private java.lang.String Validation;
|
|
|
|
public java.lang.String getValidation() {
|
|
return Validation;
|
|
}
|
|
|
|
public void setValidation(java.lang.String Validation) {
|
|
this.Validation = Validation;
|
|
Validation__is_set = true;
|
|
}
|
|
|
|
protected void setValidation(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("Validation", "urn:sobject.tooling.soap.sforce.com","Validation","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setValidation(__typeMapper.readString(__in, _lookupTypeInfo("Validation", "urn:sobject.tooling.soap.sforce.com","Validation","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldValidation(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("Validation", "urn:sobject.tooling.soap.sforce.com","Validation","http://www.w3.org/2001/XMLSchema","string",0,1,true), Validation, Validation__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : Visualforce of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean Visualforce__is_set = false;
|
|
|
|
private java.lang.String Visualforce;
|
|
|
|
public java.lang.String getVisualforce() {
|
|
return Visualforce;
|
|
}
|
|
|
|
public void setVisualforce(java.lang.String Visualforce) {
|
|
this.Visualforce = Visualforce;
|
|
Visualforce__is_set = true;
|
|
}
|
|
|
|
protected void setVisualforce(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("Visualforce", "urn:sobject.tooling.soap.sforce.com","Visualforce","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setVisualforce(__typeMapper.readString(__in, _lookupTypeInfo("Visualforce", "urn:sobject.tooling.soap.sforce.com","Visualforce","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldVisualforce(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("Visualforce", "urn:sobject.tooling.soap.sforce.com","Visualforce","http://www.w3.org/2001/XMLSchema","string",0,1,true), Visualforce, Visualforce__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : Wave of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean Wave__is_set = false;
|
|
|
|
private java.lang.String Wave;
|
|
|
|
public java.lang.String getWave() {
|
|
return Wave;
|
|
}
|
|
|
|
public void setWave(java.lang.String Wave) {
|
|
this.Wave = Wave;
|
|
Wave__is_set = true;
|
|
}
|
|
|
|
protected void setWave(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("Wave", "urn:sobject.tooling.soap.sforce.com","Wave","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setWave(__typeMapper.readString(__in, _lookupTypeInfo("Wave", "urn:sobject.tooling.soap.sforce.com","Wave","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldWave(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("Wave", "urn:sobject.tooling.soap.sforce.com","Wave","http://www.w3.org/2001/XMLSchema","string",0,1,true), Wave, Wave__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : Workflow of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean Workflow__is_set = false;
|
|
|
|
private java.lang.String Workflow;
|
|
|
|
public java.lang.String getWorkflow() {
|
|
return Workflow;
|
|
}
|
|
|
|
public void setWorkflow(java.lang.String Workflow) {
|
|
this.Workflow = Workflow;
|
|
Workflow__is_set = true;
|
|
}
|
|
|
|
protected void setWorkflow(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("Workflow", "urn:sobject.tooling.soap.sforce.com","Workflow","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setWorkflow(__typeMapper.readString(__in, _lookupTypeInfo("Workflow", "urn:sobject.tooling.soap.sforce.com","Workflow","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldWorkflow(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("Workflow", "urn:sobject.tooling.soap.sforce.com","Workflow","http://www.w3.org/2001/XMLSchema","string",0,1,true), Workflow, Workflow__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", "TraceFlag");
|
|
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("[TraceFlag ");
|
|
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 {
|
|
writeFieldApexCode(__out, __typeMapper);
|
|
writeFieldApexProfiling(__out, __typeMapper);
|
|
writeFieldCallout(__out, __typeMapper);
|
|
writeFieldCreatedBy(__out, __typeMapper);
|
|
writeFieldCreatedById(__out, __typeMapper);
|
|
writeFieldCreatedDate(__out, __typeMapper);
|
|
writeFieldDataAccess(__out, __typeMapper);
|
|
writeFieldDatabase(__out, __typeMapper);
|
|
writeFieldDebugLevel(__out, __typeMapper);
|
|
writeFieldDebugLevelId(__out, __typeMapper);
|
|
writeFieldExpirationDate(__out, __typeMapper);
|
|
writeFieldIsDeleted(__out, __typeMapper);
|
|
writeFieldLastModifiedBy(__out, __typeMapper);
|
|
writeFieldLastModifiedById(__out, __typeMapper);
|
|
writeFieldLastModifiedDate(__out, __typeMapper);
|
|
writeFieldLogType(__out, __typeMapper);
|
|
writeFieldNba(__out, __typeMapper);
|
|
writeFieldStartDate(__out, __typeMapper);
|
|
writeFieldSystem(__out, __typeMapper);
|
|
writeFieldSystemModstamp(__out, __typeMapper);
|
|
writeFieldTracedEntity(__out, __typeMapper);
|
|
writeFieldTracedEntityId(__out, __typeMapper);
|
|
writeFieldValidation(__out, __typeMapper);
|
|
writeFieldVisualforce(__out, __typeMapper);
|
|
writeFieldWave(__out, __typeMapper);
|
|
writeFieldWorkflow(__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 {
|
|
setApexCode(__in, __typeMapper);
|
|
setApexProfiling(__in, __typeMapper);
|
|
setCallout(__in, __typeMapper);
|
|
setCreatedBy(__in, __typeMapper);
|
|
setCreatedById(__in, __typeMapper);
|
|
setCreatedDate(__in, __typeMapper);
|
|
setDataAccess(__in, __typeMapper);
|
|
setDatabase(__in, __typeMapper);
|
|
setDebugLevel(__in, __typeMapper);
|
|
setDebugLevelId(__in, __typeMapper);
|
|
setExpirationDate(__in, __typeMapper);
|
|
setIsDeleted(__in, __typeMapper);
|
|
setLastModifiedBy(__in, __typeMapper);
|
|
setLastModifiedById(__in, __typeMapper);
|
|
setLastModifiedDate(__in, __typeMapper);
|
|
setLogType(__in, __typeMapper);
|
|
setNba(__in, __typeMapper);
|
|
setStartDate(__in, __typeMapper);
|
|
setSystem(__in, __typeMapper);
|
|
setSystemModstamp(__in, __typeMapper);
|
|
setTracedEntity(__in, __typeMapper);
|
|
setTracedEntityId(__in, __typeMapper);
|
|
setValidation(__in, __typeMapper);
|
|
setVisualforce(__in, __typeMapper);
|
|
setWave(__in, __typeMapper);
|
|
setWorkflow(__in, __typeMapper);
|
|
}
|
|
|
|
private void toString1(StringBuilder sb) {
|
|
toStringHelper(sb, "ApexCode", ApexCode);
|
|
toStringHelper(sb, "ApexProfiling", ApexProfiling);
|
|
toStringHelper(sb, "Callout", Callout);
|
|
toStringHelper(sb, "CreatedBy", CreatedBy);
|
|
toStringHelper(sb, "CreatedById", CreatedById);
|
|
toStringHelper(sb, "CreatedDate", CreatedDate);
|
|
toStringHelper(sb, "DataAccess", DataAccess);
|
|
toStringHelper(sb, "Database", Database);
|
|
toStringHelper(sb, "DebugLevel", DebugLevel);
|
|
toStringHelper(sb, "DebugLevelId", DebugLevelId);
|
|
toStringHelper(sb, "ExpirationDate", ExpirationDate);
|
|
toStringHelper(sb, "IsDeleted", IsDeleted);
|
|
toStringHelper(sb, "LastModifiedBy", LastModifiedBy);
|
|
toStringHelper(sb, "LastModifiedById", LastModifiedById);
|
|
toStringHelper(sb, "LastModifiedDate", LastModifiedDate);
|
|
toStringHelper(sb, "LogType", LogType);
|
|
toStringHelper(sb, "Nba", Nba);
|
|
toStringHelper(sb, "StartDate", StartDate);
|
|
toStringHelper(sb, "System", System);
|
|
toStringHelper(sb, "SystemModstamp", SystemModstamp);
|
|
toStringHelper(sb, "TracedEntity", TracedEntity);
|
|
toStringHelper(sb, "TracedEntityId", TracedEntityId);
|
|
toStringHelper(sb, "Validation", Validation);
|
|
toStringHelper(sb, "Visualforce", Visualforce);
|
|
toStringHelper(sb, "Wave", Wave);
|
|
toStringHelper(sb, "Workflow", Workflow);
|
|
}
|
|
|
|
|
|
}
|