summaryrefslogtreecommitdiffstats
path: root/authz-batch/src/main/java/com/att/authz/actions/ActionPuntDAO.java
blob: 3f521f176da93e7fede5632687bf1871a3088620 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*******************************************************************************
 * Copyright (c) 2016 AT&T Intellectual Property. All rights reserved.
 *******************************************************************************/
package com.att.authz.actions;

import java.io.IOException;
import java.security.SecureRandom;
import java.util.Date;
import java.util.GregorianCalendar;

import com.att.authz.env.AuthzTrans;
import org.onap.aaf.inno.env.APIException;
import com.datastax.driver.core.Cluster;

public abstract class ActionPuntDAO<T, RV> extends ActionDAO<T, RV> {
	private static final SecureRandom random = new SecureRandom();
	private int months, range;
	protected static final Date now = new Date();

	public ActionPuntDAO(AuthzTrans trans, Cluster cluster, int months, int range) throws APIException, IOException {
		super(trans, cluster);
		this.months = months;
		this.range = range;
	}

	public ActionPuntDAO(AuthzTrans trans, ActionDAO<?, ?> predecessor, int months, int range) {
		super(trans, predecessor);
		this.months = months;
		this.range = range;
	}
	

	protected Date puntDate() {
		GregorianCalendar temp = new GregorianCalendar();
		temp.setTime(now);
		if(range>0) {
			int forward = months+Math.abs(random.nextInt()%range);
			temp.add(GregorianCalendar.MONTH, forward);
			temp.add(GregorianCalendar.DAY_OF_MONTH, (random.nextInt()%30)-15);
		}
		return temp.getTime();
		
	}

}