1174 lines
60 KiB
Java
1174 lines
60 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 ExternalServiceRegistration extends com.sforce.soap.tooling.sobject.SObject {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Constructor
|
||
|
|
*/
|
||
|
|
public ExternalServiceRegistration() {}
|
||
|
|
|
||
|
|
/* 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 : CatalogedApiVersionId of type {urn:tooling.soap.sforce.com}ID
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean CatalogedApiVersionId__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String CatalogedApiVersionId;
|
||
|
|
|
||
|
|
public java.lang.String getCatalogedApiVersionId() {
|
||
|
|
return CatalogedApiVersionId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCatalogedApiVersionId(java.lang.String CatalogedApiVersionId) {
|
||
|
|
this.CatalogedApiVersionId = CatalogedApiVersionId;
|
||
|
|
CatalogedApiVersionId__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setCatalogedApiVersionId(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("CatalogedApiVersionId", "urn:sobject.tooling.soap.sforce.com","CatalogedApiVersionId","urn:tooling.soap.sforce.com","ID",0,1,true))) {
|
||
|
|
setCatalogedApiVersionId(__typeMapper.readString(__in, _lookupTypeInfo("CatalogedApiVersionId", "urn:sobject.tooling.soap.sforce.com","CatalogedApiVersionId","urn:tooling.soap.sforce.com","ID",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldCatalogedApiVersionId(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("CatalogedApiVersionId", "urn:sobject.tooling.soap.sforce.com","CatalogedApiVersionId","urn:tooling.soap.sforce.com","ID",0,1,true), CatalogedApiVersionId, CatalogedApiVersionId__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 : Description of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean Description__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String Description;
|
||
|
|
|
||
|
|
public java.lang.String getDescription() {
|
||
|
|
return Description;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setDescription(java.lang.String Description) {
|
||
|
|
this.Description = Description;
|
||
|
|
Description__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setDescription(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("Description", "urn:sobject.tooling.soap.sforce.com","Description","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setDescription(__typeMapper.readString(__in, _lookupTypeInfo("Description", "urn:sobject.tooling.soap.sforce.com","Description","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldDescription(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("Description", "urn:sobject.tooling.soap.sforce.com","Description","http://www.w3.org/2001/XMLSchema","string",0,1,true), Description, Description__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : DeveloperName of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean DeveloperName__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String DeveloperName;
|
||
|
|
|
||
|
|
public java.lang.String getDeveloperName() {
|
||
|
|
return DeveloperName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setDeveloperName(java.lang.String DeveloperName) {
|
||
|
|
this.DeveloperName = DeveloperName;
|
||
|
|
DeveloperName__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setDeveloperName(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("DeveloperName", "urn:sobject.tooling.soap.sforce.com","DeveloperName","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setDeveloperName(__typeMapper.readString(__in, _lookupTypeInfo("DeveloperName", "urn:sobject.tooling.soap.sforce.com","DeveloperName","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldDeveloperName(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("DeveloperName", "urn:sobject.tooling.soap.sforce.com","DeveloperName","http://www.w3.org/2001/XMLSchema","string",0,1,true), DeveloperName, DeveloperName__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : FullName of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean FullName__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String FullName;
|
||
|
|
|
||
|
|
public java.lang.String getFullName() {
|
||
|
|
return FullName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setFullName(java.lang.String FullName) {
|
||
|
|
this.FullName = FullName;
|
||
|
|
FullName__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setFullName(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("FullName", "urn:sobject.tooling.soap.sforce.com","FullName","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setFullName(__typeMapper.readString(__in, _lookupTypeInfo("FullName", "urn:sobject.tooling.soap.sforce.com","FullName","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldFullName(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("FullName", "urn:sobject.tooling.soap.sforce.com","FullName","http://www.w3.org/2001/XMLSchema","string",0,1,true), FullName, FullName__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 : Language of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean Language__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String Language;
|
||
|
|
|
||
|
|
public java.lang.String getLanguage() {
|
||
|
|
return Language;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setLanguage(java.lang.String Language) {
|
||
|
|
this.Language = Language;
|
||
|
|
Language__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setLanguage(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("Language", "urn:sobject.tooling.soap.sforce.com","Language","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setLanguage(__typeMapper.readString(__in, _lookupTypeInfo("Language", "urn:sobject.tooling.soap.sforce.com","Language","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldLanguage(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("Language", "urn:sobject.tooling.soap.sforce.com","Language","http://www.w3.org/2001/XMLSchema","string",0,1,true), Language, Language__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 : ManageableState of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean ManageableState__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String ManageableState;
|
||
|
|
|
||
|
|
public java.lang.String getManageableState() {
|
||
|
|
return ManageableState;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setManageableState(java.lang.String ManageableState) {
|
||
|
|
this.ManageableState = ManageableState;
|
||
|
|
ManageableState__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setManageableState(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("ManageableState", "urn:sobject.tooling.soap.sforce.com","ManageableState","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setManageableState(__typeMapper.readString(__in, _lookupTypeInfo("ManageableState", "urn:sobject.tooling.soap.sforce.com","ManageableState","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldManageableState(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("ManageableState", "urn:sobject.tooling.soap.sforce.com","ManageableState","http://www.w3.org/2001/XMLSchema","string",0,1,true), ManageableState, ManageableState__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : MasterLabel of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean MasterLabel__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String MasterLabel;
|
||
|
|
|
||
|
|
public java.lang.String getMasterLabel() {
|
||
|
|
return MasterLabel;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setMasterLabel(java.lang.String MasterLabel) {
|
||
|
|
this.MasterLabel = MasterLabel;
|
||
|
|
MasterLabel__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setMasterLabel(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("MasterLabel", "urn:sobject.tooling.soap.sforce.com","MasterLabel","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setMasterLabel(__typeMapper.readString(__in, _lookupTypeInfo("MasterLabel", "urn:sobject.tooling.soap.sforce.com","MasterLabel","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldMasterLabel(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("MasterLabel", "urn:sobject.tooling.soap.sforce.com","MasterLabel","http://www.w3.org/2001/XMLSchema","string",0,1,true), MasterLabel, MasterLabel__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : Metadata of type {urn:metadata.tooling.soap.sforce.com}ExternalServiceRegistration
|
||
|
|
* java type: com.sforce.soap.tooling.metadata.ExternalServiceRegistration
|
||
|
|
*/
|
||
|
|
private boolean Metadata__is_set = false;
|
||
|
|
|
||
|
|
private com.sforce.soap.tooling.metadata.ExternalServiceRegistration Metadata;
|
||
|
|
|
||
|
|
public com.sforce.soap.tooling.metadata.ExternalServiceRegistration getMetadata() {
|
||
|
|
return Metadata;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setMetadata(com.sforce.soap.tooling.metadata.ExternalServiceRegistration Metadata) {
|
||
|
|
this.Metadata = Metadata;
|
||
|
|
Metadata__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setMetadata(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("Metadata", "urn:sobject.tooling.soap.sforce.com","Metadata","urn:metadata.tooling.soap.sforce.com","ExternalServiceRegistration",0,1,true))) {
|
||
|
|
setMetadata((com.sforce.soap.tooling.metadata.ExternalServiceRegistration)__typeMapper.readObject(__in, _lookupTypeInfo("Metadata", "urn:sobject.tooling.soap.sforce.com","Metadata","urn:metadata.tooling.soap.sforce.com","ExternalServiceRegistration",0,1,true), com.sforce.soap.tooling.metadata.ExternalServiceRegistration.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldMetadata(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("Metadata", "urn:sobject.tooling.soap.sforce.com","Metadata","urn:metadata.tooling.soap.sforce.com","ExternalServiceRegistration",0,1,true), Metadata, Metadata__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : NamedCredential of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean NamedCredential__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String NamedCredential;
|
||
|
|
|
||
|
|
public java.lang.String getNamedCredential() {
|
||
|
|
return NamedCredential;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setNamedCredential(java.lang.String NamedCredential) {
|
||
|
|
this.NamedCredential = NamedCredential;
|
||
|
|
NamedCredential__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setNamedCredential(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("NamedCredential", "urn:sobject.tooling.soap.sforce.com","NamedCredential","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setNamedCredential(__typeMapper.readString(__in, _lookupTypeInfo("NamedCredential", "urn:sobject.tooling.soap.sforce.com","NamedCredential","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldNamedCredential(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("NamedCredential", "urn:sobject.tooling.soap.sforce.com","NamedCredential","http://www.w3.org/2001/XMLSchema","string",0,1,true), NamedCredential, NamedCredential__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : NamedCredentialReference of type {urn:sobject.tooling.soap.sforce.com}NamedCredential
|
||
|
|
* java type: com.sforce.soap.tooling.sobject.NamedCredential
|
||
|
|
*/
|
||
|
|
private boolean NamedCredentialReference__is_set = false;
|
||
|
|
|
||
|
|
private com.sforce.soap.tooling.sobject.NamedCredential NamedCredentialReference;
|
||
|
|
|
||
|
|
public com.sforce.soap.tooling.sobject.NamedCredential getNamedCredentialReference() {
|
||
|
|
return NamedCredentialReference;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setNamedCredentialReference(com.sforce.soap.tooling.sobject.NamedCredential NamedCredentialReference) {
|
||
|
|
this.NamedCredentialReference = NamedCredentialReference;
|
||
|
|
NamedCredentialReference__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setNamedCredentialReference(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("NamedCredentialReference", "urn:sobject.tooling.soap.sforce.com","NamedCredentialReference","urn:sobject.tooling.soap.sforce.com","NamedCredential",0,1,true))) {
|
||
|
|
setNamedCredentialReference((com.sforce.soap.tooling.sobject.NamedCredential)__typeMapper.readObject(__in, _lookupTypeInfo("NamedCredentialReference", "urn:sobject.tooling.soap.sforce.com","NamedCredentialReference","urn:sobject.tooling.soap.sforce.com","NamedCredential",0,1,true), com.sforce.soap.tooling.sobject.NamedCredential.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldNamedCredentialReference(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("NamedCredentialReference", "urn:sobject.tooling.soap.sforce.com","NamedCredentialReference","urn:sobject.tooling.soap.sforce.com","NamedCredential",0,1,true), NamedCredentialReference, NamedCredentialReference__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : NamedCredentialReferenceId of type {urn:tooling.soap.sforce.com}ID
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean NamedCredentialReferenceId__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String NamedCredentialReferenceId;
|
||
|
|
|
||
|
|
public java.lang.String getNamedCredentialReferenceId() {
|
||
|
|
return NamedCredentialReferenceId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setNamedCredentialReferenceId(java.lang.String NamedCredentialReferenceId) {
|
||
|
|
this.NamedCredentialReferenceId = NamedCredentialReferenceId;
|
||
|
|
NamedCredentialReferenceId__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setNamedCredentialReferenceId(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("NamedCredentialReferenceId", "urn:sobject.tooling.soap.sforce.com","NamedCredentialReferenceId","urn:tooling.soap.sforce.com","ID",0,1,true))) {
|
||
|
|
setNamedCredentialReferenceId(__typeMapper.readString(__in, _lookupTypeInfo("NamedCredentialReferenceId", "urn:sobject.tooling.soap.sforce.com","NamedCredentialReferenceId","urn:tooling.soap.sforce.com","ID",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldNamedCredentialReferenceId(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("NamedCredentialReferenceId", "urn:sobject.tooling.soap.sforce.com","NamedCredentialReferenceId","urn:tooling.soap.sforce.com","ID",0,1,true), NamedCredentialReferenceId, NamedCredentialReferenceId__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : NamespacePrefix of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean NamespacePrefix__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String NamespacePrefix;
|
||
|
|
|
||
|
|
public java.lang.String getNamespacePrefix() {
|
||
|
|
return NamespacePrefix;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setNamespacePrefix(java.lang.String NamespacePrefix) {
|
||
|
|
this.NamespacePrefix = NamespacePrefix;
|
||
|
|
NamespacePrefix__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setNamespacePrefix(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("NamespacePrefix", "urn:sobject.tooling.soap.sforce.com","NamespacePrefix","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setNamespacePrefix(__typeMapper.readString(__in, _lookupTypeInfo("NamespacePrefix", "urn:sobject.tooling.soap.sforce.com","NamespacePrefix","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldNamespacePrefix(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("NamespacePrefix", "urn:sobject.tooling.soap.sforce.com","NamespacePrefix","http://www.w3.org/2001/XMLSchema","string",0,1,true), NamespacePrefix, NamespacePrefix__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : ProviderAssetEndpoint of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean ProviderAssetEndpoint__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String ProviderAssetEndpoint;
|
||
|
|
|
||
|
|
public java.lang.String getProviderAssetEndpoint() {
|
||
|
|
return ProviderAssetEndpoint;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setProviderAssetEndpoint(java.lang.String ProviderAssetEndpoint) {
|
||
|
|
this.ProviderAssetEndpoint = ProviderAssetEndpoint;
|
||
|
|
ProviderAssetEndpoint__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setProviderAssetEndpoint(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("ProviderAssetEndpoint", "urn:sobject.tooling.soap.sforce.com","ProviderAssetEndpoint","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setProviderAssetEndpoint(__typeMapper.readString(__in, _lookupTypeInfo("ProviderAssetEndpoint", "urn:sobject.tooling.soap.sforce.com","ProviderAssetEndpoint","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldProviderAssetEndpoint(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("ProviderAssetEndpoint", "urn:sobject.tooling.soap.sforce.com","ProviderAssetEndpoint","http://www.w3.org/2001/XMLSchema","string",0,1,true), ProviderAssetEndpoint, ProviderAssetEndpoint__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : RegistrationProvider of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean RegistrationProvider__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String RegistrationProvider;
|
||
|
|
|
||
|
|
public java.lang.String getRegistrationProvider() {
|
||
|
|
return RegistrationProvider;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setRegistrationProvider(java.lang.String RegistrationProvider) {
|
||
|
|
this.RegistrationProvider = RegistrationProvider;
|
||
|
|
RegistrationProvider__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setRegistrationProvider(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("RegistrationProvider", "urn:sobject.tooling.soap.sforce.com","RegistrationProvider","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setRegistrationProvider(__typeMapper.readString(__in, _lookupTypeInfo("RegistrationProvider", "urn:sobject.tooling.soap.sforce.com","RegistrationProvider","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldRegistrationProvider(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("RegistrationProvider", "urn:sobject.tooling.soap.sforce.com","RegistrationProvider","http://www.w3.org/2001/XMLSchema","string",0,1,true), RegistrationProvider, RegistrationProvider__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : RegistrationProviderType of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean RegistrationProviderType__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String RegistrationProviderType;
|
||
|
|
|
||
|
|
public java.lang.String getRegistrationProviderType() {
|
||
|
|
return RegistrationProviderType;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setRegistrationProviderType(java.lang.String RegistrationProviderType) {
|
||
|
|
this.RegistrationProviderType = RegistrationProviderType;
|
||
|
|
RegistrationProviderType__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setRegistrationProviderType(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("RegistrationProviderType", "urn:sobject.tooling.soap.sforce.com","RegistrationProviderType","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setRegistrationProviderType(__typeMapper.readString(__in, _lookupTypeInfo("RegistrationProviderType", "urn:sobject.tooling.soap.sforce.com","RegistrationProviderType","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldRegistrationProviderType(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("RegistrationProviderType", "urn:sobject.tooling.soap.sforce.com","RegistrationProviderType","http://www.w3.org/2001/XMLSchema","string",0,1,true), RegistrationProviderType, RegistrationProviderType__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : Schema of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean Schema__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String Schema;
|
||
|
|
|
||
|
|
public java.lang.String getSchema() {
|
||
|
|
return Schema;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setSchema(java.lang.String Schema) {
|
||
|
|
this.Schema = Schema;
|
||
|
|
Schema__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setSchema(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("Schema", "urn:sobject.tooling.soap.sforce.com","Schema","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setSchema(__typeMapper.readString(__in, _lookupTypeInfo("Schema", "urn:sobject.tooling.soap.sforce.com","Schema","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldSchema(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("Schema", "urn:sobject.tooling.soap.sforce.com","Schema","http://www.w3.org/2001/XMLSchema","string",0,1,true), Schema, Schema__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : SchemaAbsoluteUrl of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean SchemaAbsoluteUrl__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String SchemaAbsoluteUrl;
|
||
|
|
|
||
|
|
public java.lang.String getSchemaAbsoluteUrl() {
|
||
|
|
return SchemaAbsoluteUrl;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setSchemaAbsoluteUrl(java.lang.String SchemaAbsoluteUrl) {
|
||
|
|
this.SchemaAbsoluteUrl = SchemaAbsoluteUrl;
|
||
|
|
SchemaAbsoluteUrl__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setSchemaAbsoluteUrl(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("SchemaAbsoluteUrl", "urn:sobject.tooling.soap.sforce.com","SchemaAbsoluteUrl","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setSchemaAbsoluteUrl(__typeMapper.readString(__in, _lookupTypeInfo("SchemaAbsoluteUrl", "urn:sobject.tooling.soap.sforce.com","SchemaAbsoluteUrl","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldSchemaAbsoluteUrl(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("SchemaAbsoluteUrl", "urn:sobject.tooling.soap.sforce.com","SchemaAbsoluteUrl","http://www.w3.org/2001/XMLSchema","string",0,1,true), SchemaAbsoluteUrl, SchemaAbsoluteUrl__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : SchemaType of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean SchemaType__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String SchemaType;
|
||
|
|
|
||
|
|
public java.lang.String getSchemaType() {
|
||
|
|
return SchemaType;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setSchemaType(java.lang.String SchemaType) {
|
||
|
|
this.SchemaType = SchemaType;
|
||
|
|
SchemaType__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setSchemaType(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("SchemaType", "urn:sobject.tooling.soap.sforce.com","SchemaType","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setSchemaType(__typeMapper.readString(__in, _lookupTypeInfo("SchemaType", "urn:sobject.tooling.soap.sforce.com","SchemaType","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldSchemaType(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("SchemaType", "urn:sobject.tooling.soap.sforce.com","SchemaType","http://www.w3.org/2001/XMLSchema","string",0,1,true), SchemaType, SchemaType__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : SchemaUploadFileExtension of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean SchemaUploadFileExtension__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String SchemaUploadFileExtension;
|
||
|
|
|
||
|
|
public java.lang.String getSchemaUploadFileExtension() {
|
||
|
|
return SchemaUploadFileExtension;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setSchemaUploadFileExtension(java.lang.String SchemaUploadFileExtension) {
|
||
|
|
this.SchemaUploadFileExtension = SchemaUploadFileExtension;
|
||
|
|
SchemaUploadFileExtension__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setSchemaUploadFileExtension(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("SchemaUploadFileExtension", "urn:sobject.tooling.soap.sforce.com","SchemaUploadFileExtension","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setSchemaUploadFileExtension(__typeMapper.readString(__in, _lookupTypeInfo("SchemaUploadFileExtension", "urn:sobject.tooling.soap.sforce.com","SchemaUploadFileExtension","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldSchemaUploadFileExtension(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("SchemaUploadFileExtension", "urn:sobject.tooling.soap.sforce.com","SchemaUploadFileExtension","http://www.w3.org/2001/XMLSchema","string",0,1,true), SchemaUploadFileExtension, SchemaUploadFileExtension__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : SchemaUploadFileName of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean SchemaUploadFileName__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String SchemaUploadFileName;
|
||
|
|
|
||
|
|
public java.lang.String getSchemaUploadFileName() {
|
||
|
|
return SchemaUploadFileName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setSchemaUploadFileName(java.lang.String SchemaUploadFileName) {
|
||
|
|
this.SchemaUploadFileName = SchemaUploadFileName;
|
||
|
|
SchemaUploadFileName__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setSchemaUploadFileName(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("SchemaUploadFileName", "urn:sobject.tooling.soap.sforce.com","SchemaUploadFileName","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setSchemaUploadFileName(__typeMapper.readString(__in, _lookupTypeInfo("SchemaUploadFileName", "urn:sobject.tooling.soap.sforce.com","SchemaUploadFileName","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldSchemaUploadFileName(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("SchemaUploadFileName", "urn:sobject.tooling.soap.sforce.com","SchemaUploadFileName","http://www.w3.org/2001/XMLSchema","string",0,1,true), SchemaUploadFileName, SchemaUploadFileName__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : SchemaUrl of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean SchemaUrl__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String SchemaUrl;
|
||
|
|
|
||
|
|
public java.lang.String getSchemaUrl() {
|
||
|
|
return SchemaUrl;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setSchemaUrl(java.lang.String SchemaUrl) {
|
||
|
|
this.SchemaUrl = SchemaUrl;
|
||
|
|
SchemaUrl__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setSchemaUrl(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("SchemaUrl", "urn:sobject.tooling.soap.sforce.com","SchemaUrl","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setSchemaUrl(__typeMapper.readString(__in, _lookupTypeInfo("SchemaUrl", "urn:sobject.tooling.soap.sforce.com","SchemaUrl","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldSchemaUrl(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("SchemaUrl", "urn:sobject.tooling.soap.sforce.com","SchemaUrl","http://www.w3.org/2001/XMLSchema","string",0,1,true), SchemaUrl, SchemaUrl__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : ServiceBinding of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean ServiceBinding__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String ServiceBinding;
|
||
|
|
|
||
|
|
public java.lang.String getServiceBinding() {
|
||
|
|
return ServiceBinding;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setServiceBinding(java.lang.String ServiceBinding) {
|
||
|
|
this.ServiceBinding = ServiceBinding;
|
||
|
|
ServiceBinding__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setServiceBinding(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("ServiceBinding", "urn:sobject.tooling.soap.sforce.com","ServiceBinding","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setServiceBinding(__typeMapper.readString(__in, _lookupTypeInfo("ServiceBinding", "urn:sobject.tooling.soap.sforce.com","ServiceBinding","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldServiceBinding(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("ServiceBinding", "urn:sobject.tooling.soap.sforce.com","ServiceBinding","http://www.w3.org/2001/XMLSchema","string",0,1,true), ServiceBinding, ServiceBinding__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : ServiceDescriptor of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean ServiceDescriptor__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String ServiceDescriptor;
|
||
|
|
|
||
|
|
public java.lang.String getServiceDescriptor() {
|
||
|
|
return ServiceDescriptor;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setServiceDescriptor(java.lang.String ServiceDescriptor) {
|
||
|
|
this.ServiceDescriptor = ServiceDescriptor;
|
||
|
|
ServiceDescriptor__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setServiceDescriptor(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("ServiceDescriptor", "urn:sobject.tooling.soap.sforce.com","ServiceDescriptor","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setServiceDescriptor(__typeMapper.readString(__in, _lookupTypeInfo("ServiceDescriptor", "urn:sobject.tooling.soap.sforce.com","ServiceDescriptor","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldServiceDescriptor(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("ServiceDescriptor", "urn:sobject.tooling.soap.sforce.com","ServiceDescriptor","http://www.w3.org/2001/XMLSchema","string",0,1,true), ServiceDescriptor, ServiceDescriptor__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : ServiceName of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean ServiceName__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String ServiceName;
|
||
|
|
|
||
|
|
public java.lang.String getServiceName() {
|
||
|
|
return ServiceName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setServiceName(java.lang.String ServiceName) {
|
||
|
|
this.ServiceName = ServiceName;
|
||
|
|
ServiceName__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setServiceName(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("ServiceName", "urn:sobject.tooling.soap.sforce.com","ServiceName","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setServiceName(__typeMapper.readString(__in, _lookupTypeInfo("ServiceName", "urn:sobject.tooling.soap.sforce.com","ServiceName","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldServiceName(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("ServiceName", "urn:sobject.tooling.soap.sforce.com","ServiceName","http://www.w3.org/2001/XMLSchema","string",0,1,true), ServiceName, ServiceName__is_set);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : Status of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
private boolean Status__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.String Status;
|
||
|
|
|
||
|
|
public java.lang.String getStatus() {
|
||
|
|
return Status;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setStatus(java.lang.String Status) {
|
||
|
|
this.Status = Status;
|
||
|
|
Status__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setStatus(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("Status", "urn:sobject.tooling.soap.sforce.com","Status","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
||
|
|
setStatus(__typeMapper.readString(__in, _lookupTypeInfo("Status", "urn:sobject.tooling.soap.sforce.com","Status","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldStatus(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("Status", "urn:sobject.tooling.soap.sforce.com","Status","http://www.w3.org/2001/XMLSchema","string",0,1,true), Status, Status__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 : SystemVersion of type {http://www.w3.org/2001/XMLSchema}int
|
||
|
|
* java type: java.lang.Integer
|
||
|
|
*/
|
||
|
|
private boolean SystemVersion__is_set = false;
|
||
|
|
|
||
|
|
private java.lang.Integer SystemVersion;
|
||
|
|
|
||
|
|
public java.lang.Integer getSystemVersion() {
|
||
|
|
return SystemVersion;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setSystemVersion(java.lang.Integer SystemVersion) {
|
||
|
|
this.SystemVersion = SystemVersion;
|
||
|
|
SystemVersion__is_set = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void setSystemVersion(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("SystemVersion", "urn:sobject.tooling.soap.sforce.com","SystemVersion","http://www.w3.org/2001/XMLSchema","int",0,1,true))) {
|
||
|
|
setSystemVersion((java.lang.Integer)__typeMapper.readObject(__in, _lookupTypeInfo("SystemVersion", "urn:sobject.tooling.soap.sforce.com","SystemVersion","http://www.w3.org/2001/XMLSchema","int",0,1,true), java.lang.Integer.class));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private void writeFieldSystemVersion(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
||
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("SystemVersion", "urn:sobject.tooling.soap.sforce.com","SystemVersion","http://www.w3.org/2001/XMLSchema","int",0,1,true), SystemVersion, SystemVersion__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", "ExternalServiceRegistration");
|
||
|
|
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("[ExternalServiceRegistration ");
|
||
|
|
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 {
|
||
|
|
writeFieldCatalogedApiVersionId(__out, __typeMapper);
|
||
|
|
writeFieldCreatedBy(__out, __typeMapper);
|
||
|
|
writeFieldCreatedById(__out, __typeMapper);
|
||
|
|
writeFieldCreatedDate(__out, __typeMapper);
|
||
|
|
writeFieldDescription(__out, __typeMapper);
|
||
|
|
writeFieldDeveloperName(__out, __typeMapper);
|
||
|
|
writeFieldFullName(__out, __typeMapper);
|
||
|
|
writeFieldIsDeleted(__out, __typeMapper);
|
||
|
|
writeFieldLanguage(__out, __typeMapper);
|
||
|
|
writeFieldLastModifiedBy(__out, __typeMapper);
|
||
|
|
writeFieldLastModifiedById(__out, __typeMapper);
|
||
|
|
writeFieldLastModifiedDate(__out, __typeMapper);
|
||
|
|
writeFieldManageableState(__out, __typeMapper);
|
||
|
|
writeFieldMasterLabel(__out, __typeMapper);
|
||
|
|
writeFieldMetadata(__out, __typeMapper);
|
||
|
|
writeFieldNamedCredential(__out, __typeMapper);
|
||
|
|
writeFieldNamedCredentialReference(__out, __typeMapper);
|
||
|
|
writeFieldNamedCredentialReferenceId(__out, __typeMapper);
|
||
|
|
writeFieldNamespacePrefix(__out, __typeMapper);
|
||
|
|
writeFieldProviderAssetEndpoint(__out, __typeMapper);
|
||
|
|
writeFieldRegistrationProvider(__out, __typeMapper);
|
||
|
|
writeFieldRegistrationProviderType(__out, __typeMapper);
|
||
|
|
writeFieldSchema(__out, __typeMapper);
|
||
|
|
writeFieldSchemaAbsoluteUrl(__out, __typeMapper);
|
||
|
|
writeFieldSchemaType(__out, __typeMapper);
|
||
|
|
writeFieldSchemaUploadFileExtension(__out, __typeMapper);
|
||
|
|
writeFieldSchemaUploadFileName(__out, __typeMapper);
|
||
|
|
writeFieldSchemaUrl(__out, __typeMapper);
|
||
|
|
writeFieldServiceBinding(__out, __typeMapper);
|
||
|
|
writeFieldServiceDescriptor(__out, __typeMapper);
|
||
|
|
writeFieldServiceName(__out, __typeMapper);
|
||
|
|
writeFieldStatus(__out, __typeMapper);
|
||
|
|
writeFieldSystemModstamp(__out, __typeMapper);
|
||
|
|
writeFieldSystemVersion(__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 {
|
||
|
|
setCatalogedApiVersionId(__in, __typeMapper);
|
||
|
|
setCreatedBy(__in, __typeMapper);
|
||
|
|
setCreatedById(__in, __typeMapper);
|
||
|
|
setCreatedDate(__in, __typeMapper);
|
||
|
|
setDescription(__in, __typeMapper);
|
||
|
|
setDeveloperName(__in, __typeMapper);
|
||
|
|
setFullName(__in, __typeMapper);
|
||
|
|
setIsDeleted(__in, __typeMapper);
|
||
|
|
setLanguage(__in, __typeMapper);
|
||
|
|
setLastModifiedBy(__in, __typeMapper);
|
||
|
|
setLastModifiedById(__in, __typeMapper);
|
||
|
|
setLastModifiedDate(__in, __typeMapper);
|
||
|
|
setManageableState(__in, __typeMapper);
|
||
|
|
setMasterLabel(__in, __typeMapper);
|
||
|
|
setMetadata(__in, __typeMapper);
|
||
|
|
setNamedCredential(__in, __typeMapper);
|
||
|
|
setNamedCredentialReference(__in, __typeMapper);
|
||
|
|
setNamedCredentialReferenceId(__in, __typeMapper);
|
||
|
|
setNamespacePrefix(__in, __typeMapper);
|
||
|
|
setProviderAssetEndpoint(__in, __typeMapper);
|
||
|
|
setRegistrationProvider(__in, __typeMapper);
|
||
|
|
setRegistrationProviderType(__in, __typeMapper);
|
||
|
|
setSchema(__in, __typeMapper);
|
||
|
|
setSchemaAbsoluteUrl(__in, __typeMapper);
|
||
|
|
setSchemaType(__in, __typeMapper);
|
||
|
|
setSchemaUploadFileExtension(__in, __typeMapper);
|
||
|
|
setSchemaUploadFileName(__in, __typeMapper);
|
||
|
|
setSchemaUrl(__in, __typeMapper);
|
||
|
|
setServiceBinding(__in, __typeMapper);
|
||
|
|
setServiceDescriptor(__in, __typeMapper);
|
||
|
|
setServiceName(__in, __typeMapper);
|
||
|
|
setStatus(__in, __typeMapper);
|
||
|
|
setSystemModstamp(__in, __typeMapper);
|
||
|
|
setSystemVersion(__in, __typeMapper);
|
||
|
|
}
|
||
|
|
|
||
|
|
private void toString1(StringBuilder sb) {
|
||
|
|
toStringHelper(sb, "CatalogedApiVersionId", CatalogedApiVersionId);
|
||
|
|
toStringHelper(sb, "CreatedBy", CreatedBy);
|
||
|
|
toStringHelper(sb, "CreatedById", CreatedById);
|
||
|
|
toStringHelper(sb, "CreatedDate", CreatedDate);
|
||
|
|
toStringHelper(sb, "Description", Description);
|
||
|
|
toStringHelper(sb, "DeveloperName", DeveloperName);
|
||
|
|
toStringHelper(sb, "FullName", FullName);
|
||
|
|
toStringHelper(sb, "IsDeleted", IsDeleted);
|
||
|
|
toStringHelper(sb, "Language", Language);
|
||
|
|
toStringHelper(sb, "LastModifiedBy", LastModifiedBy);
|
||
|
|
toStringHelper(sb, "LastModifiedById", LastModifiedById);
|
||
|
|
toStringHelper(sb, "LastModifiedDate", LastModifiedDate);
|
||
|
|
toStringHelper(sb, "ManageableState", ManageableState);
|
||
|
|
toStringHelper(sb, "MasterLabel", MasterLabel);
|
||
|
|
toStringHelper(sb, "Metadata", Metadata);
|
||
|
|
toStringHelper(sb, "NamedCredential", NamedCredential);
|
||
|
|
toStringHelper(sb, "NamedCredentialReference", NamedCredentialReference);
|
||
|
|
toStringHelper(sb, "NamedCredentialReferenceId", NamedCredentialReferenceId);
|
||
|
|
toStringHelper(sb, "NamespacePrefix", NamespacePrefix);
|
||
|
|
toStringHelper(sb, "ProviderAssetEndpoint", ProviderAssetEndpoint);
|
||
|
|
toStringHelper(sb, "RegistrationProvider", RegistrationProvider);
|
||
|
|
toStringHelper(sb, "RegistrationProviderType", RegistrationProviderType);
|
||
|
|
toStringHelper(sb, "Schema", Schema);
|
||
|
|
toStringHelper(sb, "SchemaAbsoluteUrl", SchemaAbsoluteUrl);
|
||
|
|
toStringHelper(sb, "SchemaType", SchemaType);
|
||
|
|
toStringHelper(sb, "SchemaUploadFileExtension", SchemaUploadFileExtension);
|
||
|
|
toStringHelper(sb, "SchemaUploadFileName", SchemaUploadFileName);
|
||
|
|
toStringHelper(sb, "SchemaUrl", SchemaUrl);
|
||
|
|
toStringHelper(sb, "ServiceBinding", ServiceBinding);
|
||
|
|
toStringHelper(sb, "ServiceDescriptor", ServiceDescriptor);
|
||
|
|
toStringHelper(sb, "ServiceName", ServiceName);
|
||
|
|
toStringHelper(sb, "Status", Status);
|
||
|
|
toStringHelper(sb, "SystemModstamp", SystemModstamp);
|
||
|
|
toStringHelper(sb, "SystemVersion", SystemVersion);
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|