@ProviderType
public class UserGroupServiceSoap
extends Object
UserGroupServiceUtil
service utility. The
static methods of this class calls the same methods of the service utility.
However, the signatures are different because it is difficult for SOAP to
support certain types.
ServiceBuilder follows certain rules in translating the methods. For example,
if the method in the service utility returns a List
, that
is translated to an array of UserGroupSoap
.
If the method in the service utility returns a
UserGroup
, that is translated to a
UserGroupSoap
. Methods that SOAP cannot
safely wire are skipped.
The benefits of using the SOAP utility is that it is cross platform compatible. SOAP allows different languages like Java, .NET, C++, PHP, and even Perl, to call the generated services. One drawback of SOAP is that it is slow because it needs to serialize all calls into a text format (XML).
You can see a list of services at http://localhost:8080/api/axis. Set the property axis.servlet.hosts.allowed in portal.properties to configure security.
The SOAP utility is only generated for remote services.
UserGroupServiceHttp
,
UserGroupSoap
,
UserGroupServiceUtil
Constructor and Description |
---|
UserGroupServiceSoap() |
Modifier and Type | Method and Description |
---|---|
static void |
addGroupUserGroups(long groupId,
long[] userGroupIds)
Adds the user groups to the group.
|
static void |
addTeamUserGroups(long teamId,
long[] userGroupIds)
Adds the user groups to the team
|
static com.liferay.portal.kernel.model.UserGroupSoap |
addUserGroup(String name,
String description)
Deprecated.
As of Newton (6.2.x), replaced by
addUserGroup(String, String, ServiceContext) |
static com.liferay.portal.kernel.model.UserGroupSoap |
addUserGroup(String name,
String description,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
Adds a user group.
|
static void |
deleteUserGroup(long userGroupId)
Deletes the user group.
|
static com.liferay.portal.kernel.model.UserGroupSoap |
fetchUserGroup(long userGroupId)
Fetches the user group with the primary key.
|
static com.liferay.portal.kernel.model.UserGroupSoap[] |
getGtUserGroups(long gtUserGroupId,
long companyId,
long parentUserGroupId,
int size) |
static com.liferay.portal.kernel.model.UserGroupSoap |
getUserGroup(long userGroupId)
Returns the user group with the primary key.
|
static com.liferay.portal.kernel.model.UserGroupSoap |
getUserGroup(String name)
Returns the user group with the name.
|
static com.liferay.portal.kernel.model.UserGroupSoap[] |
getUserGroups(long companyId) |
static com.liferay.portal.kernel.model.UserGroupSoap[] |
getUserGroups(long companyId,
String name,
int start,
int end) |
static int |
getUserGroupsCount(long companyId,
String name) |
static com.liferay.portal.kernel.model.UserGroupSoap[] |
getUserUserGroups(long userId)
Returns all the user groups to which the user belongs.
|
static void |
unsetGroupUserGroups(long groupId,
long[] userGroupIds)
Removes the user groups from the group.
|
static void |
unsetTeamUserGroups(long teamId,
long[] userGroupIds)
Removes the user groups from the team.
|
static com.liferay.portal.kernel.model.UserGroupSoap |
updateUserGroup(long userGroupId,
String name,
String description)
Deprecated.
As of Newton (6.2.x), replaced by
updateUserGroup(long, String, String, ServiceContext) |
static com.liferay.portal.kernel.model.UserGroupSoap |
updateUserGroup(long userGroupId,
String name,
String description,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
Updates the user group.
|
public static void addGroupUserGroups(long groupId, long[] userGroupIds) throws RemoteException
groupId
- the primary key of the groupuserGroupIds
- the primary keys of the user groupsRemoteException
public static void addTeamUserGroups(long teamId, long[] userGroupIds) throws RemoteException
teamId
- the primary key of the teamuserGroupIds
- the primary keys of the user groupsRemoteException
@Deprecated public static com.liferay.portal.kernel.model.UserGroupSoap addUserGroup(String name, String description) throws RemoteException
addUserGroup(String, String, ServiceContext)
This method handles the creation and bookkeeping of the user group, including its resources, metadata, and internal data structures.
name
- the user group's namedescription
- the user group's descriptionRemoteException
public static com.liferay.portal.kernel.model.UserGroupSoap addUserGroup(String name, String description, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws RemoteException
This method handles the creation and bookkeeping of the user group, including its resources, metadata, and internal data structures.
name
- the user group's namedescription
- the user group's descriptionserviceContext
- the service context to be applied (optionally
null
). Can set expando bridge attributes for the
user group.RemoteException
public static void deleteUserGroup(long userGroupId) throws RemoteException
userGroupId
- the primary key of the user groupRemoteException
public static com.liferay.portal.kernel.model.UserGroupSoap fetchUserGroup(long userGroupId) throws RemoteException
userGroupId
- the primary key of the user groupRemoteException
public static com.liferay.portal.kernel.model.UserGroupSoap[] getGtUserGroups(long gtUserGroupId, long companyId, long parentUserGroupId, int size) throws RemoteException
RemoteException
public static com.liferay.portal.kernel.model.UserGroupSoap getUserGroup(long userGroupId) throws RemoteException
userGroupId
- the primary key of the user groupRemoteException
public static com.liferay.portal.kernel.model.UserGroupSoap getUserGroup(String name) throws RemoteException
name
- the user group's nameRemoteException
public static com.liferay.portal.kernel.model.UserGroupSoap[] getUserGroups(long companyId) throws RemoteException
RemoteException
public static com.liferay.portal.kernel.model.UserGroupSoap[] getUserGroups(long companyId, String name, int start, int end) throws RemoteException
RemoteException
public static int getUserGroupsCount(long companyId, String name) throws RemoteException
RemoteException
public static com.liferay.portal.kernel.model.UserGroupSoap[] getUserUserGroups(long userId) throws RemoteException
userId
- the primary key of the userRemoteException
public static void unsetGroupUserGroups(long groupId, long[] userGroupIds) throws RemoteException
groupId
- the primary key of the groupuserGroupIds
- the primary keys of the user groupsRemoteException
public static void unsetTeamUserGroups(long teamId, long[] userGroupIds) throws RemoteException
teamId
- the primary key of the teamuserGroupIds
- the primary keys of the user groupsRemoteException
@Deprecated public static com.liferay.portal.kernel.model.UserGroupSoap updateUserGroup(long userGroupId, String name, String description) throws RemoteException
updateUserGroup(long, String, String, ServiceContext)
userGroupId
- the primary key of the user groupname
- the user group's namedescription
- the the user group's descriptionRemoteException
public static com.liferay.portal.kernel.model.UserGroupSoap updateUserGroup(long userGroupId, String name, String description, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws RemoteException
userGroupId
- the primary key of the user groupname
- the user group's namedescription
- the the user group's descriptionserviceContext
- the service context to be applied (optionally
null
). Can set expando bridge attributes for the
user group.RemoteException