
org.apache.cxf.maven_plugin.Option Maven / Gradle / Ivy
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License 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 org.apache.cxf.maven_plugin;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
public class Option {
/**
* As maven will set null for an empty parameter we need
* this horrid inital value to tell if it has been
* configured or not yet.
*/
private static final String DEFAULT_WSDL_LOCATION = "@?$%^&*()DEFAULTWSDLLOCATION";
protected List packagenames;
protected List extraargs = new ArrayList();
protected File outputDir;
List namespaceExcludes;
Boolean defaultExcludesNamespace;
Boolean defaultNamespacePackageMapping;
File dependencies[];
File redundantDirs[];
String bindingFiles[] = new String[0];
String wsdlLocation = DEFAULT_WSDL_LOCATION;
String frontEnd;
String dataBinding;
String wsdlVersion;
String catalog;
boolean extendedSoapHeaders;
boolean validateWsdl;
String serviceName;
boolean autoNameResolution;
boolean noAddressBinding;
public Option() {
super();
}
public List getExtraargs() {
return extraargs;
}
public void setExtraargs(List ea) {
this.extraargs.clear();
this.extraargs.addAll(ea);
}
public List getPackagenames() {
return packagenames;
}
public void setPackagenames(List pn) {
this.packagenames = pn;
}
public List getNamespaceExcludes() {
return namespaceExcludes;
}
public void setNamespaceExcludes(List namespaceExcludes) {
this.namespaceExcludes = namespaceExcludes;
}
public void setDependencies(File files[]) {
dependencies = files;
}
public File[] getDependencies() {
return dependencies;
}
public void setDeleteDirs(File files[]) {
redundantDirs = files;
}
public File[] getDeleteDirs() {
return redundantDirs;
}
public File getOutputDir() {
return outputDir;
}
public void setOutputDir(File f) {
outputDir = f;
}
public void setBindingFiles(String files[]) {
bindingFiles = files;
}
public String[] getBindingFiles() {
return bindingFiles;
}
public void addBindingFile(File file) {
String tmp[] = new String[bindingFiles.length + 1];
System.arraycopy(bindingFiles, 0, tmp, 0, bindingFiles.length);
bindingFiles = tmp;
bindingFiles[bindingFiles.length - 1] = file.toURI().toString();
}
public void setWsdlLocation(String s) {
wsdlLocation = s;
}
public String getWsdlLocation() {
return isSetWsdlLocation() ? wsdlLocation : null;
}
public boolean isSetWsdlLocation() {
return !DEFAULT_WSDL_LOCATION.equals(wsdlLocation);
}
public String getFrontEnd() {
return frontEnd;
}
public void setFrontEnd(String frontEnd) {
this.frontEnd = frontEnd;
}
public String getDataBinding() {
return dataBinding;
}
public void setDataBinding(String dataBinding) {
this.dataBinding = dataBinding;
}
public String getWsdlVersion() {
return wsdlVersion;
}
public void setWsdlVersion(String wsdlVersion) {
this.wsdlVersion = wsdlVersion;
}
public String getCatalog() {
return catalog;
}
public void setCatalog(String catalog) {
this.catalog = catalog;
}
public boolean isExtendedSoapHeaders() {
return extendedSoapHeaders;
}
public void setExtendedSoapHeaders(boolean extendedSoapHeaders) {
this.extendedSoapHeaders = extendedSoapHeaders;
}
public boolean isValidateWsdl() {
return validateWsdl;
}
public void setValidateWsdl(boolean validateWsdl) {
this.validateWsdl = validateWsdl;
}
public Boolean getDefaultExcludesNamespace() {
return defaultExcludesNamespace;
}
public void setDefaultExcludesNamespace(Boolean defaultExcludesNamespace) {
this.defaultExcludesNamespace = defaultExcludesNamespace;
}
public Boolean getDefaultNamespacePackageMapping() {
return defaultNamespacePackageMapping;
}
public void setDefaultNamespacePackageMapping(Boolean defaultNamespacePackageMapping) {
this.defaultNamespacePackageMapping = defaultNamespacePackageMapping;
}
public String getServiceName() {
return serviceName;
}
public void setServiceName(String serviceName) {
this.serviceName = serviceName;
}
public boolean isAutoNameResolution() {
return autoNameResolution;
}
public void setAutoNameResolution(boolean autoNameResolution) {
this.autoNameResolution = autoNameResolution;
}
public boolean isNoAddressBinding() {
return noAddressBinding;
}
public void setNoAddressBinding(boolean noAddressBinding) {
this.noAddressBinding = noAddressBinding;
}
public void copyOptions(Option destination) {
destination.setAutoNameResolution(isAutoNameResolution());
destination.setBindingFiles(getBindingFiles());
destination.setCatalog(getCatalog());
destination.setDataBinding(getDataBinding());
destination.setDefaultExcludesNamespace(getDefaultExcludesNamespace());
destination.setDefaultNamespacePackageMapping(getDefaultNamespacePackageMapping());
destination.setDeleteDirs(getDeleteDirs());
destination.setDependencies(getDependencies());
destination.setExtendedSoapHeaders(isExtendedSoapHeaders());
destination.setExtraargs(getExtraargs());
destination.setFrontEnd(getFrontEnd());
destination.setNamespaceExcludes(namespaceExcludes);
destination.setNoAddressBinding(isNoAddressBinding());
destination.setOutputDir(getOutputDir());
destination.setPackagenames(getPackagenames());
destination.setServiceName(getServiceName());
destination.setValidateWsdl(isValidateWsdl());
if (isSetWsdlLocation()) {
destination.setWsdlLocation(getWsdlLocation());
}
destination.setWsdlVersion(getWsdlVersion());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy