<artifactId>org.collectionspace.services.location.service</artifactId>\r
<version>${project.version}</version>\r
</dependency>\r
+ <dependency>\r
+ <groupId>org.collectionspace.services</groupId>\r
+ <artifactId>org.collectionspace.services.place.service</artifactId>\r
+ <version>${project.version}</version>\r
+ </dependency>\r
+ <dependency>\r
+ <groupId>org.collectionspace.services</groupId>\r
+ <artifactId>org.collectionspace.services.concept.service</artifactId>\r
+ <version>${project.version}</version>\r
+ </dependency>\r
<dependency>\r
<groupId>org.collectionspace.services</groupId>\r
<artifactId>org.collectionspace.services.taxonomy.service</artifactId>\r
import org.collectionspace.services.batch.BatchResource;
import org.collectionspace.services.imports.ImportsResource;
import org.collectionspace.services.location.LocationAuthorityResource;
+ import org.collectionspace.services.place.PlaceAuthorityResource;
+import org.collectionspace.services.concept.ConceptAuthorityResource;
import org.collectionspace.services.taxonomy.TaxonomyAuthorityResource;
import org.collectionspace.services.movement.MovementResource;
import org.collectionspace.services.relation.RelationResource;
addResourceToMapAndSingletons(new PersonAuthorityResource());
addResourceToMapAndSingletons(new OrgAuthorityResource());
addResourceToMapAndSingletons(new LocationAuthorityResource());
+ addResourceToMapAndSingletons(new ConceptAuthorityResource());
addResourceToMapAndSingletons(new TaxonomyAuthorityResource());
+ addResourceToMapAndSingletons(new PlaceAuthorityResource());
addResourceToMapAndSingletons(new AcquisitionResource());
addResourceToMapAndSingletons(new ContactResource());
addResourceToMapAndSingletons(new CollectionObjectResource());
<ant antfile="objectexit/build.xml" target="deploy" inheritAll="false"/>\r
<ant antfile="batch/build.xml" target="deploy" inheritAll="false"/>\r
<ant antfile="location/build.xml" target="deploy" inheritAll="false"/>\r
+ <ant antfile="place/build.xml" target="deploy" inheritAll="false"/>\r
+ <ant antfile="concept/build.xml" target="deploy" inheritAll="false"/>\r
<ant antfile="taxonomy/build.xml" target="deploy" inheritAll="false"/>\r
<ant antfile="media/build.xml" target="deploy" inheritAll="false"/>\r
<ant antfile="movement/build.xml" target="deploy" inheritAll="false"/>\r
<ant antfile="dimension/build.xml" target="undeploy" inheritAll="false"/>\r
<ant antfile="acquisition/build.xml" target="undeploy" inheritAll="false"/>\r
<ant antfile="taxonomy/build.xml" target="undeploy" inheritAll="false"/>\r
+ <ant antfile="concept/build.xml" target="undeploy" inheritAll="false"/>\r
+ <ant antfile="place/build.xml" target="undeploy" inheritAll="false"/>\r
<ant antfile="location/build.xml" target="undeploy" inheritAll="false"/>\r
<ant antfile="objectexit/build.xml" target="undeploy" inheritAll="false"/>\r
<ant antfile="batch/build.xml" target="undeploy" inheritAll="false"/>\r
<ant antfile="loanin/build.xml" target="dist" inheritAll="false"/>\r
<ant antfile="loanout/build.xml" target="dist" inheritAll="false"/>\r
<ant antfile="location/build.xml" target="dist" inheritAll="false"/>\r
+ <ant antfile="place/build.xml" target="dist" inheritAll="false"/>\r
+ <ant antfile="concept/build.xml" target="dist" inheritAll="false"/>\r
<ant antfile="taxonomy/build.xml" target="dist" inheritAll="false"/>\r
<ant antfile="objectexit/build.xml" target="dist" inheritAll="false"/>\r
<ant antfile="batch/build.xml" target="dist" inheritAll="false"/>\r
<module>batch</module>
<module>imports</module>
<module>location</module>
- <module>concept</module>
+ <module>place</module>
++ <module>concept</module>
<module>taxonomy</module>
<module>movement</module>
<module>report</module>
import org.collectionspace.services.client.OrgAuthorityClient;
import org.collectionspace.services.client.LocationAuthorityClient;
import org.collectionspace.services.client.TaxonomyAuthorityClient;
+ import org.collectionspace.services.client.PlaceAuthorityClient;
+import org.collectionspace.services.client.ConceptAuthorityClient;
import org.collectionspace.services.common.document.DocumentWrapper;
import org.collectionspace.services.jaxb.AbstractCommonList;
common_schema = LocationAuthorityClient.SERVICE_ITEM_COMMON_PART_NAME;
else if(docType.startsWith("Taxon"))
common_schema = TaxonomyAuthorityClient.SERVICE_ITEM_COMMON_PART_NAME;
+ else if(docType.startsWith("Placeitem"))
+ common_schema = PlaceAuthorityClient.SERVICE_ITEM_COMMON_PART_NAME;
+ else if(docType.startsWith("Conceptitem"))
+ common_schema = ConceptAuthorityClient.SERVICE_ITEM_COMMON_PART_NAME;
//else leave it null.
}
return common_schema;