001/** 002 * Copyright 2004-2015 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016package org.kuali.kpme.tklm.leave.workflow; 017 018import org.kuali.kpme.core.api.assignment.AssignmentContract; 019import org.kuali.kpme.tklm.api.leave.workflow.LeaveRequestDocumentContract; 020import org.kuali.kpme.tklm.leave.block.LeaveBlock; 021import org.kuali.kpme.tklm.leave.service.LmServiceLocator; 022import org.kuali.rice.krad.document.TransactionalDocumentBase; 023 024import java.util.Collections; 025import java.util.List; 026 027public class LeaveRequestDocument extends TransactionalDocumentBase implements LeaveRequestDocumentContract { 028 029 private static final long serialVersionUID = 6036885548516978879L; 030 public static final String LEAVE_REQUEST_DOCUMENT_TYPE = "LeaveRequestDocument"; 031 private String lmLeaveBlockId; 032 private String actionCode; 033 private String description; 034 035 public LeaveRequestDocument() { } 036 037 public LeaveRequestDocument(String leaveBlockId) { 038 this.lmLeaveBlockId = leaveBlockId; 039 } 040 041 @Override 042 public boolean getAllowsCopy() { 043 return false; 044 } 045 046 public String getLmLeaveBlockId() { 047 return lmLeaveBlockId; 048 } 049 050 public void setLmLeaveBlockId(String lmLeaveBlockId) { 051 this.lmLeaveBlockId = lmLeaveBlockId; 052 } 053 054 public String getActionCode() { 055 return actionCode; 056 } 057 058 public void setActionCode(String actionCode) { 059 this.actionCode = actionCode; 060 } 061 062 public String getDescription() { 063 return description; 064 } 065 066 public void setDescription(String description) { 067 this.description = description; 068 } 069 070 public LeaveBlock getLeaveBlock() { 071 return getLmLeaveBlockId() == null ? null : LmServiceLocator.getLeaveBlockService().getLeaveBlock(getLmLeaveBlockId()); 072 } 073 074 075 @Override 076 public List<? extends AssignmentContract> getAssignments() { 077 LeaveBlock lb = getLeaveBlock(); 078 return lb != null ? lb.getAssignments() : Collections.<AssignmentContract>emptyList(); 079 } 080}