01: /**
02: * Licensed to the Apache Software Foundation (ASF) under one
03: * or more contributor license agreements. See the NOTICE file
04: * distributed with this work for additional information
05: * regarding copyright ownership. The ASF licenses this file
06: * to you under the Apache License, Version 2.0 (the
07: * "License"); you may not use this file except in compliance
08: * with the License. You may obtain a copy of the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing,
13: * software distributed under the License is distributed on an
14: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15: * KIND, either express or implied. See the License for the
16: * specific language governing permissions and limitations
17: * under the License.
18: */package org.apache.cxf.maven_plugin;
19:
20: import java.io.File;
21: import java.util.List;
22:
23: public class XsdOption {
24: String xsd;
25: String packagename;
26: String bindingFile;
27: File dependencies[];
28: File redundantDirs[];
29: boolean extension;
30: List extensionArgs;
31: String catalog;
32:
33: public String getPackagename() {
34: return packagename;
35: }
36:
37: public void setPackagename(String pn) {
38: this .packagename = pn;
39: }
40:
41: public String getXsd() {
42: return xsd;
43: }
44:
45: public void setXsd(String x) {
46: this .xsd = x;
47: }
48:
49: public String getBindingFile() {
50: return bindingFile;
51: }
52:
53: public void setBindingFile(String bf) {
54: this .bindingFile = bf;
55: }
56:
57: public void setDependencies(File files[]) {
58: dependencies = files;
59: }
60:
61: public File[] getDependencies() {
62: return dependencies;
63: }
64:
65: public void setDeleteDirs(File files[]) {
66: redundantDirs = files;
67: }
68:
69: public File[] getDeleteDirs() {
70: return redundantDirs;
71: }
72:
73: public List getExtensionArgs() {
74: return extensionArgs;
75: }
76:
77: public void setExtensionArgs(List extensionArgs) {
78: this .extensionArgs = extensionArgs;
79: }
80:
81: public boolean isExtension() {
82: return extension;
83: }
84:
85: public void setExtension(boolean extension) {
86: this .extension = extension;
87: }
88:
89: public String getCatalog() {
90: return catalog;
91: }
92:
93: public void setCatalogFile(String c) {
94: catalog = c;
95: }
96:
97: }
|