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 com.liferay.client.soap.portal.model.UserGroupSoap getUserGroup(java.lang.String name) throws java.rmi.RemoteException {
12 return null;
13 }
14
15 public com.liferay.client.soap.portal.model.UserGroupSoap getUserGroup(long userGroupId) throws java.rmi.RemoteException {
16 return null;
17 }
18
19 public void addGroupUserGroups(long groupId, long[] userGroupIds) throws java.rmi.RemoteException {
20 }
21
22 public com.liferay.client.soap.portal.model.UserGroupSoap addUserGroup(java.lang.String name, java.lang.String description) throws java.rmi.RemoteException {
23 return null;
24 }
25
26 public void deleteUserGroup(long userGroupId) throws java.rmi.RemoteException {
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