Uses of Class
com.avoka.fc.core.entity.Role
-
Packages that use Role Package Description com.avoka.fc.core.dao Provides the Data Access Objects used by SmartForm Manager.com.avoka.fc.core.entity.auto Provides the SmartForm Manager entity base classes, which are being maintained by Cayenne.com.avoka.fc.core.service.test Provides web automated test services.com.avoka.tm.vo Provides Value Object persistent entity classes. -
-
Uses of Role in com.avoka.fc.core.dao
Methods in com.avoka.fc.core.dao that return Role Modifier and Type Method Description Role
RoleDao. assignDefaultAnonymousPermissions()
Create the pre-defined anonymous role (unless a role with the name defined inANONYMOUS_ROLE
already exists) and assigns it all permissions associated with the Anonymous RoleRole
RoleDao. assignDefaultServiceUserPermissions()
Create the pre-defined service role (unless a role with the name defined inSERVICE_USER_ROLE
already exists) and assigns it all permissions associated with the Service User RoleRole
RoleDao. getRole(Object id)
Return the role with the specified OIDRole
RoleDao. getRoleForName(String name)
Return the role with the specified nameMethods in com.avoka.fc.core.dao that return types with arguments of type Role Modifier and Type Method Description List<Role>
RoleDao. getAssignableRolesForAdmin(UserAccount userAccount)
Return all roles that the given user is allowed to assign to other users, ordered by name Only active roles will be offered.List<Role>
RoleDao. getRoleList(UserAccount userAccount, String keyword, boolean activeOnly)
Return the list of roles matching the specified search criteria, ordered by nameList<Role>
RoleDao. getRoleList(UserAccount userAccount, String keyword, Object portalId, boolean activeOnly)
Return the list of roles matching the specified search criteria, ordered by nameList<Role>
RoleDao. getRoles()
Return all roles, ordered by name -
Uses of Role in com.avoka.fc.core.entity.auto
Fields in com.avoka.fc.core.entity.auto with type parameters of type Role Modifier and Type Field Description static org.apache.cayenne.exp.Property<Role>
_RolePermission. ROLE
Provides the 'ROLE' property.static org.apache.cayenne.exp.Property<Role>
_UserRole. ROLE
Provides the 'ROLE' property.Methods in com.avoka.fc.core.entity.auto that return Role Modifier and Type Method Description Role
_RolePermission. getRole()
Return the Role.Role
_UserRole. getRole()
Return the Role.Methods in com.avoka.fc.core.entity.auto with parameters of type Role Modifier and Type Method Description void
_RolePermission. setRole(Role role)
Set the Role.void
_UserRole. setRole(Role role)
Set the Role. -
Uses of Role in com.avoka.fc.core.service.test
Methods in com.avoka.fc.core.service.test that return Role Modifier and Type Method Description Role
MockEntityService. createRole(String roleName, Set<Permission> permissionSet)
Create an active role with the given name and permissions.Methods in com.avoka.fc.core.service.test with parameters of type Role Modifier and Type Method Description UserRole
MockEntityService. addRoleToUser(UserAccount userAccount, Role role, Date roleExpiryDatetime)
Add a role to a user, with an optional expiry time. -
Uses of Role in com.avoka.tm.vo
Constructors in com.avoka.tm.vo with parameters of type Role Constructor Description Role(Role role)
Create a Role value object.
-