1   /**
2    * UserGroupServiceSoap.java
3    *
4    * This file was auto-generated from WSDL
5    * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
6    */
7   
8   package com.liferay.client.soap.portal.service.http;
9   
10  public interface UserGroupServiceSoap extends java.rmi.Remote {
11      public com.liferay.client.soap.portal.model.UserGroupSoap getUserGroup(java.lang.String name) throws java.rmi.RemoteException;
12      public com.liferay.client.soap.portal.model.UserGroupSoap getUserGroup(long userGroupId) throws java.rmi.RemoteException;
13      public void addGroupUserGroups(long groupId, long[] userGroupIds) throws java.rmi.RemoteException;
14      public com.liferay.client.soap.portal.model.UserGroupSoap addUserGroup(java.lang.String name, java.lang.String description) throws java.rmi.RemoteException;
15      public void deleteUserGroup(long userGroupId) throws java.rmi.RemoteException;
16      public com.liferay.client.soap.portal.model.UserGroupSoap[] getUserUserGroups(long userId) throws java.rmi.RemoteException;
17      public void unsetGroupUserGroups(long groupId, long[] userGroupIds) throws java.rmi.RemoteException;
18      public com.liferay.client.soap.portal.model.UserGroupSoap updateUserGroup(long userGroupId, java.lang.String name, java.lang.String description) throws java.rmi.RemoteException;
19  }
20