1
7
8 package com.liferay.client.soap.portal.service.http;
9
10 public class Portal_UserGroupServiceSoapBindingImpl implements com.liferay.client.soap.portal.service.http.UserGroupServiceSoap{
11 public void addGroupUserGroups(long groupId, long[] userGroupIds) throws java.rmi.RemoteException {
12 }
13
14 public com.liferay.client.soap.portal.model.UserGroupSoap addUserGroup(java.lang.String name, java.lang.String description) throws java.rmi.RemoteException {
15 return null;
16 }
17
18 public void deleteUserGroup(long userGroupId) throws java.rmi.RemoteException {
19 }
20
21 public com.liferay.client.soap.portal.model.UserGroupSoap getUserGroup(java.lang.String name) throws java.rmi.RemoteException {
22 return null;
23 }
24
25 public com.liferay.client.soap.portal.model.UserGroupSoap getUserGroup(long userGroupId) throws java.rmi.RemoteException {
26 return null;
27 }
28
29 public com.liferay.client.soap.portal.model.UserGroupSoap[] getUserUserGroups(long userId) throws java.rmi.RemoteException {
30 return null;
31 }
32
33 public void unsetGroupUserGroups(long groupId, long[] userGroupIds) throws java.rmi.RemoteException {
34 }
35
36 public com.liferay.client.soap.portal.model.UserGroupSoap updateUserGroup(long userGroupId, java.lang.String name, java.lang.String description) throws java.rmi.RemoteException {
37 return null;
38 }
39
40 }
41