com.liferay.portal.service.http
Class ResourceBlockServiceHttp
java.lang.Object
com.liferay.portal.service.http.ResourceBlockServiceHttp
public class ResourceBlockServiceHttp
- extends java.lang.Object
This class provides a HTTP utility for the
ResourceBlockServiceUtil service utility. The
static methods of this class calls the same methods of the service utility.
However, the signatures are different because it requires an additional
HttpPrincipal parameter.
The benefits of using the HTTP utility is that it is fast and allows for
tunneling without the cost of serializing to text. The drawback is that it
only works with Java.
Set the property tunnel.servlet.hosts.allowed in portal.properties to
configure security.
The HTTP utility is only generated for remote services.
- Author:
- Brian Wing Shun Chan
- See Also:
ResourceBlockServiceSoap,
HttpPrincipal,
ResourceBlockServiceUtil- Generated:
|
Method Summary |
static void |
addCompanyScopePermission(HttpPrincipal httpPrincipal,
long scopeGroupId,
long companyId,
java.lang.String name,
long roleId,
java.lang.String actionId)
|
static void |
addGroupScopePermission(HttpPrincipal httpPrincipal,
long scopeGroupId,
long companyId,
long groupId,
java.lang.String name,
long roleId,
java.lang.String actionId)
|
static void |
addIndividualScopePermission(HttpPrincipal httpPrincipal,
long companyId,
long groupId,
java.lang.String name,
long primKey,
long roleId,
java.lang.String actionId)
|
static void |
removeAllGroupScopePermissions(HttpPrincipal httpPrincipal,
long scopeGroupId,
long companyId,
java.lang.String name,
long roleId,
java.lang.String actionId)
|
static void |
removeCompanyScopePermission(HttpPrincipal httpPrincipal,
long scopeGroupId,
long companyId,
java.lang.String name,
long roleId,
java.lang.String actionId)
|
static void |
removeGroupScopePermission(HttpPrincipal httpPrincipal,
long scopeGroupId,
long companyId,
long groupId,
java.lang.String name,
long roleId,
java.lang.String actionId)
|
static void |
removeIndividualScopePermission(HttpPrincipal httpPrincipal,
long companyId,
long groupId,
java.lang.String name,
long primKey,
long roleId,
java.lang.String actionId)
|
static void |
setCompanyScopePermissions(HttpPrincipal httpPrincipal,
long scopeGroupId,
long companyId,
java.lang.String name,
long roleId,
java.util.List<java.lang.String> actionIds)
|
static void |
setGroupScopePermissions(HttpPrincipal httpPrincipal,
long scopeGroupId,
long companyId,
long groupId,
java.lang.String name,
long roleId,
java.util.List<java.lang.String> actionIds)
|
static void |
setIndividualScopePermissions(HttpPrincipal httpPrincipal,
long companyId,
long groupId,
java.lang.String name,
long primKey,
long roleId,
java.util.List<java.lang.String> actionIds)
|
static void |
setIndividualScopePermissions(HttpPrincipal httpPrincipal,
long companyId,
long groupId,
java.lang.String name,
long primKey,
java.util.Map<java.lang.Long,java.lang.String[]> roleIdsToActionIds)
|
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ResourceBlockServiceHttp
public ResourceBlockServiceHttp()
addCompanyScopePermission
public static void addCompanyScopePermission(HttpPrincipal httpPrincipal,
long scopeGroupId,
long companyId,
java.lang.String name,
long roleId,
java.lang.String actionId)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException
- Throws:
com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.SystemException
addGroupScopePermission
public static void addGroupScopePermission(HttpPrincipal httpPrincipal,
long scopeGroupId,
long companyId,
long groupId,
java.lang.String name,
long roleId,
java.lang.String actionId)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException
- Throws:
com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.SystemException
addIndividualScopePermission
public static void addIndividualScopePermission(HttpPrincipal httpPrincipal,
long companyId,
long groupId,
java.lang.String name,
long primKey,
long roleId,
java.lang.String actionId)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException
- Throws:
com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.SystemException
removeAllGroupScopePermissions
public static void removeAllGroupScopePermissions(HttpPrincipal httpPrincipal,
long scopeGroupId,
long companyId,
java.lang.String name,
long roleId,
java.lang.String actionId)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException
- Throws:
com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.SystemException
removeCompanyScopePermission
public static void removeCompanyScopePermission(HttpPrincipal httpPrincipal,
long scopeGroupId,
long companyId,
java.lang.String name,
long roleId,
java.lang.String actionId)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException
- Throws:
com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.SystemException
removeGroupScopePermission
public static void removeGroupScopePermission(HttpPrincipal httpPrincipal,
long scopeGroupId,
long companyId,
long groupId,
java.lang.String name,
long roleId,
java.lang.String actionId)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException
- Throws:
com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.SystemException
removeIndividualScopePermission
public static void removeIndividualScopePermission(HttpPrincipal httpPrincipal,
long companyId,
long groupId,
java.lang.String name,
long primKey,
long roleId,
java.lang.String actionId)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException
- Throws:
com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.SystemException
setCompanyScopePermissions
public static void setCompanyScopePermissions(HttpPrincipal httpPrincipal,
long scopeGroupId,
long companyId,
java.lang.String name,
long roleId,
java.util.List<java.lang.String> actionIds)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException
- Throws:
com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.SystemException
setGroupScopePermissions
public static void setGroupScopePermissions(HttpPrincipal httpPrincipal,
long scopeGroupId,
long companyId,
long groupId,
java.lang.String name,
long roleId,
java.util.List<java.lang.String> actionIds)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException
- Throws:
com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.SystemException
setIndividualScopePermissions
public static void setIndividualScopePermissions(HttpPrincipal httpPrincipal,
long companyId,
long groupId,
java.lang.String name,
long primKey,
long roleId,
java.util.List<java.lang.String> actionIds)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException
- Throws:
com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.SystemException
setIndividualScopePermissions
public static void setIndividualScopePermissions(HttpPrincipal httpPrincipal,
long companyId,
long groupId,
java.lang.String name,
long primKey,
java.util.Map<java.lang.Long,java.lang.String[]> roleIdsToActionIds)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException
- Throws:
com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.SystemException