466 lines
24 KiB
Java
466 lines
24 KiB
Java
package com.sforce.soap.metadata;
|
|
|
|
/**
|
|
* This is a generated class for the SObject Enterprise API.
|
|
* Do not edit this file, as your changes will be lost.
|
|
*/
|
|
public class ConnectedAppSamlConfig implements com.sforce.ws.bind.XMLizable {
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public ConnectedAppSamlConfig() {}
|
|
|
|
/* 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 : acsUrl of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean acsUrl__is_set = false;
|
|
|
|
private java.lang.String acsUrl;
|
|
|
|
public java.lang.String getAcsUrl() {
|
|
return acsUrl;
|
|
}
|
|
|
|
public void setAcsUrl(java.lang.String acsUrl) {
|
|
this.acsUrl = acsUrl;
|
|
acsUrl__is_set = true;
|
|
}
|
|
|
|
protected void setAcsUrl(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.verifyElement(__in, _lookupTypeInfo("acsUrl", "http://soap.sforce.com/2006/04/metadata","acsUrl","http://www.w3.org/2001/XMLSchema","string",1,1,true))) {
|
|
setAcsUrl(__typeMapper.readString(__in, _lookupTypeInfo("acsUrl", "http://soap.sforce.com/2006/04/metadata","acsUrl","http://www.w3.org/2001/XMLSchema","string",1,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldAcsUrl(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("acsUrl", "http://soap.sforce.com/2006/04/metadata","acsUrl","http://www.w3.org/2001/XMLSchema","string",1,1,true), acsUrl, acsUrl__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : certificate of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean certificate__is_set = false;
|
|
|
|
private java.lang.String certificate;
|
|
|
|
public java.lang.String getCertificate() {
|
|
return certificate;
|
|
}
|
|
|
|
public void setCertificate(java.lang.String certificate) {
|
|
this.certificate = certificate;
|
|
certificate__is_set = true;
|
|
}
|
|
|
|
protected void setCertificate(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("certificate", "http://soap.sforce.com/2006/04/metadata","certificate","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setCertificate(__typeMapper.readString(__in, _lookupTypeInfo("certificate", "http://soap.sforce.com/2006/04/metadata","certificate","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldCertificate(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("certificate", "http://soap.sforce.com/2006/04/metadata","certificate","http://www.w3.org/2001/XMLSchema","string",0,1,true), certificate, certificate__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : encryptionCertificate of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean encryptionCertificate__is_set = false;
|
|
|
|
private java.lang.String encryptionCertificate;
|
|
|
|
public java.lang.String getEncryptionCertificate() {
|
|
return encryptionCertificate;
|
|
}
|
|
|
|
public void setEncryptionCertificate(java.lang.String encryptionCertificate) {
|
|
this.encryptionCertificate = encryptionCertificate;
|
|
encryptionCertificate__is_set = true;
|
|
}
|
|
|
|
protected void setEncryptionCertificate(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("encryptionCertificate", "http://soap.sforce.com/2006/04/metadata","encryptionCertificate","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setEncryptionCertificate(__typeMapper.readString(__in, _lookupTypeInfo("encryptionCertificate", "http://soap.sforce.com/2006/04/metadata","encryptionCertificate","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldEncryptionCertificate(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("encryptionCertificate", "http://soap.sforce.com/2006/04/metadata","encryptionCertificate","http://www.w3.org/2001/XMLSchema","string",0,1,true), encryptionCertificate, encryptionCertificate__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : encryptionType of type {http://soap.sforce.com/2006/04/metadata}SamlEncryptionType
|
|
* java type: com.sforce.soap.metadata.SamlEncryptionType
|
|
*/
|
|
private boolean encryptionType__is_set = false;
|
|
|
|
private com.sforce.soap.metadata.SamlEncryptionType encryptionType;
|
|
|
|
public com.sforce.soap.metadata.SamlEncryptionType getEncryptionType() {
|
|
return encryptionType;
|
|
}
|
|
|
|
public void setEncryptionType(com.sforce.soap.metadata.SamlEncryptionType encryptionType) {
|
|
this.encryptionType = encryptionType;
|
|
encryptionType__is_set = true;
|
|
}
|
|
|
|
protected void setEncryptionType(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("encryptionType", "http://soap.sforce.com/2006/04/metadata","encryptionType","http://soap.sforce.com/2006/04/metadata","SamlEncryptionType",0,1,true))) {
|
|
setEncryptionType((com.sforce.soap.metadata.SamlEncryptionType)__typeMapper.readObject(__in, _lookupTypeInfo("encryptionType", "http://soap.sforce.com/2006/04/metadata","encryptionType","http://soap.sforce.com/2006/04/metadata","SamlEncryptionType",0,1,true), com.sforce.soap.metadata.SamlEncryptionType.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldEncryptionType(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("encryptionType", "http://soap.sforce.com/2006/04/metadata","encryptionType","http://soap.sforce.com/2006/04/metadata","SamlEncryptionType",0,1,true), encryptionType, encryptionType__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : entityUrl of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean entityUrl__is_set = false;
|
|
|
|
private java.lang.String entityUrl;
|
|
|
|
public java.lang.String getEntityUrl() {
|
|
return entityUrl;
|
|
}
|
|
|
|
public void setEntityUrl(java.lang.String entityUrl) {
|
|
this.entityUrl = entityUrl;
|
|
entityUrl__is_set = true;
|
|
}
|
|
|
|
protected void setEntityUrl(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.verifyElement(__in, _lookupTypeInfo("entityUrl", "http://soap.sforce.com/2006/04/metadata","entityUrl","http://www.w3.org/2001/XMLSchema","string",1,1,true))) {
|
|
setEntityUrl(__typeMapper.readString(__in, _lookupTypeInfo("entityUrl", "http://soap.sforce.com/2006/04/metadata","entityUrl","http://www.w3.org/2001/XMLSchema","string",1,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldEntityUrl(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("entityUrl", "http://soap.sforce.com/2006/04/metadata","entityUrl","http://www.w3.org/2001/XMLSchema","string",1,1,true), entityUrl, entityUrl__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : issuer of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean issuer__is_set = false;
|
|
|
|
private java.lang.String issuer;
|
|
|
|
public java.lang.String getIssuer() {
|
|
return issuer;
|
|
}
|
|
|
|
public void setIssuer(java.lang.String issuer) {
|
|
this.issuer = issuer;
|
|
issuer__is_set = true;
|
|
}
|
|
|
|
protected void setIssuer(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("issuer", "http://soap.sforce.com/2006/04/metadata","issuer","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setIssuer(__typeMapper.readString(__in, _lookupTypeInfo("issuer", "http://soap.sforce.com/2006/04/metadata","issuer","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldIssuer(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("issuer", "http://soap.sforce.com/2006/04/metadata","issuer","http://www.w3.org/2001/XMLSchema","string",0,1,true), issuer, issuer__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : samlIdpSLOBindingEnum of type {http://soap.sforce.com/2006/04/metadata}SamlIdpSLOBinding
|
|
* java type: com.sforce.soap.metadata.SamlIdpSLOBinding
|
|
*/
|
|
private boolean samlIdpSLOBindingEnum__is_set = false;
|
|
|
|
private com.sforce.soap.metadata.SamlIdpSLOBinding samlIdpSLOBindingEnum;
|
|
|
|
public com.sforce.soap.metadata.SamlIdpSLOBinding getSamlIdpSLOBindingEnum() {
|
|
return samlIdpSLOBindingEnum;
|
|
}
|
|
|
|
public void setSamlIdpSLOBindingEnum(com.sforce.soap.metadata.SamlIdpSLOBinding samlIdpSLOBindingEnum) {
|
|
this.samlIdpSLOBindingEnum = samlIdpSLOBindingEnum;
|
|
samlIdpSLOBindingEnum__is_set = true;
|
|
}
|
|
|
|
protected void setSamlIdpSLOBindingEnum(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("samlIdpSLOBindingEnum", "http://soap.sforce.com/2006/04/metadata","samlIdpSLOBindingEnum","http://soap.sforce.com/2006/04/metadata","SamlIdpSLOBinding",0,1,true))) {
|
|
setSamlIdpSLOBindingEnum((com.sforce.soap.metadata.SamlIdpSLOBinding)__typeMapper.readObject(__in, _lookupTypeInfo("samlIdpSLOBindingEnum", "http://soap.sforce.com/2006/04/metadata","samlIdpSLOBindingEnum","http://soap.sforce.com/2006/04/metadata","SamlIdpSLOBinding",0,1,true), com.sforce.soap.metadata.SamlIdpSLOBinding.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldSamlIdpSLOBindingEnum(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("samlIdpSLOBindingEnum", "http://soap.sforce.com/2006/04/metadata","samlIdpSLOBindingEnum","http://soap.sforce.com/2006/04/metadata","SamlIdpSLOBinding",0,1,true), samlIdpSLOBindingEnum, samlIdpSLOBindingEnum__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : samlNameIdFormat of type {http://soap.sforce.com/2006/04/metadata}SamlNameIdFormatType
|
|
* java type: com.sforce.soap.metadata.SamlNameIdFormatType
|
|
*/
|
|
private boolean samlNameIdFormat__is_set = false;
|
|
|
|
private com.sforce.soap.metadata.SamlNameIdFormatType samlNameIdFormat;
|
|
|
|
public com.sforce.soap.metadata.SamlNameIdFormatType getSamlNameIdFormat() {
|
|
return samlNameIdFormat;
|
|
}
|
|
|
|
public void setSamlNameIdFormat(com.sforce.soap.metadata.SamlNameIdFormatType samlNameIdFormat) {
|
|
this.samlNameIdFormat = samlNameIdFormat;
|
|
samlNameIdFormat__is_set = true;
|
|
}
|
|
|
|
protected void setSamlNameIdFormat(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("samlNameIdFormat", "http://soap.sforce.com/2006/04/metadata","samlNameIdFormat","http://soap.sforce.com/2006/04/metadata","SamlNameIdFormatType",0,1,true))) {
|
|
setSamlNameIdFormat((com.sforce.soap.metadata.SamlNameIdFormatType)__typeMapper.readObject(__in, _lookupTypeInfo("samlNameIdFormat", "http://soap.sforce.com/2006/04/metadata","samlNameIdFormat","http://soap.sforce.com/2006/04/metadata","SamlNameIdFormatType",0,1,true), com.sforce.soap.metadata.SamlNameIdFormatType.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldSamlNameIdFormat(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("samlNameIdFormat", "http://soap.sforce.com/2006/04/metadata","samlNameIdFormat","http://soap.sforce.com/2006/04/metadata","SamlNameIdFormatType",0,1,true), samlNameIdFormat, samlNameIdFormat__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : samlSigningAlgoType of type {http://soap.sforce.com/2006/04/metadata}SamlSigningAlgoType
|
|
* java type: com.sforce.soap.metadata.SamlSigningAlgoType
|
|
*/
|
|
private boolean samlSigningAlgoType__is_set = false;
|
|
|
|
private com.sforce.soap.metadata.SamlSigningAlgoType samlSigningAlgoType;
|
|
|
|
public com.sforce.soap.metadata.SamlSigningAlgoType getSamlSigningAlgoType() {
|
|
return samlSigningAlgoType;
|
|
}
|
|
|
|
public void setSamlSigningAlgoType(com.sforce.soap.metadata.SamlSigningAlgoType samlSigningAlgoType) {
|
|
this.samlSigningAlgoType = samlSigningAlgoType;
|
|
samlSigningAlgoType__is_set = true;
|
|
}
|
|
|
|
protected void setSamlSigningAlgoType(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("samlSigningAlgoType", "http://soap.sforce.com/2006/04/metadata","samlSigningAlgoType","http://soap.sforce.com/2006/04/metadata","SamlSigningAlgoType",0,1,true))) {
|
|
setSamlSigningAlgoType((com.sforce.soap.metadata.SamlSigningAlgoType)__typeMapper.readObject(__in, _lookupTypeInfo("samlSigningAlgoType", "http://soap.sforce.com/2006/04/metadata","samlSigningAlgoType","http://soap.sforce.com/2006/04/metadata","SamlSigningAlgoType",0,1,true), com.sforce.soap.metadata.SamlSigningAlgoType.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldSamlSigningAlgoType(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("samlSigningAlgoType", "http://soap.sforce.com/2006/04/metadata","samlSigningAlgoType","http://soap.sforce.com/2006/04/metadata","SamlSigningAlgoType",0,1,true), samlSigningAlgoType, samlSigningAlgoType__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : samlSloUrl of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean samlSloUrl__is_set = false;
|
|
|
|
private java.lang.String samlSloUrl;
|
|
|
|
public java.lang.String getSamlSloUrl() {
|
|
return samlSloUrl;
|
|
}
|
|
|
|
public void setSamlSloUrl(java.lang.String samlSloUrl) {
|
|
this.samlSloUrl = samlSloUrl;
|
|
samlSloUrl__is_set = true;
|
|
}
|
|
|
|
protected void setSamlSloUrl(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("samlSloUrl", "http://soap.sforce.com/2006/04/metadata","samlSloUrl","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setSamlSloUrl(__typeMapper.readString(__in, _lookupTypeInfo("samlSloUrl", "http://soap.sforce.com/2006/04/metadata","samlSloUrl","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldSamlSloUrl(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("samlSloUrl", "http://soap.sforce.com/2006/04/metadata","samlSloUrl","http://www.w3.org/2001/XMLSchema","string",0,1,true), samlSloUrl, samlSloUrl__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : samlSubjectCustomAttr of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean samlSubjectCustomAttr__is_set = false;
|
|
|
|
private java.lang.String samlSubjectCustomAttr;
|
|
|
|
public java.lang.String getSamlSubjectCustomAttr() {
|
|
return samlSubjectCustomAttr;
|
|
}
|
|
|
|
public void setSamlSubjectCustomAttr(java.lang.String samlSubjectCustomAttr) {
|
|
this.samlSubjectCustomAttr = samlSubjectCustomAttr;
|
|
samlSubjectCustomAttr__is_set = true;
|
|
}
|
|
|
|
protected void setSamlSubjectCustomAttr(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("samlSubjectCustomAttr", "http://soap.sforce.com/2006/04/metadata","samlSubjectCustomAttr","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setSamlSubjectCustomAttr(__typeMapper.readString(__in, _lookupTypeInfo("samlSubjectCustomAttr", "http://soap.sforce.com/2006/04/metadata","samlSubjectCustomAttr","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldSamlSubjectCustomAttr(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("samlSubjectCustomAttr", "http://soap.sforce.com/2006/04/metadata","samlSubjectCustomAttr","http://www.w3.org/2001/XMLSchema","string",0,1,true), samlSubjectCustomAttr, samlSubjectCustomAttr__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : samlSubjectType of type {http://soap.sforce.com/2006/04/metadata}SamlSubjectType
|
|
* java type: com.sforce.soap.metadata.SamlSubjectType
|
|
*/
|
|
private boolean samlSubjectType__is_set = false;
|
|
|
|
private com.sforce.soap.metadata.SamlSubjectType samlSubjectType;
|
|
|
|
public com.sforce.soap.metadata.SamlSubjectType getSamlSubjectType() {
|
|
return samlSubjectType;
|
|
}
|
|
|
|
public void setSamlSubjectType(com.sforce.soap.metadata.SamlSubjectType samlSubjectType) {
|
|
this.samlSubjectType = samlSubjectType;
|
|
samlSubjectType__is_set = true;
|
|
}
|
|
|
|
protected void setSamlSubjectType(com.sforce.ws.parser.XmlInputStream __in,
|
|
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
|
|
__in.peekTag();
|
|
if (__typeMapper.verifyElement(__in, _lookupTypeInfo("samlSubjectType", "http://soap.sforce.com/2006/04/metadata","samlSubjectType","http://soap.sforce.com/2006/04/metadata","SamlSubjectType",1,1,true))) {
|
|
setSamlSubjectType((com.sforce.soap.metadata.SamlSubjectType)__typeMapper.readObject(__in, _lookupTypeInfo("samlSubjectType", "http://soap.sforce.com/2006/04/metadata","samlSubjectType","http://soap.sforce.com/2006/04/metadata","SamlSubjectType",1,1,true), com.sforce.soap.metadata.SamlSubjectType.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldSamlSubjectType(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("samlSubjectType", "http://soap.sforce.com/2006/04/metadata","samlSubjectType","http://soap.sforce.com/2006/04/metadata","SamlSubjectType",1,1,true), samlSubjectType, samlSubjectType__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());
|
|
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 {
|
|
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 {
|
|
loadFields1(__in, __typeMapper);
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
java.lang.StringBuilder sb = new java.lang.StringBuilder();
|
|
sb.append("[ConnectedAppSamlConfig ");
|
|
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 {
|
|
writeFieldAcsUrl(__out, __typeMapper);
|
|
writeFieldCertificate(__out, __typeMapper);
|
|
writeFieldEncryptionCertificate(__out, __typeMapper);
|
|
writeFieldEncryptionType(__out, __typeMapper);
|
|
writeFieldEntityUrl(__out, __typeMapper);
|
|
writeFieldIssuer(__out, __typeMapper);
|
|
writeFieldSamlIdpSLOBindingEnum(__out, __typeMapper);
|
|
writeFieldSamlNameIdFormat(__out, __typeMapper);
|
|
writeFieldSamlSigningAlgoType(__out, __typeMapper);
|
|
writeFieldSamlSloUrl(__out, __typeMapper);
|
|
writeFieldSamlSubjectCustomAttr(__out, __typeMapper);
|
|
writeFieldSamlSubjectType(__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 {
|
|
setAcsUrl(__in, __typeMapper);
|
|
setCertificate(__in, __typeMapper);
|
|
setEncryptionCertificate(__in, __typeMapper);
|
|
setEncryptionType(__in, __typeMapper);
|
|
setEntityUrl(__in, __typeMapper);
|
|
setIssuer(__in, __typeMapper);
|
|
setSamlIdpSLOBindingEnum(__in, __typeMapper);
|
|
setSamlNameIdFormat(__in, __typeMapper);
|
|
setSamlSigningAlgoType(__in, __typeMapper);
|
|
setSamlSloUrl(__in, __typeMapper);
|
|
setSamlSubjectCustomAttr(__in, __typeMapper);
|
|
setSamlSubjectType(__in, __typeMapper);
|
|
}
|
|
|
|
private void toString1(StringBuilder sb) {
|
|
toStringHelper(sb, "acsUrl", acsUrl);
|
|
toStringHelper(sb, "certificate", certificate);
|
|
toStringHelper(sb, "encryptionCertificate", encryptionCertificate);
|
|
toStringHelper(sb, "encryptionType", encryptionType);
|
|
toStringHelper(sb, "entityUrl", entityUrl);
|
|
toStringHelper(sb, "issuer", issuer);
|
|
toStringHelper(sb, "samlIdpSLOBindingEnum", samlIdpSLOBindingEnum);
|
|
toStringHelper(sb, "samlNameIdFormat", samlNameIdFormat);
|
|
toStringHelper(sb, "samlSigningAlgoType", samlSigningAlgoType);
|
|
toStringHelper(sb, "samlSloUrl", samlSloUrl);
|
|
toStringHelper(sb, "samlSubjectCustomAttr", samlSubjectCustomAttr);
|
|
toStringHelper(sb, "samlSubjectType", samlSubjectType);
|
|
}
|
|
|
|
|
|
}
|