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:
6 * http://www.collectionspace.org
7 * http://wiki.collectionspace.org
9 * Copyright (c) 2009 Regents of the University of California
11 * Licensed under the Educational Community License (ECL), Version 2.0.
12 * You may not use this file except in compliance with this License.
14 * You may obtain a copy of the ECL 2.0 License at
15 * https://source.collectionspace.org/collection-space/LICENSE.txt
17 package org.collectionspace.services.client;
19 import org.collectionspace.services.valuationcontrol.ValuationcontrolsCommon;
22 * ValuationcontrolClient.java
24 public class ValuationcontrolClient extends AbstractCommonListPoxServiceClientImpl<ValuationcontrolProxy, ValuationcontrolsCommon> {
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;
32 public ValuationcontrolClient() {
36 public ValuationcontrolClient(String clientPropertiesFilename) {
37 super(clientPropertiesFilename);
41 * @see org.collectionspace.services.client.AbstractServiceClientImpl#getServicePathComponent()
44 public String getServicePathComponent() {
45 return SERVICE_PATH_COMPONENT;
49 public String getServiceName() {
54 public Class<ValuationcontrolProxy> getProxyClass() {
55 return ValuationcontrolProxy.class;