]> git.aero2k.de Git - tmp/jakarta-migration.git/blob
90237b2bf6f5f27dfc782ce59e61edd15188e8cf
[tmp/jakarta-migration.git] /
1 /*
2  * This document is a part of the source code and related artifacts
3  * for CollectionSpace, an open source collections management system
4  * for museums and related institutions:
5  *
6  * http://www.collectionspace.org
7  * http://wiki.collectionspace.org
8  *
9  * Licensed under the Educational Community License (ECL), Version 2.0.
10  * You may not use this file except in compliance with this License.
11  *
12  * You may obtain a copy of the ECL 2.0 License at
13  * https://source.collectionspace.org/collection-space/LICENSE.txt
14  */
15 package org.collectionspace.services.client;
16
17 import org.collectionspace.services.nagpraclaim.NagpraclaimsCommon;
18
19 /**
20  * NagpraclaimClient.java
21  */
22 public class NagpraClaimClient extends AbstractCommonListPoxServiceClientImpl<NagpraClaimProxy, NagpraclaimsCommon> {
23
24     public static final String SERVICE_NAME = "nagpraclaims";
25     public static final String SERVICE_PATH_COMPONENT = SERVICE_NAME;
26     public static final String SERVICE_PATH = "/" + SERVICE_PATH_COMPONENT;
27     public static final String SERVICE_PATH_PROXY = SERVICE_PATH + "/";
28     public static final String SERVICE_PAYLOAD_NAME = SERVICE_NAME;
29
30     public NagpraClaimClient() throws Exception {
31         super();
32     }
33
34     public NagpraClaimClient(String clientPropertiesFilename) throws Exception {
35         super(clientPropertiesFilename);
36     }
37
38     @Override
39     public String getServicePathComponent() {
40         return SERVICE_PATH_COMPONENT;
41     }
42
43     @Override
44     public String getServiceName() {
45         return SERVICE_NAME;
46     }
47
48     @Override
49     public Class<NagpraClaimProxy> getProxyClass() {
50         return NagpraClaimProxy.class;
51     }
52 }