View Javadoc
1   package org.kuali.ole.deliver.notice.noticeFormatters;
2   
3   import org.kuali.ole.deliver.bo.OleDeliverRequestBo;
4   
5   /**
6    * Created by maheswarang on 6/25/15.
7    */
8   public class OnHoldRequestEmailContentFormatter extends RequestEmailContentFormatter {
9       @Override
10      public String getCustomItemHeaderInfo(OleDeliverRequestBo oleDeliverRequestBo) {
11          return null;
12      }
13  
14      @Override
15      public String getCustomItemFooterInfo(OleDeliverRequestBo oleDeliverRequestBo) {
16          return "<TR><TD>Hold Expiration Date :</TD><TD>" + (oleDeliverRequestBo.getHoldExpirationDate() != null ? oleDeliverRequestBo.getHoldExpirationDate() : "") + "</TD></TR>";
17      }
18  }