Uses of Class
com.avoka.fc.core.entity.Permission
-
Packages that use Permission 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. -
-
Uses of Permission in com.avoka.fc.core.dao
Methods in com.avoka.fc.core.dao that return Permission Modifier and Type Method Description Permission
PermissionDao. getPermission(Object id)
Return the permission with the specified OIDPermission
PermissionDao. getPermissionByName(String name, String portalId)
Return the permission with the given namePermission
PermissionDao. getPermissionByNameAndPortal(String name, Portal portal)
Return the permission with the given name belonging to the portal with the given namePermission
PermissionDao. getPermissionByNameAndPortal(String name, String portalName)
Return the permission with the given name belonging to the portal with the given nameMethods in com.avoka.fc.core.dao that return types with arguments of type Permission Modifier and Type Method Description List<Permission>
PermissionDao. getPermissionsForPortal(String portalId)
Return all permissions for a specific portal, ordered by nameList<Permission>
PermissionDao. getPermissionsForPortalName(String portalName)
Return all permissions for a specific portal, ordered by name -
Uses of Permission in com.avoka.fc.core.entity.auto
Fields in com.avoka.fc.core.entity.auto with type parameters of type Permission Modifier and Type Field Description static org.apache.cayenne.exp.Property<Permission>
_RolePermission. PERMISSION
Provides the 'PERMISSION' property.static org.apache.cayenne.exp.Property<List<Permission>>
_Portal. PERMISSIONS
Provides the 'PERMISSIONS' property.Methods in com.avoka.fc.core.entity.auto that return Permission Modifier and Type Method Description Permission
_RolePermission. getPermission()
Return the Permission.Methods in com.avoka.fc.core.entity.auto that return types with arguments of type Permission Modifier and Type Method Description List<Permission>
_Portal. getPermissions()
Return the Permissions.Methods in com.avoka.fc.core.entity.auto with parameters of type Permission Modifier and Type Method Description void
_Portal. addToPermissions(Permission obj)
Add the Permissions object.void
_Portal. removeFromPermissions(Permission obj)
Remove the Permissions object.void
_RolePermission. setPermission(Permission permission)
Set the Permission. -
Uses of Permission in com.avoka.fc.core.service.test
Methods in com.avoka.fc.core.service.test that return Permission Modifier and Type Method Description Permission
MockEntityService. addPortalPermission(String permissionName, Portal portal)
Add a permission for a portal, if it doesn't already exist.Permission
MockEntityService. createPermission(String permissionName, Portal portal)
Create a permission with the given name and portal.Method parameters in com.avoka.fc.core.service.test with type arguments of type Permission Modifier and Type Method Description Role
MockEntityService. createRole(String roleName, Set<Permission> permissionSet)
Create an active role with the given name and permissions.
-