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