From 031359ae1f39da13b1c9a05cfe69c983ee22002c Mon Sep 17 00:00:00 2001 From: Brian Rosenberger Date: Tue, 5 Feb 2013 14:12:09 +0000 Subject: [PATCH] Arbeitsstand Anfang Februar git-svn-id: https://brutex.net/svn/xservices/trunk@106 e7e49efb-446e-492e-b9ec-fcafc1997a86 --- .../xservices/types/scm/ModuleType.java | 123 ------------------ .../brutex/xservices/types/scm/Revision.java | 78 ----------- .../net/brutex/xservices/types/scm/Tag.java | 75 ----------- 3 files changed, 276 deletions(-) delete mode 100644 src/java/net/brutex/xservices/types/scm/ModuleType.java delete mode 100644 src/java/net/brutex/xservices/types/scm/Revision.java delete mode 100644 src/java/net/brutex/xservices/types/scm/Tag.java diff --git a/src/java/net/brutex/xservices/types/scm/ModuleType.java b/src/java/net/brutex/xservices/types/scm/ModuleType.java deleted file mode 100644 index c433bea..0000000 --- a/src/java/net/brutex/xservices/types/scm/ModuleType.java +++ /dev/null @@ -1,123 +0,0 @@ -/* - * Copyright 2012 Brian Rosenberger (Brutex Network) - * - * Licensed 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 net.brutex.xservices.types.scm; - -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -@XmlType(propOrder={"name", "status", "description", "path", "type", "revision"}) -@XmlRootElement -public class ModuleType { - String name; - String revision; - String status; - String description; - String path; - String type; - - public ModuleType(String name, String status, String path, String type) { - this.name = name; - this.status = status; - this.description = ""; - this.revision = ""; - this.path = "/" + path; - this.type = type; - } - - public ModuleType() { - //JAXB - } - /** - * @return the name - */ - public String getName() { - return name; - } - /** - * @param name the name to set - */ - public void setName(String name) { - this.name = name; - } - /** - * @return the revision - */ - public String getRevision() { - return revision; - } - /** - * @param revision the revision to set - */ - public void setRevision(String revision) { - this.revision = revision; - } - /** - * @return the status - */ - public String getStatus() { - return status; - } - /** - * @param status the status to set - */ - public void setStatus(String status) { - this.status = status; - } - /** - * @return the description - */ - public String getDescription() { - return description; - } - /** - * @param description the description to set - */ - public void setDescription(String description) { - this.description = description; - } - - /** - * @return the path - */ - public String getPath() { - return path; - } - - /** - * @param path the path to set - */ - public void setPath(String path) { - this.path = path; - } - - /** - * @return the type - */ - public String getType() { - return type; - } - - /** - * @param type the type to set - */ - public void setType(String type) { - this.type = type; - } - - -} diff --git a/src/java/net/brutex/xservices/types/scm/Revision.java b/src/java/net/brutex/xservices/types/scm/Revision.java deleted file mode 100644 index cc5545c..0000000 --- a/src/java/net/brutex/xservices/types/scm/Revision.java +++ /dev/null @@ -1,78 +0,0 @@ -/* - * Copyright 2012 Brian Rosenberger (Brutex Network) - * - * Licensed 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 net.brutex.xservices.types.scm; - -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - -/** - * @author Brian Rosenberger, bru(at)brutex.de - * @since 0.5.0-20120817 - * - */ -@XmlType(name="RevisionType", propOrder={"revision", "comment"}) -@XmlRootElement -public class Revision { - - private String revision; - private String comment; - - public Revision() { - } - - public Revision(String revision, String comment) { - super(); - this.revision = revision; - this.comment = comment; - } - - - - /* (non-Javadoc) - * @see net.brutex.xservices.types.scm.SCRevision#getRevision() - */ - @XmlElement(required=true, nillable=false) - public String getRevision() { - return revision; - } - - /* (non-Javadoc) - * @see net.brutex.xservices.types.scm.SCRevision#getComment() - */ - @XmlElement(required=false, nillable=true) - public String getComment() { - return comment; - } - - /** - * @param revision the revision to set - */ - public void setRevision(String revision) { - this.revision = revision; - } - - /** - * @param comment the comment to set - */ - public void setComment(String comment) { - this.comment = comment; - } - - - -} diff --git a/src/java/net/brutex/xservices/types/scm/Tag.java b/src/java/net/brutex/xservices/types/scm/Tag.java deleted file mode 100644 index 1b656b8..0000000 --- a/src/java/net/brutex/xservices/types/scm/Tag.java +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Copyright 2012 Brian Rosenberger (Brutex Network) - * - * Licensed 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 net.brutex.xservices.types.scm; - -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - -/** - * @author Brian Rosenberger, bru(at)brutex.de - * @since 0.5.0-20120817 - * - */ -@XmlType(name="TagType", propOrder={"name", "comment"}) -@XmlRootElement -public class Tag { - - private String name; - private String comment; - - public Tag() { - } - /** - * @param name - * @param comment - */ - public Tag(String name, String comment) { - super(); - this.name = name; - this.comment = comment; - } - - /** - * @param name the name to set - */ - public void setName(String name) { - this.name = name; - } - - /** - * @param comment the comment to set - */ - public void setComment(String comment) { - this.comment = comment; - } - - /* (non-Javadoc) - * @see net.brutex.xservices.types.scm.SCTag#getName() - */ - public String getName() { - return name; - } - - /* (non-Javadoc) - * @see net.brutex.xservices.types.scm.SCTag#getComment() - */ - - public String getComment() { - return comment; - } - -}