Interface IPortalsApi
- 
public interface IPortalsApiHigh-level methods for retrieving available user portals.- Since:
 - 8.2.0
 - Author:
 - XIMA MEDIA GmbH
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IUserPortalResponse<de.xima.fc.api.rest.pub.client.user_portal.model.UserPortalResource>byAlias(IUserPortalInvocationContext ctx, String portalAlias)Gets a user portal by its alias.IUserPortalResponse<de.xima.fc.api.rest.pub.client.user_portal.model.UserPortalResource>byUuid(IUserPortalInvocationContext ctx, UUID portalUuid)Gets a user portal by its uuid. 
 - 
 
- 
- 
Method Detail
- 
byAlias
IUserPortalResponse<de.xima.fc.api.rest.pub.client.user_portal.model.UserPortalResource> byAlias(IUserPortalInvocationContext ctx, String portalAlias)
Gets a user portal by its alias.- Parameters:
 ctx- Invocation context for communicating with the user portal REST API.portalAlias- The alias of the portal to retrieve.- Returns:
 - The user portal with the given alias, 
nullif no such portal exists. 
 
- 
byUuid
IUserPortalResponse<de.xima.fc.api.rest.pub.client.user_portal.model.UserPortalResource> byUuid(IUserPortalInvocationContext ctx, UUID portalUuid)
Gets a user portal by its uuid.- Parameters:
 ctx- Invocation context for communicating with the user portal REST API.portalUuid- the UUID of the portal to retrieve.- Returns:
 - The user portal with the given alias, 
nullif no such portal exists. 
 
 - 
 
 -