001package org.kuali.kpme.edo.api.group; 002 003import org.kuali.kpme.core.api.mo.KpmeEffectiveKeyedDataTransferObject; 004 005/** 006 * <p>EdoGroupTrackingContract interface</p> 007 * 008 */ 009public interface EdoGroupTrackingContract extends KpmeEffectiveKeyedDataTransferObject { 010 011 /** 012 * The identifier of the EdoGroupTracking 013 * 014 * <p> 015 * edoGroupTrackingId of the EdoGroupTracking 016 * <p> 017 * 018 * @return edoGroupTrackingId for EdoGroupTracking 019 */ 020 public String getEdoGroupTrackingId(); 021 022 /** 023 * The department id that the EdoGroupTracking is associated with 024 * 025 * <p> 026 * departmentId of the EdoGroupTracking 027 * <p> 028 * 029 * @return departmentId for EdoGroupTracking 030 */ 031 public String getDepartmentId(); 032 033 /** 034 * The organization code (school id) that the EdoGroupTracking is associated with 035 * 036 * <p> 037 * organizationCode of the EdoGroupTracking 038 * <p> 039 * 040 * @return organizationCode for EdoGroupTracking 041 */ 042 public String getOrganizationCode(); 043 044 /** 045 * The review level name that the EdoGroupTracking is associated with 046 * 047 * <p> 048 * reviewLevelName of the EdoGroupTracking 049 * <p> 050 * 051 * @return reviewLevelName for EdoGroupTracking 052 */ 053 public String getReviewLevelName(); 054 055 /** 056 * The group name that the EdoGroupTracking is associated with 057 * 058 * <p> 059 * groupName of the EdoGroupTracking 060 * <p> 061 * 062 * @return groupName for EdoGroupTracking 063 */ 064 public String getGroupName(); 065 066 /** 067 * The workflow id that the EdoGroupTracking is associated with 068 * 069 * <p> 070 * edoWorkflowId of the EdoGroupTracking 071 * <p> 072 * 073 * @return edoWorkflowId for EdoGroupTracking 074 */ 075 public String getEdoWorkflowId(); 076}