]> git.aero2k.de Git - tmp/jakarta-migration.git/blob
a69f8b0d6a4d7e2ddc5ccb2cbf61fc7740639911
[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 import org.collectionspace.services.valuationcontrol.ValuationcontrolsCommon;
20
21 /**
22  * ValuationcontrolClient.java
23  */
24 public class ValuationcontrolClient extends AbstractCommonListPoxServiceClientImpl<ValuationcontrolProxy, ValuationcontrolsCommon> {
25
26     public static final String SERVICE_NAME = "valuationcontrols";
27     public static final String SERVICE_PATH_COMPONENT = SERVICE_NAME;
28     public static final String SERVICE_PATH = "/" + SERVICE_PATH_COMPONENT;
29     public static final String SERVICE_PATH_PROXY = SERVICE_PATH + "/";
30     public static final String SERVICE_PAYLOAD_NAME = SERVICE_NAME;
31
32     public ValuationcontrolClient() {
33                 super();
34         }
35
36     public ValuationcontrolClient(String clientPropertiesFilename) {
37                 super(clientPropertiesFilename);
38         }
39
40         /* (non-Javadoc)
41      * @see org.collectionspace.services.client.AbstractServiceClientImpl#getServicePathComponent()
42      */
43     @Override
44     public String getServicePathComponent() {
45         return SERVICE_PATH_COMPONENT;
46     }
47
48     @Override
49     public String getServiceName() {
50         return SERVICE_NAME;
51     }
52
53     @Override
54     public Class<ValuationcontrolProxy> getProxyClass() {
55         return ValuationcontrolProxy.class;
56     }
57
58 }