From: Richard Millet Date: Wed, 21 Mar 2012 21:07:48 +0000 (-0700) Subject: NOJIRA: Removing obsolete files from repo. X-Git-Url: https://git.aero2k.de/?a=commitdiff_plain;h=93bd640939c0e6eb49005805b7353dc8b3fab62f;p=tmp%2Fjakarta-migration.git NOJIRA: Removing obsolete files from repo. --- diff --git a/docs/allteam-061409-toronto/Toranto_BehindTheScenes.pptx.old b/docs/allteam-061409-toronto/Toranto_BehindTheScenes.pptx.old deleted file mode 100644 index 673a1b091..000000000 Binary files a/docs/allteam-061409-toronto/Toranto_BehindTheScenes.pptx.old and /dev/null differ diff --git a/services/imports/service/.classpath~ b/services/imports/service/.classpath~ deleted file mode 100644 index 209157b7c..000000000 --- a/services/imports/service/.classpath~ +++ /dev/null @@ -1,315 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/services/imports/service/.project~ b/services/imports/service/.project~ deleted file mode 100644 index 5bf91cf09..000000000 --- a/services/imports/service/.project~ +++ /dev/null @@ -1,30 +0,0 @@ - - org.collectionspace.services.imports.service - NO_M2ECLIPSE_SUPPORT: Project files created with the maven-eclipse-plugin are not supported in M2Eclipse. - - org.collectionspace.services.3rdparty.nuxeo.quote-api - org.collectionspace.services.client - org.collectionspace.services.collectionobject.jaxb - org.collectionspace.services.common - org.collectionspace.services.contact.client - org.collectionspace.services.contact.jaxb - org.collectionspace.services.hyperjaxb - org.collectionspace.services.jaxb - org.collectionspace.services.imports.client - org.collectionspace.services.imports.jaxb - org.collectionspace.services.person.client - org.collectionspace.services.person.jaxb - - - - org.eclipse.jdt.core.javabuilder - - - org.maven.ide.eclipse.maven2Builder - - - - org.eclipse.jdt.core.javanature - org.maven.ide.eclipse.maven2Nature - - \ No newline at end of file diff --git a/services/imports/service/src/main/java/org/collectionspace/services/imports/ImportsResource.java~ b/services/imports/service/src/main/java/org/collectionspace/services/imports/ImportsResource.java~ deleted file mode 100644 index fc83ed44e..000000000 --- a/services/imports/service/src/main/java/org/collectionspace/services/imports/ImportsResource.java~ +++ /dev/null @@ -1,59 +0,0 @@ -/** - * This document is a part of the source code and related artifacts - * for CollectionSpace, an open source collections management system - * for museums and related institutions: - - * http://www.collectionspace.org - * http://wiki.collectionspace.org - - * Copyright 2009 University of California at Berkeley - - * Licensed under the Educational Community License (ECL), Version 2.0. - * You may not use this file except in compliance with this License. - - * You may obtain a copy of the ECL 2.0 License at - - * https://source.collectionspace.org/collection-space/LICENSE.txt - - * 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.collectionspace.services.imports; - -import org.collectionspace.services.client.ImportsClient; -import org.collectionspace.services.common.ResourceBase; - -import javax.ws.rs.Consumes; -import javax.ws.rs.Path; -import javax.ws.rs.Produces; - -@Path(ImportsClient.SERVICE_PATH) -@Produces({"application/xml"}) -@Consumes({"application/xml"}) -public class ImportsResource extends ResourceBase { - - @Override - public String getServiceName(){ - return ImportsClient.SERVICE_NAME; - } - - @Override - protected String getVersionString() { - final String lastChangeRevision = "$LastChangedRevision: 2108 $"; - return lastChangeRevision; - } - - @Override - //public Class getCommonPartClass() { - public Class getCommonPartClass() { - try { - return Class.forName("org.collectionspace.services.imports.ImportsCommon");//.class; - } catch (ClassNotFoundException e){ - return null; - } - } - -}