Esempio n. 1
0
 private void InitClass(User user, string action, string timestamp, string detectionSystemId, Interval interval) {
     setUser(user);
     setAction(action);
     setTimestamp(timestamp);
     setDetectionSystemId(detectionSystemId);
     setInterval(interval);
 }
Esempio n. 2
0
 public SearchCriteria setUser(User user) {
     this.user = user;
     return this;
 }
Esempio n. 3
0
 /**
  * {@inheritDoc}
  */
 public void disable(User user) {
     logger.Info("The no-op user manager did not disable the user as requested.");
 }
Esempio n. 4
0
 /**
  * {@inheritDoc}
  */
 public void logout(User user) {
     logger.Info("The no-op user manager did not logout the user as requested.");
 }
Esempio n. 5
0
	public Event setUser(User user) {
		this.user = user;
		return this;
	}
Esempio n. 6
0
 private void InitClass(User user, DetectionPoint detectionPoint, string timestamp, string detectionSystemId) {
     setUser(user);
     setDetectionPoint(detectionPoint);
     setTimestamp(timestamp);
     setDetectionSystemId(detectionSystemId);
 }
Esempio n. 7
0
	public Event (User user, DetectionPoint detectionPoint, string timestamp, string detectionSystemId) {
        InitClass(user, detectionPoint, timestamp, detectionSystemId);
	}
Esempio n. 8
0
	public Event (User user, DetectionPoint detectionPoint, string detectionSystemId) {
		InitClass(user, detectionPoint, DateUtils.getCurrentTimestampAsString(), detectionSystemId);
	}
Esempio n. 9
0
	public Response setUser(User user) {
		this.user = user;
		return this;
	}
Esempio n. 10
0
	public Response (User user, string action, string timestamp, string detectionSystemId, Interval interval) {
        InitClass(user, action, timestamp, detectionSystemId, interval);
	}
Esempio n. 11
0
	public Response (User user, string action, string detectionSystemId, Interval interval) {
		InitClass(user, action, DateUtils.getCurrentTimestampAsString(), detectionSystemId, interval);
	}
Esempio n. 12
0
	public Response (User user, string action, string timestamp, string detectionSystemId) {
		InitClass(user, action, timestamp, detectionSystemId, null);
	}
Esempio n. 13
0
	public Attack setUser(User user) {
		this.user = user;
		return this;
	}