694 lines
39 KiB
Java
694 lines
39 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 ApexSettings extends com.sforce.soap.metadata.Metadata {
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public ApexSettings() {}
|
|
|
|
/* 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 : defaultQueueableDelay of type {http://www.w3.org/2001/XMLSchema}int
|
|
* java type: int
|
|
*/
|
|
private boolean defaultQueueableDelay__is_set = false;
|
|
|
|
private int defaultQueueableDelay;
|
|
|
|
public int getDefaultQueueableDelay() {
|
|
return defaultQueueableDelay;
|
|
}
|
|
|
|
public void setDefaultQueueableDelay(int defaultQueueableDelay) {
|
|
this.defaultQueueableDelay = defaultQueueableDelay;
|
|
defaultQueueableDelay__is_set = true;
|
|
}
|
|
|
|
protected void setDefaultQueueableDelay(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("defaultQueueableDelay", "http://soap.sforce.com/2006/04/metadata","defaultQueueableDelay","http://www.w3.org/2001/XMLSchema","int",0,1,true))) {
|
|
setDefaultQueueableDelay((int)__typeMapper.readInt(__in, _lookupTypeInfo("defaultQueueableDelay", "http://soap.sforce.com/2006/04/metadata","defaultQueueableDelay","http://www.w3.org/2001/XMLSchema","int",0,1,true), int.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldDefaultQueueableDelay(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("defaultQueueableDelay", "http://soap.sforce.com/2006/04/metadata","defaultQueueableDelay","http://www.w3.org/2001/XMLSchema","int",0,1,true), defaultQueueableDelay, defaultQueueableDelay__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : enableAggregateCodeCoverageOnly of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
private boolean enableAggregateCodeCoverageOnly__is_set = false;
|
|
|
|
private boolean enableAggregateCodeCoverageOnly;
|
|
|
|
public boolean getEnableAggregateCodeCoverageOnly() {
|
|
return enableAggregateCodeCoverageOnly;
|
|
}
|
|
|
|
public boolean isEnableAggregateCodeCoverageOnly() {
|
|
return enableAggregateCodeCoverageOnly;
|
|
}
|
|
|
|
public void setEnableAggregateCodeCoverageOnly(boolean enableAggregateCodeCoverageOnly) {
|
|
this.enableAggregateCodeCoverageOnly = enableAggregateCodeCoverageOnly;
|
|
enableAggregateCodeCoverageOnly__is_set = true;
|
|
}
|
|
|
|
protected void setEnableAggregateCodeCoverageOnly(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("enableAggregateCodeCoverageOnly", "http://soap.sforce.com/2006/04/metadata","enableAggregateCodeCoverageOnly","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
|
setEnableAggregateCodeCoverageOnly(__typeMapper.readBoolean(__in, _lookupTypeInfo("enableAggregateCodeCoverageOnly", "http://soap.sforce.com/2006/04/metadata","enableAggregateCodeCoverageOnly","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldEnableAggregateCodeCoverageOnly(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("enableAggregateCodeCoverageOnly", "http://soap.sforce.com/2006/04/metadata","enableAggregateCodeCoverageOnly","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), enableAggregateCodeCoverageOnly, enableAggregateCodeCoverageOnly__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : enableApexAccessRightsPref of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
private boolean enableApexAccessRightsPref__is_set = false;
|
|
|
|
private boolean enableApexAccessRightsPref;
|
|
|
|
public boolean getEnableApexAccessRightsPref() {
|
|
return enableApexAccessRightsPref;
|
|
}
|
|
|
|
public boolean isEnableApexAccessRightsPref() {
|
|
return enableApexAccessRightsPref;
|
|
}
|
|
|
|
public void setEnableApexAccessRightsPref(boolean enableApexAccessRightsPref) {
|
|
this.enableApexAccessRightsPref = enableApexAccessRightsPref;
|
|
enableApexAccessRightsPref__is_set = true;
|
|
}
|
|
|
|
protected void setEnableApexAccessRightsPref(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("enableApexAccessRightsPref", "http://soap.sforce.com/2006/04/metadata","enableApexAccessRightsPref","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
|
setEnableApexAccessRightsPref(__typeMapper.readBoolean(__in, _lookupTypeInfo("enableApexAccessRightsPref", "http://soap.sforce.com/2006/04/metadata","enableApexAccessRightsPref","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldEnableApexAccessRightsPref(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("enableApexAccessRightsPref", "http://soap.sforce.com/2006/04/metadata","enableApexAccessRightsPref","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), enableApexAccessRightsPref, enableApexAccessRightsPref__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : enableApexApprovalLockUnlock of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
private boolean enableApexApprovalLockUnlock__is_set = false;
|
|
|
|
private boolean enableApexApprovalLockUnlock;
|
|
|
|
public boolean getEnableApexApprovalLockUnlock() {
|
|
return enableApexApprovalLockUnlock;
|
|
}
|
|
|
|
public boolean isEnableApexApprovalLockUnlock() {
|
|
return enableApexApprovalLockUnlock;
|
|
}
|
|
|
|
public void setEnableApexApprovalLockUnlock(boolean enableApexApprovalLockUnlock) {
|
|
this.enableApexApprovalLockUnlock = enableApexApprovalLockUnlock;
|
|
enableApexApprovalLockUnlock__is_set = true;
|
|
}
|
|
|
|
protected void setEnableApexApprovalLockUnlock(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("enableApexApprovalLockUnlock", "http://soap.sforce.com/2006/04/metadata","enableApexApprovalLockUnlock","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
|
setEnableApexApprovalLockUnlock(__typeMapper.readBoolean(__in, _lookupTypeInfo("enableApexApprovalLockUnlock", "http://soap.sforce.com/2006/04/metadata","enableApexApprovalLockUnlock","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldEnableApexApprovalLockUnlock(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("enableApexApprovalLockUnlock", "http://soap.sforce.com/2006/04/metadata","enableApexApprovalLockUnlock","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), enableApexApprovalLockUnlock, enableApexApprovalLockUnlock__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : enableApexCtrlImplicitWithSharingPref of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
private boolean enableApexCtrlImplicitWithSharingPref__is_set = false;
|
|
|
|
private boolean enableApexCtrlImplicitWithSharingPref;
|
|
|
|
public boolean getEnableApexCtrlImplicitWithSharingPref() {
|
|
return enableApexCtrlImplicitWithSharingPref;
|
|
}
|
|
|
|
public boolean isEnableApexCtrlImplicitWithSharingPref() {
|
|
return enableApexCtrlImplicitWithSharingPref;
|
|
}
|
|
|
|
public void setEnableApexCtrlImplicitWithSharingPref(boolean enableApexCtrlImplicitWithSharingPref) {
|
|
this.enableApexCtrlImplicitWithSharingPref = enableApexCtrlImplicitWithSharingPref;
|
|
enableApexCtrlImplicitWithSharingPref__is_set = true;
|
|
}
|
|
|
|
protected void setEnableApexCtrlImplicitWithSharingPref(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("enableApexCtrlImplicitWithSharingPref", "http://soap.sforce.com/2006/04/metadata","enableApexCtrlImplicitWithSharingPref","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
|
setEnableApexCtrlImplicitWithSharingPref(__typeMapper.readBoolean(__in, _lookupTypeInfo("enableApexCtrlImplicitWithSharingPref", "http://soap.sforce.com/2006/04/metadata","enableApexCtrlImplicitWithSharingPref","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldEnableApexCtrlImplicitWithSharingPref(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("enableApexCtrlImplicitWithSharingPref", "http://soap.sforce.com/2006/04/metadata","enableApexCtrlImplicitWithSharingPref","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), enableApexCtrlImplicitWithSharingPref, enableApexCtrlImplicitWithSharingPref__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : enableApexPropertyGetterPref of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
private boolean enableApexPropertyGetterPref__is_set = false;
|
|
|
|
private boolean enableApexPropertyGetterPref;
|
|
|
|
public boolean getEnableApexPropertyGetterPref() {
|
|
return enableApexPropertyGetterPref;
|
|
}
|
|
|
|
public boolean isEnableApexPropertyGetterPref() {
|
|
return enableApexPropertyGetterPref;
|
|
}
|
|
|
|
public void setEnableApexPropertyGetterPref(boolean enableApexPropertyGetterPref) {
|
|
this.enableApexPropertyGetterPref = enableApexPropertyGetterPref;
|
|
enableApexPropertyGetterPref__is_set = true;
|
|
}
|
|
|
|
protected void setEnableApexPropertyGetterPref(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("enableApexPropertyGetterPref", "http://soap.sforce.com/2006/04/metadata","enableApexPropertyGetterPref","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
|
setEnableApexPropertyGetterPref(__typeMapper.readBoolean(__in, _lookupTypeInfo("enableApexPropertyGetterPref", "http://soap.sforce.com/2006/04/metadata","enableApexPropertyGetterPref","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldEnableApexPropertyGetterPref(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("enableApexPropertyGetterPref", "http://soap.sforce.com/2006/04/metadata","enableApexPropertyGetterPref","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), enableApexPropertyGetterPref, enableApexPropertyGetterPref__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : enableAuraApexCtrlAuthUserAccessCheckPref of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
private boolean enableAuraApexCtrlAuthUserAccessCheckPref__is_set = false;
|
|
|
|
private boolean enableAuraApexCtrlAuthUserAccessCheckPref;
|
|
|
|
public boolean getEnableAuraApexCtrlAuthUserAccessCheckPref() {
|
|
return enableAuraApexCtrlAuthUserAccessCheckPref;
|
|
}
|
|
|
|
public boolean isEnableAuraApexCtrlAuthUserAccessCheckPref() {
|
|
return enableAuraApexCtrlAuthUserAccessCheckPref;
|
|
}
|
|
|
|
public void setEnableAuraApexCtrlAuthUserAccessCheckPref(boolean enableAuraApexCtrlAuthUserAccessCheckPref) {
|
|
this.enableAuraApexCtrlAuthUserAccessCheckPref = enableAuraApexCtrlAuthUserAccessCheckPref;
|
|
enableAuraApexCtrlAuthUserAccessCheckPref__is_set = true;
|
|
}
|
|
|
|
protected void setEnableAuraApexCtrlAuthUserAccessCheckPref(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("enableAuraApexCtrlAuthUserAccessCheckPref", "http://soap.sforce.com/2006/04/metadata","enableAuraApexCtrlAuthUserAccessCheckPref","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
|
setEnableAuraApexCtrlAuthUserAccessCheckPref(__typeMapper.readBoolean(__in, _lookupTypeInfo("enableAuraApexCtrlAuthUserAccessCheckPref", "http://soap.sforce.com/2006/04/metadata","enableAuraApexCtrlAuthUserAccessCheckPref","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldEnableAuraApexCtrlAuthUserAccessCheckPref(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("enableAuraApexCtrlAuthUserAccessCheckPref", "http://soap.sforce.com/2006/04/metadata","enableAuraApexCtrlAuthUserAccessCheckPref","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), enableAuraApexCtrlAuthUserAccessCheckPref, enableAuraApexCtrlAuthUserAccessCheckPref__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : enableAuraApexCtrlGuestUserAccessCheckPref of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
private boolean enableAuraApexCtrlGuestUserAccessCheckPref__is_set = false;
|
|
|
|
private boolean enableAuraApexCtrlGuestUserAccessCheckPref;
|
|
|
|
public boolean getEnableAuraApexCtrlGuestUserAccessCheckPref() {
|
|
return enableAuraApexCtrlGuestUserAccessCheckPref;
|
|
}
|
|
|
|
public boolean isEnableAuraApexCtrlGuestUserAccessCheckPref() {
|
|
return enableAuraApexCtrlGuestUserAccessCheckPref;
|
|
}
|
|
|
|
public void setEnableAuraApexCtrlGuestUserAccessCheckPref(boolean enableAuraApexCtrlGuestUserAccessCheckPref) {
|
|
this.enableAuraApexCtrlGuestUserAccessCheckPref = enableAuraApexCtrlGuestUserAccessCheckPref;
|
|
enableAuraApexCtrlGuestUserAccessCheckPref__is_set = true;
|
|
}
|
|
|
|
protected void setEnableAuraApexCtrlGuestUserAccessCheckPref(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("enableAuraApexCtrlGuestUserAccessCheckPref", "http://soap.sforce.com/2006/04/metadata","enableAuraApexCtrlGuestUserAccessCheckPref","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
|
setEnableAuraApexCtrlGuestUserAccessCheckPref(__typeMapper.readBoolean(__in, _lookupTypeInfo("enableAuraApexCtrlGuestUserAccessCheckPref", "http://soap.sforce.com/2006/04/metadata","enableAuraApexCtrlGuestUserAccessCheckPref","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldEnableAuraApexCtrlGuestUserAccessCheckPref(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("enableAuraApexCtrlGuestUserAccessCheckPref", "http://soap.sforce.com/2006/04/metadata","enableAuraApexCtrlGuestUserAccessCheckPref","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), enableAuraApexCtrlGuestUserAccessCheckPref, enableAuraApexCtrlGuestUserAccessCheckPref__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : enableCompileOnDeploy of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
private boolean enableCompileOnDeploy__is_set = false;
|
|
|
|
private boolean enableCompileOnDeploy;
|
|
|
|
public boolean getEnableCompileOnDeploy() {
|
|
return enableCompileOnDeploy;
|
|
}
|
|
|
|
public boolean isEnableCompileOnDeploy() {
|
|
return enableCompileOnDeploy;
|
|
}
|
|
|
|
public void setEnableCompileOnDeploy(boolean enableCompileOnDeploy) {
|
|
this.enableCompileOnDeploy = enableCompileOnDeploy;
|
|
enableCompileOnDeploy__is_set = true;
|
|
}
|
|
|
|
protected void setEnableCompileOnDeploy(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("enableCompileOnDeploy", "http://soap.sforce.com/2006/04/metadata","enableCompileOnDeploy","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
|
setEnableCompileOnDeploy(__typeMapper.readBoolean(__in, _lookupTypeInfo("enableCompileOnDeploy", "http://soap.sforce.com/2006/04/metadata","enableCompileOnDeploy","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldEnableCompileOnDeploy(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("enableCompileOnDeploy", "http://soap.sforce.com/2006/04/metadata","enableCompileOnDeploy","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), enableCompileOnDeploy, enableCompileOnDeploy__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : enableDebugLogsDuringDeployment of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
private boolean enableDebugLogsDuringDeployment__is_set = false;
|
|
|
|
private boolean enableDebugLogsDuringDeployment;
|
|
|
|
public boolean getEnableDebugLogsDuringDeployment() {
|
|
return enableDebugLogsDuringDeployment;
|
|
}
|
|
|
|
public boolean isEnableDebugLogsDuringDeployment() {
|
|
return enableDebugLogsDuringDeployment;
|
|
}
|
|
|
|
public void setEnableDebugLogsDuringDeployment(boolean enableDebugLogsDuringDeployment) {
|
|
this.enableDebugLogsDuringDeployment = enableDebugLogsDuringDeployment;
|
|
enableDebugLogsDuringDeployment__is_set = true;
|
|
}
|
|
|
|
protected void setEnableDebugLogsDuringDeployment(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("enableDebugLogsDuringDeployment", "http://soap.sforce.com/2006/04/metadata","enableDebugLogsDuringDeployment","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
|
setEnableDebugLogsDuringDeployment(__typeMapper.readBoolean(__in, _lookupTypeInfo("enableDebugLogsDuringDeployment", "http://soap.sforce.com/2006/04/metadata","enableDebugLogsDuringDeployment","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldEnableDebugLogsDuringDeployment(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("enableDebugLogsDuringDeployment", "http://soap.sforce.com/2006/04/metadata","enableDebugLogsDuringDeployment","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), enableDebugLogsDuringDeployment, enableDebugLogsDuringDeployment__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : enableDisableParallelApexTesting of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
private boolean enableDisableParallelApexTesting__is_set = false;
|
|
|
|
private boolean enableDisableParallelApexTesting;
|
|
|
|
public boolean getEnableDisableParallelApexTesting() {
|
|
return enableDisableParallelApexTesting;
|
|
}
|
|
|
|
public boolean isEnableDisableParallelApexTesting() {
|
|
return enableDisableParallelApexTesting;
|
|
}
|
|
|
|
public void setEnableDisableParallelApexTesting(boolean enableDisableParallelApexTesting) {
|
|
this.enableDisableParallelApexTesting = enableDisableParallelApexTesting;
|
|
enableDisableParallelApexTesting__is_set = true;
|
|
}
|
|
|
|
protected void setEnableDisableParallelApexTesting(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("enableDisableParallelApexTesting", "http://soap.sforce.com/2006/04/metadata","enableDisableParallelApexTesting","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
|
setEnableDisableParallelApexTesting(__typeMapper.readBoolean(__in, _lookupTypeInfo("enableDisableParallelApexTesting", "http://soap.sforce.com/2006/04/metadata","enableDisableParallelApexTesting","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldEnableDisableParallelApexTesting(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("enableDisableParallelApexTesting", "http://soap.sforce.com/2006/04/metadata","enableDisableParallelApexTesting","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), enableDisableParallelApexTesting, enableDisableParallelApexTesting__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : enableGaplessTestAutoNum of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
private boolean enableGaplessTestAutoNum__is_set = false;
|
|
|
|
private boolean enableGaplessTestAutoNum;
|
|
|
|
public boolean getEnableGaplessTestAutoNum() {
|
|
return enableGaplessTestAutoNum;
|
|
}
|
|
|
|
public boolean isEnableGaplessTestAutoNum() {
|
|
return enableGaplessTestAutoNum;
|
|
}
|
|
|
|
public void setEnableGaplessTestAutoNum(boolean enableGaplessTestAutoNum) {
|
|
this.enableGaplessTestAutoNum = enableGaplessTestAutoNum;
|
|
enableGaplessTestAutoNum__is_set = true;
|
|
}
|
|
|
|
protected void setEnableGaplessTestAutoNum(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("enableGaplessTestAutoNum", "http://soap.sforce.com/2006/04/metadata","enableGaplessTestAutoNum","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
|
setEnableGaplessTestAutoNum(__typeMapper.readBoolean(__in, _lookupTypeInfo("enableGaplessTestAutoNum", "http://soap.sforce.com/2006/04/metadata","enableGaplessTestAutoNum","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldEnableGaplessTestAutoNum(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("enableGaplessTestAutoNum", "http://soap.sforce.com/2006/04/metadata","enableGaplessTestAutoNum","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), enableGaplessTestAutoNum, enableGaplessTestAutoNum__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : enableMngdCtrlActionAccessPref of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
private boolean enableMngdCtrlActionAccessPref__is_set = false;
|
|
|
|
private boolean enableMngdCtrlActionAccessPref;
|
|
|
|
public boolean getEnableMngdCtrlActionAccessPref() {
|
|
return enableMngdCtrlActionAccessPref;
|
|
}
|
|
|
|
public boolean isEnableMngdCtrlActionAccessPref() {
|
|
return enableMngdCtrlActionAccessPref;
|
|
}
|
|
|
|
public void setEnableMngdCtrlActionAccessPref(boolean enableMngdCtrlActionAccessPref) {
|
|
this.enableMngdCtrlActionAccessPref = enableMngdCtrlActionAccessPref;
|
|
enableMngdCtrlActionAccessPref__is_set = true;
|
|
}
|
|
|
|
protected void setEnableMngdCtrlActionAccessPref(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("enableMngdCtrlActionAccessPref", "http://soap.sforce.com/2006/04/metadata","enableMngdCtrlActionAccessPref","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
|
setEnableMngdCtrlActionAccessPref(__typeMapper.readBoolean(__in, _lookupTypeInfo("enableMngdCtrlActionAccessPref", "http://soap.sforce.com/2006/04/metadata","enableMngdCtrlActionAccessPref","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldEnableMngdCtrlActionAccessPref(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("enableMngdCtrlActionAccessPref", "http://soap.sforce.com/2006/04/metadata","enableMngdCtrlActionAccessPref","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), enableMngdCtrlActionAccessPref, enableMngdCtrlActionAccessPref__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : enableNonCertifiedApexMdCrud of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
private boolean enableNonCertifiedApexMdCrud__is_set = false;
|
|
|
|
private boolean enableNonCertifiedApexMdCrud;
|
|
|
|
public boolean getEnableNonCertifiedApexMdCrud() {
|
|
return enableNonCertifiedApexMdCrud;
|
|
}
|
|
|
|
public boolean isEnableNonCertifiedApexMdCrud() {
|
|
return enableNonCertifiedApexMdCrud;
|
|
}
|
|
|
|
public void setEnableNonCertifiedApexMdCrud(boolean enableNonCertifiedApexMdCrud) {
|
|
this.enableNonCertifiedApexMdCrud = enableNonCertifiedApexMdCrud;
|
|
enableNonCertifiedApexMdCrud__is_set = true;
|
|
}
|
|
|
|
protected void setEnableNonCertifiedApexMdCrud(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("enableNonCertifiedApexMdCrud", "http://soap.sforce.com/2006/04/metadata","enableNonCertifiedApexMdCrud","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
|
setEnableNonCertifiedApexMdCrud(__typeMapper.readBoolean(__in, _lookupTypeInfo("enableNonCertifiedApexMdCrud", "http://soap.sforce.com/2006/04/metadata","enableNonCertifiedApexMdCrud","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldEnableNonCertifiedApexMdCrud(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("enableNonCertifiedApexMdCrud", "http://soap.sforce.com/2006/04/metadata","enableNonCertifiedApexMdCrud","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), enableNonCertifiedApexMdCrud, enableNonCertifiedApexMdCrud__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : enableRestrictCommunityExecAnon of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
private boolean enableRestrictCommunityExecAnon__is_set = false;
|
|
|
|
private boolean enableRestrictCommunityExecAnon;
|
|
|
|
public boolean getEnableRestrictCommunityExecAnon() {
|
|
return enableRestrictCommunityExecAnon;
|
|
}
|
|
|
|
public boolean isEnableRestrictCommunityExecAnon() {
|
|
return enableRestrictCommunityExecAnon;
|
|
}
|
|
|
|
public void setEnableRestrictCommunityExecAnon(boolean enableRestrictCommunityExecAnon) {
|
|
this.enableRestrictCommunityExecAnon = enableRestrictCommunityExecAnon;
|
|
enableRestrictCommunityExecAnon__is_set = true;
|
|
}
|
|
|
|
protected void setEnableRestrictCommunityExecAnon(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("enableRestrictCommunityExecAnon", "http://soap.sforce.com/2006/04/metadata","enableRestrictCommunityExecAnon","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
|
setEnableRestrictCommunityExecAnon(__typeMapper.readBoolean(__in, _lookupTypeInfo("enableRestrictCommunityExecAnon", "http://soap.sforce.com/2006/04/metadata","enableRestrictCommunityExecAnon","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldEnableRestrictCommunityExecAnon(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("enableRestrictCommunityExecAnon", "http://soap.sforce.com/2006/04/metadata","enableRestrictCommunityExecAnon","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), enableRestrictCommunityExecAnon, enableRestrictCommunityExecAnon__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : enableSecureNoArgConstructorPref of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
private boolean enableSecureNoArgConstructorPref__is_set = false;
|
|
|
|
private boolean enableSecureNoArgConstructorPref;
|
|
|
|
public boolean getEnableSecureNoArgConstructorPref() {
|
|
return enableSecureNoArgConstructorPref;
|
|
}
|
|
|
|
public boolean isEnableSecureNoArgConstructorPref() {
|
|
return enableSecureNoArgConstructorPref;
|
|
}
|
|
|
|
public void setEnableSecureNoArgConstructorPref(boolean enableSecureNoArgConstructorPref) {
|
|
this.enableSecureNoArgConstructorPref = enableSecureNoArgConstructorPref;
|
|
enableSecureNoArgConstructorPref__is_set = true;
|
|
}
|
|
|
|
protected void setEnableSecureNoArgConstructorPref(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("enableSecureNoArgConstructorPref", "http://soap.sforce.com/2006/04/metadata","enableSecureNoArgConstructorPref","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
|
setEnableSecureNoArgConstructorPref(__typeMapper.readBoolean(__in, _lookupTypeInfo("enableSecureNoArgConstructorPref", "http://soap.sforce.com/2006/04/metadata","enableSecureNoArgConstructorPref","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldEnableSecureNoArgConstructorPref(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("enableSecureNoArgConstructorPref", "http://soap.sforce.com/2006/04/metadata","enableSecureNoArgConstructorPref","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), enableSecureNoArgConstructorPref, enableSecureNoArgConstructorPref__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : enableTestSetupSkipTestResults of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
private boolean enableTestSetupSkipTestResults__is_set = false;
|
|
|
|
private boolean enableTestSetupSkipTestResults;
|
|
|
|
public boolean getEnableTestSetupSkipTestResults() {
|
|
return enableTestSetupSkipTestResults;
|
|
}
|
|
|
|
public boolean isEnableTestSetupSkipTestResults() {
|
|
return enableTestSetupSkipTestResults;
|
|
}
|
|
|
|
public void setEnableTestSetupSkipTestResults(boolean enableTestSetupSkipTestResults) {
|
|
this.enableTestSetupSkipTestResults = enableTestSetupSkipTestResults;
|
|
enableTestSetupSkipTestResults__is_set = true;
|
|
}
|
|
|
|
protected void setEnableTestSetupSkipTestResults(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("enableTestSetupSkipTestResults", "http://soap.sforce.com/2006/04/metadata","enableTestSetupSkipTestResults","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
|
setEnableTestSetupSkipTestResults(__typeMapper.readBoolean(__in, _lookupTypeInfo("enableTestSetupSkipTestResults", "http://soap.sforce.com/2006/04/metadata","enableTestSetupSkipTestResults","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldEnableTestSetupSkipTestResults(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("enableTestSetupSkipTestResults", "http://soap.sforce.com/2006/04/metadata","enableTestSetupSkipTestResults","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), enableTestSetupSkipTestResults, enableTestSetupSkipTestResults__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, "http://soap.sforce.com/2006/04/metadata", "ApexSettings");
|
|
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("[ApexSettings ");
|
|
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 {
|
|
writeFieldDefaultQueueableDelay(__out, __typeMapper);
|
|
writeFieldEnableAggregateCodeCoverageOnly(__out, __typeMapper);
|
|
writeFieldEnableApexAccessRightsPref(__out, __typeMapper);
|
|
writeFieldEnableApexApprovalLockUnlock(__out, __typeMapper);
|
|
writeFieldEnableApexCtrlImplicitWithSharingPref(__out, __typeMapper);
|
|
writeFieldEnableApexPropertyGetterPref(__out, __typeMapper);
|
|
writeFieldEnableAuraApexCtrlAuthUserAccessCheckPref(__out, __typeMapper);
|
|
writeFieldEnableAuraApexCtrlGuestUserAccessCheckPref(__out, __typeMapper);
|
|
writeFieldEnableCompileOnDeploy(__out, __typeMapper);
|
|
writeFieldEnableDebugLogsDuringDeployment(__out, __typeMapper);
|
|
writeFieldEnableDisableParallelApexTesting(__out, __typeMapper);
|
|
writeFieldEnableGaplessTestAutoNum(__out, __typeMapper);
|
|
writeFieldEnableMngdCtrlActionAccessPref(__out, __typeMapper);
|
|
writeFieldEnableNonCertifiedApexMdCrud(__out, __typeMapper);
|
|
writeFieldEnableRestrictCommunityExecAnon(__out, __typeMapper);
|
|
writeFieldEnableSecureNoArgConstructorPref(__out, __typeMapper);
|
|
writeFieldEnableTestSetupSkipTestResults(__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 {
|
|
setDefaultQueueableDelay(__in, __typeMapper);
|
|
setEnableAggregateCodeCoverageOnly(__in, __typeMapper);
|
|
setEnableApexAccessRightsPref(__in, __typeMapper);
|
|
setEnableApexApprovalLockUnlock(__in, __typeMapper);
|
|
setEnableApexCtrlImplicitWithSharingPref(__in, __typeMapper);
|
|
setEnableApexPropertyGetterPref(__in, __typeMapper);
|
|
setEnableAuraApexCtrlAuthUserAccessCheckPref(__in, __typeMapper);
|
|
setEnableAuraApexCtrlGuestUserAccessCheckPref(__in, __typeMapper);
|
|
setEnableCompileOnDeploy(__in, __typeMapper);
|
|
setEnableDebugLogsDuringDeployment(__in, __typeMapper);
|
|
setEnableDisableParallelApexTesting(__in, __typeMapper);
|
|
setEnableGaplessTestAutoNum(__in, __typeMapper);
|
|
setEnableMngdCtrlActionAccessPref(__in, __typeMapper);
|
|
setEnableNonCertifiedApexMdCrud(__in, __typeMapper);
|
|
setEnableRestrictCommunityExecAnon(__in, __typeMapper);
|
|
setEnableSecureNoArgConstructorPref(__in, __typeMapper);
|
|
setEnableTestSetupSkipTestResults(__in, __typeMapper);
|
|
}
|
|
|
|
private void toString1(StringBuilder sb) {
|
|
toStringHelper(sb, "defaultQueueableDelay", defaultQueueableDelay);
|
|
toStringHelper(sb, "enableAggregateCodeCoverageOnly", enableAggregateCodeCoverageOnly);
|
|
toStringHelper(sb, "enableApexAccessRightsPref", enableApexAccessRightsPref);
|
|
toStringHelper(sb, "enableApexApprovalLockUnlock", enableApexApprovalLockUnlock);
|
|
toStringHelper(sb, "enableApexCtrlImplicitWithSharingPref", enableApexCtrlImplicitWithSharingPref);
|
|
toStringHelper(sb, "enableApexPropertyGetterPref", enableApexPropertyGetterPref);
|
|
toStringHelper(sb, "enableAuraApexCtrlAuthUserAccessCheckPref", enableAuraApexCtrlAuthUserAccessCheckPref);
|
|
toStringHelper(sb, "enableAuraApexCtrlGuestUserAccessCheckPref", enableAuraApexCtrlGuestUserAccessCheckPref);
|
|
toStringHelper(sb, "enableCompileOnDeploy", enableCompileOnDeploy);
|
|
toStringHelper(sb, "enableDebugLogsDuringDeployment", enableDebugLogsDuringDeployment);
|
|
toStringHelper(sb, "enableDisableParallelApexTesting", enableDisableParallelApexTesting);
|
|
toStringHelper(sb, "enableGaplessTestAutoNum", enableGaplessTestAutoNum);
|
|
toStringHelper(sb, "enableMngdCtrlActionAccessPref", enableMngdCtrlActionAccessPref);
|
|
toStringHelper(sb, "enableNonCertifiedApexMdCrud", enableNonCertifiedApexMdCrud);
|
|
toStringHelper(sb, "enableRestrictCommunityExecAnon", enableRestrictCommunityExecAnon);
|
|
toStringHelper(sb, "enableSecureNoArgConstructorPref", enableSecureNoArgConstructorPref);
|
|
toStringHelper(sb, "enableTestSetupSkipTestResults", enableTestSetupSkipTestResults);
|
|
}
|
|
|
|
|
|
}
|