1   /**
2    * GroupServiceSoap.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 GroupServiceSoap extends java.rmi.Remote {
11      public com.liferay.client.soap.portal.model.GroupSoap[] search(long companyId, java.lang.String name, java.lang.String description, java.lang.String[] params, int start, int end) throws java.rmi.RemoteException;
12      public com.liferay.client.soap.portal.model.GroupSoap getGroup(long groupId) throws java.rmi.RemoteException;
13      public com.liferay.client.soap.portal.model.GroupSoap getGroup(long companyId, java.lang.String name) throws java.rmi.RemoteException;
14      public com.liferay.client.soap.portal.model.GroupSoap addGroup(long liveGroupId, java.lang.String name, java.lang.String description, int type, java.lang.String friendlyURL, boolean active, com.liferay.client.soap.portal.service.ServiceContext serviceContext) throws java.rmi.RemoteException;
15      public com.liferay.client.soap.portal.model.GroupSoap addGroup(java.lang.String name, java.lang.String description, int type, java.lang.String friendlyURL, boolean active, com.liferay.client.soap.portal.service.ServiceContext serviceContext) throws java.rmi.RemoteException;
16      public void addRoleGroups(long roleId, long[] groupIds) throws java.rmi.RemoteException;
17      public void deleteGroup(long groupId) throws java.rmi.RemoteException;
18      public com.liferay.client.soap.portal.model.GroupSoap[] getManageableGroups(java.lang.String actionId, int max) throws java.rmi.RemoteException;
19      public com.liferay.client.soap.portal.model.GroupSoap[] getOrganizationsGroups(com.liferay.client.soap.portal.model.OrganizationSoap[] organizations) throws java.rmi.RemoteException;
20      public com.liferay.client.soap.portal.model.GroupSoap getUserGroup(long companyId, long userId) throws java.rmi.RemoteException;
21      public com.liferay.client.soap.portal.model.GroupSoap[] getUserGroupsGroups(com.liferay.client.soap.portal.model.UserGroupSoap[] userGroups) throws java.rmi.RemoteException;
22      public com.liferay.client.soap.portal.model.GroupSoap[] getUserOrganizationsGroups(long userId, int start, int end) throws java.rmi.RemoteException;
23      public boolean hasUserGroup(long userId, long groupId) throws java.rmi.RemoteException;
24      public int searchCount(long companyId, java.lang.String name, java.lang.String description, java.lang.String[] params) throws java.rmi.RemoteException;
25      public void setRoleGroups(long roleId, long[] groupIds) throws java.rmi.RemoteException;
26      public void unsetRoleGroups(long roleId, long[] groupIds) throws java.rmi.RemoteException;
27      public com.liferay.client.soap.portal.model.GroupSoap updateFriendlyURL(long groupId, java.lang.String friendlyURL) throws java.rmi.RemoteException;
28      public com.liferay.client.soap.portal.model.GroupSoap updateGroup(long groupId, java.lang.String typeSettings) throws java.rmi.RemoteException;
29      public com.liferay.client.soap.portal.model.GroupSoap updateGroup(long groupId, java.lang.String name, java.lang.String description, int type, java.lang.String friendlyURL, boolean active, com.liferay.client.soap.portal.service.ServiceContext serviceContext) throws java.rmi.RemoteException;
30      public com.liferay.client.soap.portal.model.GroupSoap updateWorkflow(long groupId, boolean workflowEnabled, int workflowStages, java.lang.String workflowRoleNames) throws java.rmi.RemoteException;
31  }
32