View Javadoc

1   package org.kuali.ole.ingest.function;
2   
3   import org.kuali.rice.krms.framework.engine.Function;
4   
5   import java.text.DateFormat;
6   import java.text.ParseException;
7   import java.text.SimpleDateFormat;
8   import java.util.ArrayList;
9   import java.util.Date;
10  
11  /**
12   * PatronMembershipExpiration is used for validating checkMembershipExpirationDate
13   */
14  public class OleCurrentDateComparison implements Function {
15      /**
16       * This method takes the request and invoke the methods to checkMembershipExpirationDate.
17       * @param arguments
18       * @return  Object
19       */
20      @Override
21      public Object invoke(Object... arguments) {
22          Object argument = arguments[0];
23          Object object = ((ArrayList) argument).get(0);
24          Date expirationDate = null;
25          if(object instanceof String){
26              DateFormat formatter = new SimpleDateFormat("dd-MM-yyyy hh:mm:ss");
27              try {
28                  expirationDate= (Date)formatter.parse((String)object);
29              } catch (ParseException e) {
30                  e.printStackTrace();
31              }
32  
33          }else{
34              expirationDate =(Date)((ArrayList) argument).get(0);
35          }
36  
37          return checkMembershipExpirationDate(expirationDate);
38      }
39  
40      /**
41       *  This method check the membership ExpiryDate with current date.
42       * @param expDate
43       * @return  boolean
44       */
45      private boolean checkMembershipExpirationDate(Date expDate){
46          Date curDat = new Date();
47          if(expDate!=null && curDat.compareTo(expDate)>=0){
48              return  true;
49          }
50          return false;
51      }
52  }