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.servicegroup.ServicegroupsCommon;
22 * ServiceGroupClient.java
24 * $LastChangedRevision: 2108 $
25 * $LastChangedDate: 2010-05-17 18:25:37 -0700 (Mon, 17 May 2010) $
28 public class ServiceGroupClient extends AbstractCommonListPoxServiceClientImpl<ServiceGroupProxy, ServicegroupsCommon> {
30 public static final String SERVICE_NAME = "servicegroups";
31 public static final String SERVICE_PATH_COMPONENT = SERVICE_NAME;
32 public static final String SERVICE_PATH = "/" + SERVICE_PATH_COMPONENT;
33 public static final String SERVICE_PATH_PROXY = SERVICE_PATH + "/";
34 public static final String SERVICE_PAYLOAD_NAME = SERVICE_NAME;
36 public ServiceGroupClient() {
40 public ServiceGroupClient(String clientPropertiesFilename) {
41 super(clientPropertiesFilename);
45 public String getServiceName() {
50 public String getServicePathComponent() {
51 return SERVICE_PATH_COMPONENT;
55 public Class<ServiceGroupProxy> getProxyClass() {
56 return ServiceGroupProxy.class;