Refactor ant specific type into net.brutex.xservices.types.ant package

git-svn-id: https://brutex.net/svn/xservices/trunk@82 e7e49efb-446e-492e-b9ec-fcafc1997a86
tag-20130205r
Brian Rosenberger 2011-12-31 14:51:25 +00:00
parent ffd4df963b
commit 5b522551d1
15 changed files with 23 additions and 14 deletions

View File

@ -19,6 +19,8 @@ package net.brutex.xservices.types;
import java.util.List; import java.util.List;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import net.brutex.xservices.types.ant.AntProperty;
import net.brutex.xservices.util.BrutexNamespaces; import net.brutex.xservices.util.BrutexNamespaces;
/** /**

View File

@ -19,6 +19,8 @@ package net.brutex.xservices.types;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import net.brutex.xservices.util.BrutexNamespaces;
/** /**
* Defines target nodes. * Defines target nodes.
@ -26,9 +28,10 @@ import javax.xml.bind.annotation.XmlType;
* @author Brian Rosenberger * @author Brian Rosenberger
* @since 1.0 * @since 1.0
*/ */
@XmlType() @XmlType(name=TargetNodeType.XML_NAME, namespace=BrutexNamespaces.WS_XSERVICES)
public class TargetNodeType { public class TargetNodeType {
public static final String XML_NAME = "targetnode";
private String name=""; private String name="";
@ -47,6 +50,9 @@ public class TargetNodeType {
this.name = name; this.name = name;
} }
/**
*
*/
public TargetNodeType() { public TargetNodeType() {
} }

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package net.brutex.xservices.types; package net.brutex.xservices.types.ant;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;

View File

@ -14,12 +14,13 @@
* limitations under the License. * limitations under the License.
*/ */
package net.brutex.xservices.types; package net.brutex.xservices.types.ant;
import java.io.File; import java.io.File;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import net.brutex.xservices.util.BrutexNamespaces; import net.brutex.xservices.util.BrutexNamespaces;
import org.apache.tools.ant.Project; import org.apache.tools.ant.Project;
import org.apache.tools.ant.types.Resource; import org.apache.tools.ant.types.Resource;

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package net.brutex.xservices.types; package net.brutex.xservices.types.ant;
import java.io.File; import java.io.File;
import java.io.IOException; import java.io.IOException;

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package net.brutex.xservices.types; package net.brutex.xservices.types.ant;
import java.util.UUID; import java.util.UUID;

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package net.brutex.xservices.types; package net.brutex.xservices.types.ant;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package net.brutex.xservices.types; package net.brutex.xservices.types.ant;
import java.io.File; import java.io.File;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package net.brutex.xservices.types; package net.brutex.xservices.types.ant;
import java.io.File; import java.io.File;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package net.brutex.xservices.types; package net.brutex.xservices.types.ant;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue; import javax.xml.bind.annotation.XmlValue;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package net.brutex.xservices.types; package net.brutex.xservices.types.ant;
import java.util.List; import java.util.List;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package net.brutex.xservices.types; package net.brutex.xservices.types.ant;
import org.apache.tools.ant.Project; import org.apache.tools.ant.Project;
import org.apache.tools.ant.types.Resource; import org.apache.tools.ant.types.Resource;

View File

@ -20,7 +20,7 @@
* *
* @author Brian Rosenberger, bru@brutex.de * @author Brian Rosenberger, bru@brutex.de
*/ */
package net.brutex.xservices.types; package net.brutex.xservices.types.ant;
import org.apache.tools.ant.Project; import org.apache.tools.ant.Project;
import org.apache.tools.ant.types.ResourceCollection; import org.apache.tools.ant.types.ResourceCollection;

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package net.brutex.xservices.types; package net.brutex.xservices.types.ant;
import java.util.List; import java.util.List;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package net.brutex.xservices.types; package net.brutex.xservices.types.ant;
import org.apache.tools.ant.types.selectors.FileSelector; import org.apache.tools.ant.types.selectors.FileSelector;