Tabnine Logo
Department.getOrg
Code IndexAdd Tabnine to your IDE (free)

How to use
getOrg
method
in
org.kuali.kpme.core.api.department.Department

Best Java code snippets using org.kuali.kpme.core.api.department.Department.getOrg (Showing top 3 results out of 315)

origin: org.kuali.kpme/kpme-pm-impl

    department.getOrg()));
Department department = HrServiceLocator.getDepartmentService().getDepartment(position.getPrimaryDepartment(),position.getGroupKeyCode(),position.getEffectiveLocalDate());
orgQualifiers.add(
  Collections.singletonMap(KPMERoleMemberAttribute.ORGANIZATION.getRoleMemberAttributeName(), String.valueOf(department.getOrg())));
Department department = HrServiceLocator.getDepartmentService().getDepartment(((PositionBo)doc).getPrimaryDepartment(),((PositionBo)doc).getGroupKeyCode(),((PositionBo)doc).getEffectiveLocalDate());
orgQualifiers.add(
    Collections.singletonMap(KPMERoleMemberAttribute.ORGANIZATION.getRoleMemberAttributeName(), String.valueOf(department.getOrg())));
origin: org.kuali.kpme/kpme-pm-impl

@Override
protected void addRoleQualification(Object dataObject, Map<String, String> attributes) {
  super.addRoleQualification(dataObject, attributes);
  if ( (dataObject instanceof PositionBo) || (dataObject instanceof PositionContract) || (dataObject instanceof Position)) {
    PositionBo positionObj = (PositionBo) dataObject;
    if (positionObj != null) {
      Department departmentObj = HrServiceLocator.getDepartmentService().getDepartment(positionObj.getPrimaryDepartment(), positionObj.getGroupKeyCode(), positionObj.getEffectiveLocalDate());
      if (departmentObj != null) {
        attributes.put(KPMERoleMemberAttribute.INSTITUION.getRoleMemberAttributeName(), departmentObj.getGroupKey().getInstitutionCode());
        attributes.put(KPMERoleMemberAttribute.DEPARTMENT.getRoleMemberAttributeName(), departmentObj.getDept());
        attributes.put(KPMERoleMemberAttribute.LOCATION.getRoleMemberAttributeName(), departmentObj.getGroupKey().getLocationId());
        attributes.put(KPMERoleMemberAttribute.ORGANIZATION.getRoleMemberAttributeName(), departmentObj.getOrg());
        attributes.put(KPMERoleMemberAttribute.GROUP_KEY_CODE.getRoleMemberAttributeName(), departmentObj.getGroupKeyCode());
      } else {
        attributes.put(KPMERoleMemberAttribute.INSTITUION.getRoleMemberAttributeName(), "%");
        attributes.put(KPMERoleMemberAttribute.DEPARTMENT.getRoleMemberAttributeName(), "%");
        attributes.put(KPMERoleMemberAttribute.LOCATION.getRoleMemberAttributeName(), "%");
        attributes.put(KPMERoleMemberAttribute.ORGANIZATION.getRoleMemberAttributeName(), "%");
        attributes.put(KPMERoleMemberAttribute.GROUP_KEY_CODE.getRoleMemberAttributeName(), "%");
      }
    }
  }
}
origin: org.kuali.kpme/kpme-pm-impl

Department deptObj = HrServiceLocator.getDepartmentService().getDepartment(positionDepartment.getDepartment(),positionDepartment.getGroupKeyCode(),position.getEffectiveLocalDate());
orgQualifiers.add(
    Collections.singletonMap(KPMERoleMemberAttribute.ORGANIZATION.getRoleMemberAttributeName(), String.valueOf(deptObj.getOrg())));
Department deptObj = HrServiceLocator.getDepartmentService().getDepartment(positionDepartment.getDepartment(),positionDepartment.getGroupKeyCode(),((PositionBo)doc).getEffectiveLocalDate());
orgQualifiers.add(
    Collections.singletonMap(KPMERoleMemberAttribute.ORGANIZATION.getRoleMemberAttributeName(), String.valueOf(deptObj.getOrg())));
org.kuali.kpme.core.api.departmentDepartmentgetOrg

Popular methods of Department

  • getDept
  • getGroupKeyCode
  • getGroupKey
  • <init>
  • isPayrollApproval

Popular in Java

  • Reactive rest calls using spring rest template
  • onRequestPermissionsResult (Fragment)
  • getExternalFilesDir (Context)
  • notifyDataSetChanged (ArrayAdapter)
  • Graphics2D (java.awt)
    This Graphics2D class extends the Graphics class to provide more sophisticated control overgraphics
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • LinkedHashMap (java.util)
    LinkedHashMap is an implementation of Map that guarantees iteration order. All optional operations a
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • ImageIO (javax.imageio)
  • Join (org.hibernate.mapping)
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now