From c635c567e5cce4b25df1dd7ba5921e1f67cd95d7 Mon Sep 17 00:00:00 2001 From: Brian Rosenberger Date: Tue, 5 Feb 2013 14:11:43 +0000 Subject: [PATCH] Arbeitsstand Anfang Februar git-svn-id: https://brutex.net/svn/xservices/trunk@105 e7e49efb-446e-492e-b9ec-fcafc1997a86 --- .../brutex/xservices/types/scm/FileType.java | 160 ------------------ 1 file changed, 160 deletions(-) delete mode 100644 src/java/net/brutex/xservices/types/scm/FileType.java diff --git a/src/java/net/brutex/xservices/types/scm/FileType.java b/src/java/net/brutex/xservices/types/scm/FileType.java deleted file mode 100644 index 98cd073..0000000 --- a/src/java/net/brutex/xservices/types/scm/FileType.java +++ /dev/null @@ -1,160 +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 java.io.File; -import java.util.ArrayList; -import java.util.List; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * @author Brian Rosenberger, bru(at)brutex.de - * @since 0.5.0-20120817 - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(propOrder={"localFilename", "repositoryFilename", "description", "headRevision", "branch", "totalRevisions", "revisions"}) -@XmlRootElement -public class FileType { - - String localFilename; - String repositoryFilename; - String description; - String headRevision; - String branch; - String totalRevisions; - final List revisions = new ArrayList(); - - /** - * @return the revisions - */ - public List getRevisions() { - return revisions; - } - - public void addRevision(Revision revision) { - this.revisions.add(revision); - } - - /** - * @return the totalRevisions - */ - public String getTotalRevisions() { - return totalRevisions; - } - - /** - * @param totalRevisions the totalRevisions to set - */ - public void setTotalRevisions(String totalRevisions) { - this.totalRevisions = totalRevisions; - } - - public FileType() { - } - - public FileType(File file, String repositoryname, String description) { - if(file!= null ) { - this.localFilename = file.toURI().toString(); - } else { - localFilename = ""; - } - - this.repositoryFilename = repositoryname; - this.description = description; - } - - /** - * @return the localFilename - */ - public String getLocalFilename() { - return localFilename; - } - - /** - * @param localFilename the localFilename to set - */ - public void setLocalFilename(String localFilename) { - this.localFilename = localFilename; - } - - /** - * @return the repositoryFilename - */ - public String getRepositoryFilename() { - return repositoryFilename; - } - - /** - * @param repositoryFilename the repositoryFilename to set - */ - public void setRepositoryFilename(String repositoryFilename) { - this.repositoryFilename = repositoryFilename; - } - - /** - * @return the description - */ - public String getDescription() { - return description; - } - - /** - * @param description the description to set - */ - public void setDescription(String description) { - this.description = description; - } - - /** - * @return the headRevision - */ - public String getHeadRevision() { - return headRevision; - } - - /** - * @param headRevision the headRevision to set - */ - public void setHeadRevision(String headRevision) { - this.headRevision = headRevision; - } - - /** - * @return the branch - */ - public String getBranch() { - return branch; - } - - /** - * @param branch the branch to set - */ - public void setBranch(String branch) { - this.branch = branch; - } - - public void clearRevisionList() { - this.revisions.clear(); - } - - -}