]> git.aero2k.de Git - tmp/jakarta-migration.git/commitdiff
CSPACE-5130: Adding final implementations of abstract method getItemTermInfoGroupXPat...
authorRichard Millet <remillet@berkeley.edu>
Wed, 2 May 2012 18:30:18 +0000 (11:30 -0700)
committerRichard Millet <remillet@berkeley.edu>
Wed, 2 May 2012 18:30:18 +0000 (11:30 -0700)
services/taxonomy/client/src/main/java/org/collectionspace/services/client/TaxonomyAuthorityClient.java
services/taxonomy/service/src/main/java/org/collectionspace/services/taxonomy/TaxonomyAuthorityResource.java

index 25d336904e0e9b13ccdd15f26feae348f15c7ea4..b2f1f239f4fd2bdc3e44d3862e8e785175e6d217 100644 (file)
@@ -37,6 +37,7 @@ public class TaxonomyAuthorityClient extends AuthorityClientImpl<TaxonCommon, Ta
     public static final String SERVICE_PATH_COMPONENT = SERVICE_NAME;
     public static final String SERVICE_PATH = "/" + SERVICE_PATH_COMPONENT;
     public static final String SERVICE_PAYLOAD_NAME = SERVICE_NAME;
+    public static final String TERM_INFO_GROUP_XPATH_BASE = "taxonTermGroup";
     //
     // Subitem constants
     //
index 886c8cf3fc5122beb0b87b936fa8af15e5412e72..7aaa10d37f51a3bf4bef44e44b35e2e6ea98dfde 100644 (file)
@@ -65,4 +65,9 @@ public class TaxonomyAuthorityResource
     public Class<TaxonomyauthorityCommon> getCommonPartClass() {
         return TaxonomyauthorityCommon.class;
     }
+
+       @Override
+       public String getItemTermInfoGroupXPathBase() {
+        return TaxonomyAuthorityClient.TERM_INFO_GROUP_XPATH_BASE;
+       }
 }