]> git.aero2k.de Git - tmp/jakarta-migration.git/blob
58684eb8c1416243b451cd1fa3e14ac8e962d799
[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  * ValuationcontrolClient.java
21  */
22 public class ValuationcontrolClient extends AbstractCommonListPoxServiceClientImpl<ValuationcontrolProxy> {
23
24     public static final String SERVICE_NAME = "valuationcontrols";
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     /* (non-Javadoc)
31      * @see org.collectionspace.services.client.AbstractServiceClientImpl#getServicePathComponent()
32      */
33     @Override
34     public String getServicePathComponent() {
35         return SERVICE_PATH_COMPONENT;
36     }
37
38     @Override
39     public String getServiceName() {
40         return SERVICE_NAME;
41     }
42
43     @Override
44     public Class<ValuationcontrolProxy> getProxyClass() {
45         return ValuationcontrolProxy.class;
46     }
47
48 }