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