Package org.alfresco.rest.api.model
Interface Network
-
- All Known Implementing Classes:
NetworkImpl
,PersonNetwork
public interface Network
Represents a cloud network (account).- Author:
- steveglover
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Date
getCreatedAt()
Gets the date the account was createdjava.lang.String
getId()
java.lang.Boolean
getIsEnabled()
Gets whether an account is enabled or not.java.lang.Boolean
getPaidNetwork()
java.util.List<Quota>
getQuotas()
java.lang.String
getSubscriptionLevel()
Gets the subscription level.
-
-
-
Method Detail
-
getId
java.lang.String getId()
-
getCreatedAt
java.util.Date getCreatedAt()
Gets the date the account was created- Returns:
- The account creation date
-
getQuotas
java.util.List<Quota> getQuotas()
-
getIsEnabled
java.lang.Boolean getIsEnabled()
Gets whether an account is enabled or not.- Returns:
- true = account is enabled, false = account is disabled
-
getSubscriptionLevel
java.lang.String getSubscriptionLevel()
Gets the subscription level.- Returns:
- String
-
getPaidNetwork
java.lang.Boolean getPaidNetwork()
-
-