From: Rick Jaffe Date: Wed, 14 Mar 2012 06:30:27 +0000 (-0700) Subject: CSPACE-4391: Adding PlaceAuthorityResource to import, addResourceToMapAndSingletons X-Git-Url: https://git.aero2k.de/?a=commitdiff_plain;h=a6501ef11e9c0d2ed101fa9e9b98f026e05699f6;p=tmp%2Fjakarta-migration.git CSPACE-4391: Adding PlaceAuthorityResource to import, addResourceToMapAndSingletons --- diff --git a/services/JaxRsServiceProvider/src/main/java/org/collectionspace/services/jaxrs/CollectionSpaceJaxRsApplication.java b/services/JaxRsServiceProvider/src/main/java/org/collectionspace/services/jaxrs/CollectionSpaceJaxRsApplication.java index e09dd3c2e..75c9713bb 100644 --- a/services/JaxRsServiceProvider/src/main/java/org/collectionspace/services/jaxrs/CollectionSpaceJaxRsApplication.java +++ b/services/JaxRsServiceProvider/src/main/java/org/collectionspace/services/jaxrs/CollectionSpaceJaxRsApplication.java @@ -36,6 +36,7 @@ import org.collectionspace.services.objectexit.ObjectExitResource; 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.taxonomy.TaxonomyAuthorityResource; import org.collectionspace.services.movement.MovementResource; import org.collectionspace.services.relation.RelationResource; @@ -105,6 +106,7 @@ public class CollectionSpaceJaxRsApplication extends Application addResourceToMapAndSingletons(new OrgAuthorityResource()); addResourceToMapAndSingletons(new LocationAuthorityResource()); addResourceToMapAndSingletons(new TaxonomyAuthorityResource()); + addResourceToMapAndSingletons(new PlaceAuthorityResource()); addResourceToMapAndSingletons(new AcquisitionResource()); addResourceToMapAndSingletons(new ContactResource()); addResourceToMapAndSingletons(new CollectionObjectResource());