1
7
8 package com.liferay.client.portal.service.http;
9
10 public class Portal_GroupServiceSoapBindingImpl implements com.liferay.client.portal.service.http.GroupServiceSoap{
11 public com.liferay.client.portal.model.GroupSoap[] search(long companyId, java.lang.String name, java.lang.String description, java.lang.String[] params, int begin, int end) throws java.rmi.RemoteException {
12 return null;
13 }
14
15 public com.liferay.client.portal.model.GroupSoap getGroup(long groupId) throws java.rmi.RemoteException {
16 return null;
17 }
18
19 public com.liferay.client.portal.model.GroupSoap getGroup(long companyId, java.lang.String name) throws java.rmi.RemoteException {
20 return null;
21 }
22
23 public com.liferay.client.portal.model.GroupSoap updateGroup(long groupId, java.lang.String typeSettings) throws java.rmi.RemoteException {
24 return null;
25 }
26
27 public com.liferay.client.portal.model.GroupSoap updateGroup(long groupId, java.lang.String name, java.lang.String description, java.lang.String type, java.lang.String friendlyURL, boolean active) throws java.rmi.RemoteException {
28 return null;
29 }
30
31 public com.liferay.client.portal.model.GroupSoap addGroup(java.lang.String name, java.lang.String description, java.lang.String type, java.lang.String friendlyURL, boolean active) throws java.rmi.RemoteException {
32 return null;
33 }
34
35 public com.liferay.client.portal.model.GroupSoap addGroup(long liveGroupId, java.lang.String name, java.lang.String description, java.lang.String type, java.lang.String friendlyURL, boolean active) throws java.rmi.RemoteException {
36 return null;
37 }
38
39 public void addRoleGroups(long roleId, long[] groupIds) throws java.rmi.RemoteException {
40 }
41
42 public void deleteGroup(long groupId) throws java.rmi.RemoteException {
43 }
44
45 public com.liferay.client.portal.model.GroupSoap[] getOrganizationsGroups(java.lang.Object[] organizations) throws java.rmi.RemoteException {
46 return null;
47 }
48
49 public com.liferay.client.portal.model.GroupSoap[] getUserGroupsGroups(java.lang.Object[] userGroups) throws java.rmi.RemoteException {
50 return null;
51 }
52
53 public boolean hasUserGroup(long userId, long groupId) throws java.rmi.RemoteException {
54 return false;
55 }
56
57 public int searchCount(long companyId, java.lang.String name, java.lang.String description, java.lang.String[] params) throws java.rmi.RemoteException {
58 return -3;
59 }
60
61 public void setRoleGroups(long roleId, long[] groupIds) throws java.rmi.RemoteException {
62 }
63
64 public void unsetRoleGroups(long roleId, long[] groupIds) throws java.rmi.RemoteException {
65 }
66
67 }
68