706 lines
39 KiB
Java
706 lines
39 KiB
Java
package com.sforce.soap.tooling.metadata;
|
|
|
|
/**
|
|
* This is a generated class for the SObject Enterprise API.
|
|
* Do not edit this file, as your changes will be lost.
|
|
*/
|
|
public class BotVariableOperation implements com.sforce.ws.bind.XMLizable {
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public BotVariableOperation() {}
|
|
|
|
/* 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 : askCollectIfSet of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
private boolean askCollectIfSet__is_set = false;
|
|
|
|
private boolean askCollectIfSet;
|
|
|
|
public boolean getAskCollectIfSet() {
|
|
return askCollectIfSet;
|
|
}
|
|
|
|
public boolean isAskCollectIfSet() {
|
|
return askCollectIfSet;
|
|
}
|
|
|
|
public void setAskCollectIfSet(boolean askCollectIfSet) {
|
|
this.askCollectIfSet = askCollectIfSet;
|
|
askCollectIfSet__is_set = true;
|
|
}
|
|
|
|
protected void setAskCollectIfSet(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("askCollectIfSet", "urn:metadata.tooling.soap.sforce.com","askCollectIfSet","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
|
setAskCollectIfSet(__typeMapper.readBoolean(__in, _lookupTypeInfo("askCollectIfSet", "urn:metadata.tooling.soap.sforce.com","askCollectIfSet","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldAskCollectIfSet(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("askCollectIfSet", "urn:metadata.tooling.soap.sforce.com","askCollectIfSet","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), askCollectIfSet, askCollectIfSet__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : autoSelectIfSingleChoice of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
private boolean autoSelectIfSingleChoice__is_set = false;
|
|
|
|
private boolean autoSelectIfSingleChoice;
|
|
|
|
public boolean getAutoSelectIfSingleChoice() {
|
|
return autoSelectIfSingleChoice;
|
|
}
|
|
|
|
public boolean isAutoSelectIfSingleChoice() {
|
|
return autoSelectIfSingleChoice;
|
|
}
|
|
|
|
public void setAutoSelectIfSingleChoice(boolean autoSelectIfSingleChoice) {
|
|
this.autoSelectIfSingleChoice = autoSelectIfSingleChoice;
|
|
autoSelectIfSingleChoice__is_set = true;
|
|
}
|
|
|
|
protected void setAutoSelectIfSingleChoice(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("autoSelectIfSingleChoice", "urn:metadata.tooling.soap.sforce.com","autoSelectIfSingleChoice","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
|
setAutoSelectIfSingleChoice(__typeMapper.readBoolean(__in, _lookupTypeInfo("autoSelectIfSingleChoice", "urn:metadata.tooling.soap.sforce.com","autoSelectIfSingleChoice","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldAutoSelectIfSingleChoice(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("autoSelectIfSingleChoice", "urn:metadata.tooling.soap.sforce.com","autoSelectIfSingleChoice","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), autoSelectIfSingleChoice, autoSelectIfSingleChoice__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : botInvocation of type {urn:metadata.tooling.soap.sforce.com}BotInvocation
|
|
* java type: com.sforce.soap.tooling.metadata.BotInvocation
|
|
*/
|
|
private boolean botInvocation__is_set = false;
|
|
|
|
private com.sforce.soap.tooling.metadata.BotInvocation botInvocation;
|
|
|
|
public com.sforce.soap.tooling.metadata.BotInvocation getBotInvocation() {
|
|
return botInvocation;
|
|
}
|
|
|
|
public void setBotInvocation(com.sforce.soap.tooling.metadata.BotInvocation botInvocation) {
|
|
this.botInvocation = botInvocation;
|
|
botInvocation__is_set = true;
|
|
}
|
|
|
|
protected void setBotInvocation(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("botInvocation", "urn:metadata.tooling.soap.sforce.com","botInvocation","urn:metadata.tooling.soap.sforce.com","BotInvocation",0,1,true))) {
|
|
setBotInvocation((com.sforce.soap.tooling.metadata.BotInvocation)__typeMapper.readObject(__in, _lookupTypeInfo("botInvocation", "urn:metadata.tooling.soap.sforce.com","botInvocation","urn:metadata.tooling.soap.sforce.com","BotInvocation",0,1,true), com.sforce.soap.tooling.metadata.BotInvocation.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldBotInvocation(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("botInvocation", "urn:metadata.tooling.soap.sforce.com","botInvocation","urn:metadata.tooling.soap.sforce.com","BotInvocation",0,1,true), botInvocation, botInvocation__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : botMessages of type {urn:metadata.tooling.soap.sforce.com}BotMessage
|
|
* java type: com.sforce.soap.tooling.metadata.BotMessage[]
|
|
*/
|
|
private boolean botMessages__is_set = false;
|
|
|
|
private com.sforce.soap.tooling.metadata.BotMessage[] botMessages = new com.sforce.soap.tooling.metadata.BotMessage[0];
|
|
|
|
public com.sforce.soap.tooling.metadata.BotMessage[] getBotMessages() {
|
|
return botMessages;
|
|
}
|
|
|
|
public void setBotMessages(com.sforce.soap.tooling.metadata.BotMessage[] botMessages) {
|
|
this.botMessages = botMessages;
|
|
botMessages__is_set = true;
|
|
}
|
|
|
|
protected void setBotMessages(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("botMessages", "urn:metadata.tooling.soap.sforce.com","botMessages","urn:metadata.tooling.soap.sforce.com","BotMessage",0,-1,true))) {
|
|
setBotMessages((com.sforce.soap.tooling.metadata.BotMessage[])__typeMapper.readObject(__in, _lookupTypeInfo("botMessages", "urn:metadata.tooling.soap.sforce.com","botMessages","urn:metadata.tooling.soap.sforce.com","BotMessage",0,-1,true), com.sforce.soap.tooling.metadata.BotMessage[].class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldBotMessages(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("botMessages", "urn:metadata.tooling.soap.sforce.com","botMessages","urn:metadata.tooling.soap.sforce.com","BotMessage",0,-1,true), botMessages, botMessages__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : botQuickReplyOptions of type {urn:metadata.tooling.soap.sforce.com}BotQuickReplyOption
|
|
* java type: com.sforce.soap.tooling.metadata.BotQuickReplyOption[]
|
|
*/
|
|
private boolean botQuickReplyOptions__is_set = false;
|
|
|
|
private com.sforce.soap.tooling.metadata.BotQuickReplyOption[] botQuickReplyOptions = new com.sforce.soap.tooling.metadata.BotQuickReplyOption[0];
|
|
|
|
public com.sforce.soap.tooling.metadata.BotQuickReplyOption[] getBotQuickReplyOptions() {
|
|
return botQuickReplyOptions;
|
|
}
|
|
|
|
public void setBotQuickReplyOptions(com.sforce.soap.tooling.metadata.BotQuickReplyOption[] botQuickReplyOptions) {
|
|
this.botQuickReplyOptions = botQuickReplyOptions;
|
|
botQuickReplyOptions__is_set = true;
|
|
}
|
|
|
|
protected void setBotQuickReplyOptions(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("botQuickReplyOptions", "urn:metadata.tooling.soap.sforce.com","botQuickReplyOptions","urn:metadata.tooling.soap.sforce.com","BotQuickReplyOption",0,-1,true))) {
|
|
setBotQuickReplyOptions((com.sforce.soap.tooling.metadata.BotQuickReplyOption[])__typeMapper.readObject(__in, _lookupTypeInfo("botQuickReplyOptions", "urn:metadata.tooling.soap.sforce.com","botQuickReplyOptions","urn:metadata.tooling.soap.sforce.com","BotQuickReplyOption",0,-1,true), com.sforce.soap.tooling.metadata.BotQuickReplyOption[].class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldBotQuickReplyOptions(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("botQuickReplyOptions", "urn:metadata.tooling.soap.sforce.com","botQuickReplyOptions","urn:metadata.tooling.soap.sforce.com","BotQuickReplyOption",0,-1,true), botQuickReplyOptions, botQuickReplyOptions__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : botVariableOperands of type {urn:metadata.tooling.soap.sforce.com}BotVariableOperand
|
|
* java type: com.sforce.soap.tooling.metadata.BotVariableOperand[]
|
|
*/
|
|
private boolean botVariableOperands__is_set = false;
|
|
|
|
private com.sforce.soap.tooling.metadata.BotVariableOperand[] botVariableOperands = new com.sforce.soap.tooling.metadata.BotVariableOperand[0];
|
|
|
|
public com.sforce.soap.tooling.metadata.BotVariableOperand[] getBotVariableOperands() {
|
|
return botVariableOperands;
|
|
}
|
|
|
|
public void setBotVariableOperands(com.sforce.soap.tooling.metadata.BotVariableOperand[] botVariableOperands) {
|
|
this.botVariableOperands = botVariableOperands;
|
|
botVariableOperands__is_set = true;
|
|
}
|
|
|
|
protected void setBotVariableOperands(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("botVariableOperands", "urn:metadata.tooling.soap.sforce.com","botVariableOperands","urn:metadata.tooling.soap.sforce.com","BotVariableOperand",0,-1,true))) {
|
|
setBotVariableOperands((com.sforce.soap.tooling.metadata.BotVariableOperand[])__typeMapper.readObject(__in, _lookupTypeInfo("botVariableOperands", "urn:metadata.tooling.soap.sforce.com","botVariableOperands","urn:metadata.tooling.soap.sforce.com","BotVariableOperand",0,-1,true), com.sforce.soap.tooling.metadata.BotVariableOperand[].class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldBotVariableOperands(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("botVariableOperands", "urn:metadata.tooling.soap.sforce.com","botVariableOperands","urn:metadata.tooling.soap.sforce.com","BotVariableOperand",0,-1,true), botVariableOperands, botVariableOperands__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : ignoreIntentRecognition of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
private boolean ignoreIntentRecognition__is_set = false;
|
|
|
|
private boolean ignoreIntentRecognition;
|
|
|
|
public boolean getIgnoreIntentRecognition() {
|
|
return ignoreIntentRecognition;
|
|
}
|
|
|
|
public boolean isIgnoreIntentRecognition() {
|
|
return ignoreIntentRecognition;
|
|
}
|
|
|
|
public void setIgnoreIntentRecognition(boolean ignoreIntentRecognition) {
|
|
this.ignoreIntentRecognition = ignoreIntentRecognition;
|
|
ignoreIntentRecognition__is_set = true;
|
|
}
|
|
|
|
protected void setIgnoreIntentRecognition(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("ignoreIntentRecognition", "urn:metadata.tooling.soap.sforce.com","ignoreIntentRecognition","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
|
setIgnoreIntentRecognition(__typeMapper.readBoolean(__in, _lookupTypeInfo("ignoreIntentRecognition", "urn:metadata.tooling.soap.sforce.com","ignoreIntentRecognition","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldIgnoreIntentRecognition(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("ignoreIntentRecognition", "urn:metadata.tooling.soap.sforce.com","ignoreIntentRecognition","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), ignoreIntentRecognition, ignoreIntentRecognition__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : invalidInputBotNavigation of type {urn:metadata.tooling.soap.sforce.com}BotNavigation
|
|
* java type: com.sforce.soap.tooling.metadata.BotNavigation
|
|
*/
|
|
private boolean invalidInputBotNavigation__is_set = false;
|
|
|
|
private com.sforce.soap.tooling.metadata.BotNavigation invalidInputBotNavigation;
|
|
|
|
public com.sforce.soap.tooling.metadata.BotNavigation getInvalidInputBotNavigation() {
|
|
return invalidInputBotNavigation;
|
|
}
|
|
|
|
public void setInvalidInputBotNavigation(com.sforce.soap.tooling.metadata.BotNavigation invalidInputBotNavigation) {
|
|
this.invalidInputBotNavigation = invalidInputBotNavigation;
|
|
invalidInputBotNavigation__is_set = true;
|
|
}
|
|
|
|
protected void setInvalidInputBotNavigation(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("invalidInputBotNavigation", "urn:metadata.tooling.soap.sforce.com","invalidInputBotNavigation","urn:metadata.tooling.soap.sforce.com","BotNavigation",0,1,true))) {
|
|
setInvalidInputBotNavigation((com.sforce.soap.tooling.metadata.BotNavigation)__typeMapper.readObject(__in, _lookupTypeInfo("invalidInputBotNavigation", "urn:metadata.tooling.soap.sforce.com","invalidInputBotNavigation","urn:metadata.tooling.soap.sforce.com","BotNavigation",0,1,true), com.sforce.soap.tooling.metadata.BotNavigation.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldInvalidInputBotNavigation(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("invalidInputBotNavigation", "urn:metadata.tooling.soap.sforce.com","invalidInputBotNavigation","urn:metadata.tooling.soap.sforce.com","BotNavigation",0,1,true), invalidInputBotNavigation, invalidInputBotNavigation__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : messageDefinition of type {urn:metadata.tooling.soap.sforce.com}ConversationDefinitionRichMessage
|
|
* java type: com.sforce.soap.tooling.metadata.ConversationDefinitionRichMessage
|
|
*/
|
|
private boolean messageDefinition__is_set = false;
|
|
|
|
private com.sforce.soap.tooling.metadata.ConversationDefinitionRichMessage messageDefinition;
|
|
|
|
public com.sforce.soap.tooling.metadata.ConversationDefinitionRichMessage getMessageDefinition() {
|
|
return messageDefinition;
|
|
}
|
|
|
|
public void setMessageDefinition(com.sforce.soap.tooling.metadata.ConversationDefinitionRichMessage messageDefinition) {
|
|
this.messageDefinition = messageDefinition;
|
|
messageDefinition__is_set = true;
|
|
}
|
|
|
|
protected void setMessageDefinition(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("messageDefinition", "urn:metadata.tooling.soap.sforce.com","messageDefinition","urn:metadata.tooling.soap.sforce.com","ConversationDefinitionRichMessage",0,1,true))) {
|
|
setMessageDefinition((com.sforce.soap.tooling.metadata.ConversationDefinitionRichMessage)__typeMapper.readObject(__in, _lookupTypeInfo("messageDefinition", "urn:metadata.tooling.soap.sforce.com","messageDefinition","urn:metadata.tooling.soap.sforce.com","ConversationDefinitionRichMessage",0,1,true), com.sforce.soap.tooling.metadata.ConversationDefinitionRichMessage.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldMessageDefinition(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("messageDefinition", "urn:metadata.tooling.soap.sforce.com","messageDefinition","urn:metadata.tooling.soap.sforce.com","ConversationDefinitionRichMessage",0,1,true), messageDefinition, messageDefinition__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : optionalCollect of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
private boolean optionalCollect__is_set = false;
|
|
|
|
private boolean optionalCollect;
|
|
|
|
public boolean getOptionalCollect() {
|
|
return optionalCollect;
|
|
}
|
|
|
|
public boolean isOptionalCollect() {
|
|
return optionalCollect;
|
|
}
|
|
|
|
public void setOptionalCollect(boolean optionalCollect) {
|
|
this.optionalCollect = optionalCollect;
|
|
optionalCollect__is_set = true;
|
|
}
|
|
|
|
protected void setOptionalCollect(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("optionalCollect", "urn:metadata.tooling.soap.sforce.com","optionalCollect","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
|
|
setOptionalCollect(__typeMapper.readBoolean(__in, _lookupTypeInfo("optionalCollect", "urn:metadata.tooling.soap.sforce.com","optionalCollect","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldOptionalCollect(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("optionalCollect", "urn:metadata.tooling.soap.sforce.com","optionalCollect","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), optionalCollect, optionalCollect__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : quickReplyOptionTemplate of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean quickReplyOptionTemplate__is_set = false;
|
|
|
|
private java.lang.String quickReplyOptionTemplate;
|
|
|
|
public java.lang.String getQuickReplyOptionTemplate() {
|
|
return quickReplyOptionTemplate;
|
|
}
|
|
|
|
public void setQuickReplyOptionTemplate(java.lang.String quickReplyOptionTemplate) {
|
|
this.quickReplyOptionTemplate = quickReplyOptionTemplate;
|
|
quickReplyOptionTemplate__is_set = true;
|
|
}
|
|
|
|
protected void setQuickReplyOptionTemplate(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("quickReplyOptionTemplate", "urn:metadata.tooling.soap.sforce.com","quickReplyOptionTemplate","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setQuickReplyOptionTemplate(__typeMapper.readString(__in, _lookupTypeInfo("quickReplyOptionTemplate", "urn:metadata.tooling.soap.sforce.com","quickReplyOptionTemplate","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldQuickReplyOptionTemplate(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("quickReplyOptionTemplate", "urn:metadata.tooling.soap.sforce.com","quickReplyOptionTemplate","http://www.w3.org/2001/XMLSchema","string",0,1,true), quickReplyOptionTemplate, quickReplyOptionTemplate__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : quickReplyType of type {urn:tooling.soap.sforce.com}BotQuickReplyType
|
|
* java type: com.sforce.soap.tooling.BotQuickReplyType
|
|
*/
|
|
private boolean quickReplyType__is_set = false;
|
|
|
|
private com.sforce.soap.tooling.BotQuickReplyType quickReplyType;
|
|
|
|
public com.sforce.soap.tooling.BotQuickReplyType getQuickReplyType() {
|
|
return quickReplyType;
|
|
}
|
|
|
|
public void setQuickReplyType(com.sforce.soap.tooling.BotQuickReplyType quickReplyType) {
|
|
this.quickReplyType = quickReplyType;
|
|
quickReplyType__is_set = true;
|
|
}
|
|
|
|
protected void setQuickReplyType(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("quickReplyType", "urn:metadata.tooling.soap.sforce.com","quickReplyType","urn:tooling.soap.sforce.com","BotQuickReplyType",0,1,true))) {
|
|
setQuickReplyType((com.sforce.soap.tooling.BotQuickReplyType)__typeMapper.readObject(__in, _lookupTypeInfo("quickReplyType", "urn:metadata.tooling.soap.sforce.com","quickReplyType","urn:tooling.soap.sforce.com","BotQuickReplyType",0,1,true), com.sforce.soap.tooling.BotQuickReplyType.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldQuickReplyType(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("quickReplyType", "urn:metadata.tooling.soap.sforce.com","quickReplyType","urn:tooling.soap.sforce.com","BotQuickReplyType",0,1,true), quickReplyType, quickReplyType__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : quickReplyWidgetType of type {urn:tooling.soap.sforce.com}BotWidgetType
|
|
* java type: com.sforce.soap.tooling.BotWidgetType
|
|
*/
|
|
private boolean quickReplyWidgetType__is_set = false;
|
|
|
|
private com.sforce.soap.tooling.BotWidgetType quickReplyWidgetType;
|
|
|
|
public com.sforce.soap.tooling.BotWidgetType getQuickReplyWidgetType() {
|
|
return quickReplyWidgetType;
|
|
}
|
|
|
|
public void setQuickReplyWidgetType(com.sforce.soap.tooling.BotWidgetType quickReplyWidgetType) {
|
|
this.quickReplyWidgetType = quickReplyWidgetType;
|
|
quickReplyWidgetType__is_set = true;
|
|
}
|
|
|
|
protected void setQuickReplyWidgetType(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("quickReplyWidgetType", "urn:metadata.tooling.soap.sforce.com","quickReplyWidgetType","urn:tooling.soap.sforce.com","BotWidgetType",0,1,true))) {
|
|
setQuickReplyWidgetType((com.sforce.soap.tooling.BotWidgetType)__typeMapper.readObject(__in, _lookupTypeInfo("quickReplyWidgetType", "urn:metadata.tooling.soap.sforce.com","quickReplyWidgetType","urn:tooling.soap.sforce.com","BotWidgetType",0,1,true), com.sforce.soap.tooling.BotWidgetType.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldQuickReplyWidgetType(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("quickReplyWidgetType", "urn:metadata.tooling.soap.sforce.com","quickReplyWidgetType","urn:tooling.soap.sforce.com","BotWidgetType",0,1,true), quickReplyWidgetType, quickReplyWidgetType__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : retryMessages of type {urn:metadata.tooling.soap.sforce.com}BotMessage
|
|
* java type: com.sforce.soap.tooling.metadata.BotMessage[]
|
|
*/
|
|
private boolean retryMessages__is_set = false;
|
|
|
|
private com.sforce.soap.tooling.metadata.BotMessage[] retryMessages = new com.sforce.soap.tooling.metadata.BotMessage[0];
|
|
|
|
public com.sforce.soap.tooling.metadata.BotMessage[] getRetryMessages() {
|
|
return retryMessages;
|
|
}
|
|
|
|
public void setRetryMessages(com.sforce.soap.tooling.metadata.BotMessage[] retryMessages) {
|
|
this.retryMessages = retryMessages;
|
|
retryMessages__is_set = true;
|
|
}
|
|
|
|
protected void setRetryMessages(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("retryMessages", "urn:metadata.tooling.soap.sforce.com","retryMessages","urn:metadata.tooling.soap.sforce.com","BotMessage",0,-1,true))) {
|
|
setRetryMessages((com.sforce.soap.tooling.metadata.BotMessage[])__typeMapper.readObject(__in, _lookupTypeInfo("retryMessages", "urn:metadata.tooling.soap.sforce.com","retryMessages","urn:metadata.tooling.soap.sforce.com","BotMessage",0,-1,true), com.sforce.soap.tooling.metadata.BotMessage[].class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldRetryMessages(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("retryMessages", "urn:metadata.tooling.soap.sforce.com","retryMessages","urn:metadata.tooling.soap.sforce.com","BotMessage",0,-1,true), retryMessages, retryMessages__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : sourceVariableName of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean sourceVariableName__is_set = false;
|
|
|
|
private java.lang.String sourceVariableName;
|
|
|
|
public java.lang.String getSourceVariableName() {
|
|
return sourceVariableName;
|
|
}
|
|
|
|
public void setSourceVariableName(java.lang.String sourceVariableName) {
|
|
this.sourceVariableName = sourceVariableName;
|
|
sourceVariableName__is_set = true;
|
|
}
|
|
|
|
protected void setSourceVariableName(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("sourceVariableName", "urn:metadata.tooling.soap.sforce.com","sourceVariableName","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setSourceVariableName(__typeMapper.readString(__in, _lookupTypeInfo("sourceVariableName", "urn:metadata.tooling.soap.sforce.com","sourceVariableName","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldSourceVariableName(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("sourceVariableName", "urn:metadata.tooling.soap.sforce.com","sourceVariableName","http://www.w3.org/2001/XMLSchema","string",0,1,true), sourceVariableName, sourceVariableName__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : sourceVariableType of type {urn:tooling.soap.sforce.com}ConversationVariableType
|
|
* java type: com.sforce.soap.tooling.ConversationVariableType
|
|
*/
|
|
private boolean sourceVariableType__is_set = false;
|
|
|
|
private com.sforce.soap.tooling.ConversationVariableType sourceVariableType;
|
|
|
|
public com.sforce.soap.tooling.ConversationVariableType getSourceVariableType() {
|
|
return sourceVariableType;
|
|
}
|
|
|
|
public void setSourceVariableType(com.sforce.soap.tooling.ConversationVariableType sourceVariableType) {
|
|
this.sourceVariableType = sourceVariableType;
|
|
sourceVariableType__is_set = true;
|
|
}
|
|
|
|
protected void setSourceVariableType(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("sourceVariableType", "urn:metadata.tooling.soap.sforce.com","sourceVariableType","urn:tooling.soap.sforce.com","ConversationVariableType",0,1,true))) {
|
|
setSourceVariableType((com.sforce.soap.tooling.ConversationVariableType)__typeMapper.readObject(__in, _lookupTypeInfo("sourceVariableType", "urn:metadata.tooling.soap.sforce.com","sourceVariableType","urn:tooling.soap.sforce.com","ConversationVariableType",0,1,true), com.sforce.soap.tooling.ConversationVariableType.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldSourceVariableType(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("sourceVariableType", "urn:metadata.tooling.soap.sforce.com","sourceVariableType","urn:tooling.soap.sforce.com","ConversationVariableType",0,1,true), sourceVariableType, sourceVariableType__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : successMessages of type {urn:metadata.tooling.soap.sforce.com}BotMessage
|
|
* java type: com.sforce.soap.tooling.metadata.BotMessage[]
|
|
*/
|
|
private boolean successMessages__is_set = false;
|
|
|
|
private com.sforce.soap.tooling.metadata.BotMessage[] successMessages = new com.sforce.soap.tooling.metadata.BotMessage[0];
|
|
|
|
public com.sforce.soap.tooling.metadata.BotMessage[] getSuccessMessages() {
|
|
return successMessages;
|
|
}
|
|
|
|
public void setSuccessMessages(com.sforce.soap.tooling.metadata.BotMessage[] successMessages) {
|
|
this.successMessages = successMessages;
|
|
successMessages__is_set = true;
|
|
}
|
|
|
|
protected void setSuccessMessages(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("successMessages", "urn:metadata.tooling.soap.sforce.com","successMessages","urn:metadata.tooling.soap.sforce.com","BotMessage",0,-1,true))) {
|
|
setSuccessMessages((com.sforce.soap.tooling.metadata.BotMessage[])__typeMapper.readObject(__in, _lookupTypeInfo("successMessages", "urn:metadata.tooling.soap.sforce.com","successMessages","urn:metadata.tooling.soap.sforce.com","BotMessage",0,-1,true), com.sforce.soap.tooling.metadata.BotMessage[].class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldSuccessMessages(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("successMessages", "urn:metadata.tooling.soap.sforce.com","successMessages","urn:metadata.tooling.soap.sforce.com","BotMessage",0,-1,true), successMessages, successMessages__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : type of type {urn:tooling.soap.sforce.com}BotVariableOperationType
|
|
* java type: com.sforce.soap.tooling.BotVariableOperationType
|
|
*/
|
|
private boolean type__is_set = false;
|
|
|
|
private com.sforce.soap.tooling.BotVariableOperationType type;
|
|
|
|
public com.sforce.soap.tooling.BotVariableOperationType getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(com.sforce.soap.tooling.BotVariableOperationType type) {
|
|
this.type = type;
|
|
type__is_set = true;
|
|
}
|
|
|
|
protected void setType(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("type", "urn:metadata.tooling.soap.sforce.com","type","urn:tooling.soap.sforce.com","BotVariableOperationType",1,1,true))) {
|
|
setType((com.sforce.soap.tooling.BotVariableOperationType)__typeMapper.readObject(__in, _lookupTypeInfo("type", "urn:metadata.tooling.soap.sforce.com","type","urn:tooling.soap.sforce.com","BotVariableOperationType",1,1,true), com.sforce.soap.tooling.BotVariableOperationType.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldType(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("type", "urn:metadata.tooling.soap.sforce.com","type","urn:tooling.soap.sforce.com","BotVariableOperationType",1,1,true), type, type__is_set);
|
|
}
|
|
|
|
/**
|
|
* element : variableOperationIdentifier of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
private boolean variableOperationIdentifier__is_set = false;
|
|
|
|
private java.lang.String variableOperationIdentifier;
|
|
|
|
public java.lang.String getVariableOperationIdentifier() {
|
|
return variableOperationIdentifier;
|
|
}
|
|
|
|
public void setVariableOperationIdentifier(java.lang.String variableOperationIdentifier) {
|
|
this.variableOperationIdentifier = variableOperationIdentifier;
|
|
variableOperationIdentifier__is_set = true;
|
|
}
|
|
|
|
protected void setVariableOperationIdentifier(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("variableOperationIdentifier", "urn:metadata.tooling.soap.sforce.com","variableOperationIdentifier","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
|
|
setVariableOperationIdentifier(__typeMapper.readString(__in, _lookupTypeInfo("variableOperationIdentifier", "urn:metadata.tooling.soap.sforce.com","variableOperationIdentifier","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
|
|
}
|
|
}
|
|
|
|
private void writeFieldVariableOperationIdentifier(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
|
|
__typeMapper.writeObject(__out, _lookupTypeInfo("variableOperationIdentifier", "urn:metadata.tooling.soap.sforce.com","variableOperationIdentifier","http://www.w3.org/2001/XMLSchema","string",0,1,true), variableOperationIdentifier, variableOperationIdentifier__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("[BotVariableOperation ");
|
|
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 {
|
|
writeFieldAskCollectIfSet(__out, __typeMapper);
|
|
writeFieldAutoSelectIfSingleChoice(__out, __typeMapper);
|
|
writeFieldBotInvocation(__out, __typeMapper);
|
|
writeFieldBotMessages(__out, __typeMapper);
|
|
writeFieldBotQuickReplyOptions(__out, __typeMapper);
|
|
writeFieldBotVariableOperands(__out, __typeMapper);
|
|
writeFieldIgnoreIntentRecognition(__out, __typeMapper);
|
|
writeFieldInvalidInputBotNavigation(__out, __typeMapper);
|
|
writeFieldMessageDefinition(__out, __typeMapper);
|
|
writeFieldOptionalCollect(__out, __typeMapper);
|
|
writeFieldQuickReplyOptionTemplate(__out, __typeMapper);
|
|
writeFieldQuickReplyType(__out, __typeMapper);
|
|
writeFieldQuickReplyWidgetType(__out, __typeMapper);
|
|
writeFieldRetryMessages(__out, __typeMapper);
|
|
writeFieldSourceVariableName(__out, __typeMapper);
|
|
writeFieldSourceVariableType(__out, __typeMapper);
|
|
writeFieldSuccessMessages(__out, __typeMapper);
|
|
writeFieldType(__out, __typeMapper);
|
|
writeFieldVariableOperationIdentifier(__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 {
|
|
setAskCollectIfSet(__in, __typeMapper);
|
|
setAutoSelectIfSingleChoice(__in, __typeMapper);
|
|
setBotInvocation(__in, __typeMapper);
|
|
setBotMessages(__in, __typeMapper);
|
|
setBotQuickReplyOptions(__in, __typeMapper);
|
|
setBotVariableOperands(__in, __typeMapper);
|
|
setIgnoreIntentRecognition(__in, __typeMapper);
|
|
setInvalidInputBotNavigation(__in, __typeMapper);
|
|
setMessageDefinition(__in, __typeMapper);
|
|
setOptionalCollect(__in, __typeMapper);
|
|
setQuickReplyOptionTemplate(__in, __typeMapper);
|
|
setQuickReplyType(__in, __typeMapper);
|
|
setQuickReplyWidgetType(__in, __typeMapper);
|
|
setRetryMessages(__in, __typeMapper);
|
|
setSourceVariableName(__in, __typeMapper);
|
|
setSourceVariableType(__in, __typeMapper);
|
|
setSuccessMessages(__in, __typeMapper);
|
|
setType(__in, __typeMapper);
|
|
setVariableOperationIdentifier(__in, __typeMapper);
|
|
}
|
|
|
|
private void toString1(StringBuilder sb) {
|
|
toStringHelper(sb, "askCollectIfSet", askCollectIfSet);
|
|
toStringHelper(sb, "autoSelectIfSingleChoice", autoSelectIfSingleChoice);
|
|
toStringHelper(sb, "botInvocation", botInvocation);
|
|
toStringHelper(sb, "botMessages", botMessages);
|
|
toStringHelper(sb, "botQuickReplyOptions", botQuickReplyOptions);
|
|
toStringHelper(sb, "botVariableOperands", botVariableOperands);
|
|
toStringHelper(sb, "ignoreIntentRecognition", ignoreIntentRecognition);
|
|
toStringHelper(sb, "invalidInputBotNavigation", invalidInputBotNavigation);
|
|
toStringHelper(sb, "messageDefinition", messageDefinition);
|
|
toStringHelper(sb, "optionalCollect", optionalCollect);
|
|
toStringHelper(sb, "quickReplyOptionTemplate", quickReplyOptionTemplate);
|
|
toStringHelper(sb, "quickReplyType", quickReplyType);
|
|
toStringHelper(sb, "quickReplyWidgetType", quickReplyWidgetType);
|
|
toStringHelper(sb, "retryMessages", retryMessages);
|
|
toStringHelper(sb, "sourceVariableName", sourceVariableName);
|
|
toStringHelper(sb, "sourceVariableType", sourceVariableType);
|
|
toStringHelper(sb, "successMessages", successMessages);
|
|
toStringHelper(sb, "type", type);
|
|
toStringHelper(sb, "variableOperationIdentifier", variableOperationIdentifier);
|
|
}
|
|
|
|
|
|
}
|