org.kuali.kpme.core.service.permission
Class HRPermissionServiceImpl

java.lang.Object
  extended by org.kuali.kpme.core.service.permission.HrPermissionServiceBase
      extended by org.kuali.kpme.core.service.permission.HRPermissionServiceImpl
All Implemented Interfaces:
HRPermissionService

public class HRPermissionServiceImpl
extends HrPermissionServiceBase
implements HRPermissionService


Constructor Summary
HRPermissionServiceImpl()
           
 
Method Summary
 boolean canApproveCalendarDocument(String principalId, CalendarDocument calendarDocument)
          Checks whether the given principalId can approve the LeaveCalendar specified by documentId.
 boolean canEditCalendarDocument(String principalId, CalendarDocument calendarDocument)
          Checks whether the given principalId can edit the LeaveCalendar specified by documentId.
 boolean canEditCalendarDocumentAssignment(String principalId, CalendarDocument calendarDocument, Assignment assignment)
          Checks whether the given principalId can edit the given assignment attached to the LeaveCalendar specified by documentId.
 boolean canSubmitCalendarDocument(String principalId, CalendarDocument calendarDocument)
          Checks whether the given principalId can submit the LeaveCalendar specified by documentId.
 boolean canSuperUserAdministerCalendarDocument(String principalId, CalendarDocument calendarDocument)
          Checks whether the given principalId can super user administer the LeaveCalendar specified by documentId.
 boolean canViewCalendarDocument(String principalId, CalendarDocument calendarDocument)
          Checks whether the given principalId can view the LeaveCalendar specified by documentId.
 boolean canViewCalendarDocumentAssignment(String principalId, CalendarDocument calendarDocument, Assignment assignment)
          Checks whether the given principalId can view the given assignment attached to the LeaveCalendar specified by documentId.
 boolean canViewLeaveTabsWithEStatus()
           
 boolean canViewLeaveTabsWithNEStatus()
           
 boolean canViewTimeTabs()
           
 CalendarBlockPermissions getLeaveBlockPermissions(String blockId)
           
 CalendarBlockPermissions getTimeBlockPermissions(String blockId)
           
 boolean isAuthorized(String principalId, String permissionName, org.joda.time.DateTime asOfDate)
          Checks whether the given principalId is authorized to perform permissionName.
 boolean isAuthorized(String principalId, String permissionName, Map<String,String> qualification, org.joda.time.DateTime asOfDate)
          Checks whether the given principalId is authorized to perform permissionName for the given role qualifications.
 boolean isAuthorizedByTemplate(String principalId, String namespaceCode, String permissionTemplateName, Map<String,String> permissionDetails, org.joda.time.DateTime asOfDate)
          Checks whether the given principalId is authorized to perform any permission templated by permissionTemplateName for the given permission details.
 boolean isAuthorizedByTemplate(String principalId, String namespaceCode, String permissionTemplateName, Map<String,String> permissionDetails, Map<String,String> qualification, org.joda.time.DateTime asOfDate)
          Checks whether the given principalId is authorized to perform any permission templated by permissionTemplateName for the given permission details and role qualifications.
 CalendarBlockPermissions updateLeaveBlockPermissions(CalendarBlockPermissions calendarBlockPermissions)
           
 CalendarBlockPermissions updateTimeBlockPermissions(CalendarBlockPermissions calendarBlockPermissions)
           
 
Methods inherited from class org.kuali.kpme.core.service.permission.HrPermissionServiceBase
getDepartmentService, getKimTypeInfoService, getMatchingPermissions, getPermissionService, getPermissionTypeService, getPermissionTypeServicesByTemplateId, getRoleService, getWorkAreaService, groupPermissionsByTemplate, isAuthorizedByTemplate, isAuthorizedByTemplate, isAuthorizedByTemplate, isAuthorizedByTemplate, isAuthorizedByTemplateInDepartment, isAuthorizedByTemplateInDepartment, isAuthorizedByTemplateInLocation, isAuthorizedByTemplateInLocation, isAuthorizedByTemplateInWorkArea, isAuthorizedByTemplateInWorkArea, isAuthorizedInDepartment, isAuthorizedInLocation, isAuthorizedInWorkArea, setDepartmentService, setKimTypeInfoService, setPermissionService, setRoleService, setWorkAreaService
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.kuali.kpme.core.service.permission.HRPermissionService
isAuthorizedByTemplateInDepartment, isAuthorizedByTemplateInLocation, isAuthorizedByTemplateInWorkArea, isAuthorizedInDepartment, isAuthorizedInLocation, isAuthorizedInWorkArea
 

Constructor Detail

HRPermissionServiceImpl

public HRPermissionServiceImpl()
Method Detail

isAuthorized

public boolean isAuthorized(String principalId,
                            String permissionName,
                            org.joda.time.DateTime asOfDate)
Description copied from interface: HRPermissionService
Checks whether the given principalId is authorized to perform permissionName.

Specified by:
isAuthorized in interface HRPermissionService
Parameters:
principalId - The person to check the permission for
permissionName - The name of the permission
asOfDate - The effective date of the permission
Returns:
true if principalId is authorized to perform permissionName, false otherwise.

isAuthorized

public boolean isAuthorized(String principalId,
                            String permissionName,
                            Map<String,String> qualification,
                            org.joda.time.DateTime asOfDate)
Description copied from class: HrPermissionServiceBase
Checks whether the given principalId is authorized to perform permissionName for the given role qualifications.

Specified by:
isAuthorized in interface HRPermissionService
Specified by:
isAuthorized in class HrPermissionServiceBase
Parameters:
principalId - The person to check the permission for
permissionName - The name of the permission
qualification - The map of role qualifiers for the person
asOfDate - The effective date of the permission
Returns:
true if principalId is authorized to perform permissionName, false otherwise.

isAuthorizedByTemplate

public boolean isAuthorizedByTemplate(String principalId,
                                      String namespaceCode,
                                      String permissionTemplateName,
                                      Map<String,String> permissionDetails,
                                      org.joda.time.DateTime asOfDate)
Description copied from interface: HRPermissionService
Checks whether the given principalId is authorized to perform any permission templated by permissionTemplateName for the given permission details.

Specified by:
isAuthorizedByTemplate in interface HRPermissionService
Parameters:
principalId - The person to check the permission for
namespaceCode - The namespace for the permission template
permissionTemplateName - The name of the permission template
permissionDetails - The map of permission details for the permission
asOfDate - The effective date of the permission
Returns:
true if principalId is authorized to perform any permission templated by permissionTemplateName, false otherwise.

isAuthorizedByTemplate

public boolean isAuthorizedByTemplate(String principalId,
                                      String namespaceCode,
                                      String permissionTemplateName,
                                      Map<String,String> permissionDetails,
                                      Map<String,String> qualification,
                                      org.joda.time.DateTime asOfDate)
Description copied from class: HrPermissionServiceBase
Checks whether the given principalId is authorized to perform any permission templated by permissionTemplateName for the given permission details and role qualifications.

Specified by:
isAuthorizedByTemplate in interface HRPermissionService
Specified by:
isAuthorizedByTemplate in class HrPermissionServiceBase
Parameters:
principalId - The person to check the permission for
namespaceCode - The namespace for the permission template
permissionTemplateName - The name of the permission template
permissionDetails - The map of permission details for the permission
qualification - The map of role qualifiers for the person
asOfDate - The effective date of the permission
Returns:
true if principalId is authorized to perform any permission templated by permissionTemplateName, false otherwise.

canApproveCalendarDocument

public boolean canApproveCalendarDocument(String principalId,
                                          CalendarDocument calendarDocument)
Description copied from interface: HRPermissionService
Checks whether the given principalId can approve the LeaveCalendar specified by documentId.

Specified by:
canApproveCalendarDocument in interface HRPermissionService
Parameters:
principalId - The person to check
calendarDocument - The id of the document
Returns:
true if principalId can approve the LeaveCalendar specified by documentId, false otherwise.

canViewCalendarDocument

public boolean canViewCalendarDocument(String principalId,
                                       CalendarDocument calendarDocument)
Description copied from interface: HRPermissionService
Checks whether the given principalId can view the LeaveCalendar specified by documentId.

Specified by:
canViewCalendarDocument in interface HRPermissionService
Parameters:
principalId - The person to check
calendarDocument - The id of the document
Returns:
true if principalId can view the LeaveCalendar specified by documentId, false otherwise.

canViewCalendarDocumentAssignment

public boolean canViewCalendarDocumentAssignment(String principalId,
                                                 CalendarDocument calendarDocument,
                                                 Assignment assignment)
Description copied from interface: HRPermissionService
Checks whether the given principalId can view the given assignment attached to the LeaveCalendar specified by documentId.

Specified by:
canViewCalendarDocumentAssignment in interface HRPermissionService
Parameters:
principalId - The person to check
calendarDocument - The id of the document
assignment - The assignment attached to the document
Returns:
true if principalId can view the given assignment attached to the LeaveCalendar specified by documentId, false otherwise.

canEditCalendarDocument

public boolean canEditCalendarDocument(String principalId,
                                       CalendarDocument calendarDocument)
Description copied from interface: HRPermissionService
Checks whether the given principalId can edit the LeaveCalendar specified by documentId.

Specified by:
canEditCalendarDocument in interface HRPermissionService
Parameters:
principalId - The person to check
calendarDocument - The id of the document
Returns:
true if principalId can edit the LeaveCalendar specified by documentId, false otherwise.

canEditCalendarDocumentAssignment

public boolean canEditCalendarDocumentAssignment(String principalId,
                                                 CalendarDocument calendarDocument,
                                                 Assignment assignment)
Description copied from interface: HRPermissionService
Checks whether the given principalId can edit the given assignment attached to the LeaveCalendar specified by documentId.

Specified by:
canEditCalendarDocumentAssignment in interface HRPermissionService
Parameters:
principalId - The person to check
calendarDocument - The id of the document
assignment - The assignment attached to the document
Returns:
true if principalId can edit the given assignment attached to the LeaveCalendar specified by documentId, false otherwise.

canSubmitCalendarDocument

public boolean canSubmitCalendarDocument(String principalId,
                                         CalendarDocument calendarDocument)
Description copied from interface: HRPermissionService
Checks whether the given principalId can submit the LeaveCalendar specified by documentId.

Specified by:
canSubmitCalendarDocument in interface HRPermissionService
Parameters:
principalId - The person to check
calendarDocument - The id of the document
Returns:
true if principalId can submit the LeaveCalendar specified by documentId, false otherwise.

canSuperUserAdministerCalendarDocument

public boolean canSuperUserAdministerCalendarDocument(String principalId,
                                                      CalendarDocument calendarDocument)
Description copied from interface: HRPermissionService
Checks whether the given principalId can super user administer the LeaveCalendar specified by documentId.

Specified by:
canSuperUserAdministerCalendarDocument in interface HRPermissionService
Parameters:
principalId - The person to check
calendarDocument - The id of the document
Returns:
true if principalId can super user administer the LeaveCalendar specified by documentId, false otherwise.

canViewTimeTabs

public boolean canViewTimeTabs()
Specified by:
canViewTimeTabs in interface HRPermissionService

canViewLeaveTabsWithEStatus

public boolean canViewLeaveTabsWithEStatus()
Specified by:
canViewLeaveTabsWithEStatus in interface HRPermissionService

canViewLeaveTabsWithNEStatus

public boolean canViewLeaveTabsWithNEStatus()
Specified by:
canViewLeaveTabsWithNEStatus in interface HRPermissionService

getTimeBlockPermissions

public CalendarBlockPermissions getTimeBlockPermissions(String blockId)
Specified by:
getTimeBlockPermissions in interface HRPermissionService

updateTimeBlockPermissions

public CalendarBlockPermissions updateTimeBlockPermissions(CalendarBlockPermissions calendarBlockPermissions)
Specified by:
updateTimeBlockPermissions in interface HRPermissionService

getLeaveBlockPermissions

public CalendarBlockPermissions getLeaveBlockPermissions(String blockId)
Specified by:
getLeaveBlockPermissions in interface HRPermissionService

updateLeaveBlockPermissions

public CalendarBlockPermissions updateLeaveBlockPermissions(CalendarBlockPermissions calendarBlockPermissions)
Specified by:
updateLeaveBlockPermissions in interface HRPermissionService


Copyright © 2004-2014 The Kuali Foundation. All Rights Reserved.