![JAR search and dependency download from the Maven repository](/logo.png)
io.cloudslang.content.xml.entities.inputs.CustomInputs Maven / Gradle / Ivy
/*
* (c) Copyright 2019 EntIT Software LLC, a Micro Focus company, L.P.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Apache License v2.0 which accompany this distribution.
*
* The Apache License is available at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.cloudslang.content.xml.entities.inputs;
import io.cloudslang.content.xml.utils.Constants;
import io.cloudslang.content.xml.utils.InputUtils;
import org.apache.commons.lang3.StringUtils;
/**
* Created by markowis on 03/03/2016.
*/
public class CustomInputs {
private String attributeName;
private String value;
private String xmlElement;
private String xsdDocument;
private String xsdDocumentSource;
private String queryType;
private String delimiter;
public CustomInputs(CustomInputsBuilder builder) {
this.attributeName = builder.attributeName;
this.value = builder.value;
this.xmlElement = builder.xmlElement;
this.xsdDocument = builder.xsdDocument;
this.xsdDocumentSource = builder.xsdDocumentSource;
this.queryType = builder.queryType;
this.delimiter = builder.delimiter;
}
public String getAttributeName() {
return attributeName;
}
public String getValue() {
return value;
}
public String getXmlElement() {
return xmlElement;
}
public String getXsdDocument() {
return xsdDocument;
}
public String getXsdDocumentSource() {
return xsdDocumentSource;
}
public String getQueryType() {
return queryType;
}
public String getDelimiter() {
return delimiter;
}
public static class CustomInputsBuilder {
private String attributeName;
private String value;
private String xmlElement;
private String xsdDocument;
private String xsdDocumentSource;
private String queryType;
private String delimiter;
public CustomInputs build() {
return new CustomInputs(this);
}
public CustomInputsBuilder withAttributeName(String inputValue) {
attributeName = inputValue;
return this;
}
public CustomInputsBuilder withValue(String inputValue) {
value = inputValue;
return this;
}
public CustomInputsBuilder withXmlElement(String inputValue) {
xmlElement = inputValue;
return this;
}
public CustomInputsBuilder withXsdDocument(String inputValue) {
xsdDocument = inputValue;
return this;
}
public CustomInputsBuilder withQueryType(String inputValue) {
queryType = inputValue;
return this;
}
public CustomInputsBuilder withDelimiter(String inputValue) {
if (StringUtils.isBlank(inputValue)) {
delimiter = Constants.Defaults.DELIMITER;
} else {
delimiter = inputValue;
}
return this;
}
public CustomInputsBuilder withXsdDocumentSource(String xsdDocumentSource) {
this.xsdDocumentSource = InputUtils.validateXsdDocumentSource(xsdDocumentSource);
return this;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy