]> git.aero2k.de Git - tmp/jakarta-migration.git/blob
00b8ad1c2923799baee7ccbe9a9da3608c6ab866
[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  * Copyright (c) 2009 Regents of the University of California
10  *
11  * Licensed under the Educational Community License (ECL), Version 2.0.
12  * You may not use this file except in compliance with this License.
13  *
14  * You may obtain a copy of the ECL 2.0 License at
15  * https://source.collectionspace.org/collection-space/LICENSE.txt
16  */
17 package org.collectionspace.services.client;
18
19 /**
20  * ConservationClient.java
21  *
22  * $LastChangedRevision$
23  * $LastChangedDate$
24  *
25  */
26 public class ConservationClient extends AbstractCommonListPoxServiceClientImpl<ConservationProxy> {
27
28     public static final String SERVICE_NAME = "conservation";
29     public static final String SERVICE_PATH_COMPONENT = SERVICE_NAME;
30     public static final String SERVICE_PATH = "/" + SERVICE_PATH_COMPONENT;
31     public static final String SERVICE_PATH_PROXY = SERVICE_PATH + "/";
32     public static final String SERVICE_PAYLOAD_NAME = SERVICE_NAME;
33
34     /* (non-Javadoc)
35      * @see org.collectionspace.services.client.AbstractServiceClientImpl#getServicePathComponent()
36      */
37     @Override
38     public String getServicePathComponent() {
39         return SERVICE_PATH_COMPONENT;
40     }
41
42     @Override
43     public String getServiceName() {
44         return SERVICE_NAME;
45     }
46
47     @Override
48     public Class<ConservationProxy> getProxyClass() {
49         return ConservationProxy.class;
50     }
51
52 }