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
13
14 public class OleCurrentDateComparison implements Function {
15
16
17
18
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
42
43
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 }