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."); }
public Event setUser(User user) { this.user = user; return this; }
private void InitClass(User user, DetectionPoint detectionPoint, string timestamp, string detectionSystemId) { setUser(user); setDetectionPoint(detectionPoint); setTimestamp(timestamp); setDetectionSystemId(detectionSystemId); }
public Event (User user, DetectionPoint detectionPoint, string timestamp, string detectionSystemId) { InitClass(user, detectionPoint, timestamp, detectionSystemId); }
public Event (User user, DetectionPoint detectionPoint, string detectionSystemId) { InitClass(user, detectionPoint, DateUtils.getCurrentTimestampAsString(), detectionSystemId); }
public Response setUser(User user) { this.user = user; return this; }
public Response (User user, string action, string timestamp, string detectionSystemId, Interval interval) { InitClass(user, action, timestamp, detectionSystemId, interval); }
public Response (User user, string action, string detectionSystemId, Interval interval) { InitClass(user, action, DateUtils.getCurrentTimestampAsString(), detectionSystemId, interval); }
public Response (User user, string action, string timestamp, string detectionSystemId) { InitClass(user, action, timestamp, detectionSystemId, null); }
public Attack setUser(User user) { this.user = user; return this; }