Searched refs:timestamp (Results 1 - 25 of 165) sorted by relevance

1234567

/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DSessionLogging.java97 public void logEvent(SessionInfo sessionInfo, SessionEventType eventType, long timestamp) { argument
100 logEvent(sessionInfo, "SESSION_CREATED", timestamp);
103 logEvent(sessionInfo, "SESSION_IDLE_TIMED_OUT", timestamp);
106 logEvent(sessionInfo, "SESSION_MAX_TIMEOUT", timestamp);
109 logEvent(sessionInfo, "SESSION_LOGOUT", timestamp);
112 logEvent(sessionInfo, "SESSION_DESTROYED", timestamp);
115 logEvent(sessionInfo, "SESSION_PROPERTY_CHANGED", timestamp);
118 logEvent(sessionInfo, "SESSION_QUOTA_EXHAUSTED", timestamp);
121 logEvent(sessionInfo, "SESSION_PROTECTED_PROPERTY_ERROR", timestamp);
124 logEvent(sessionInfo, "SESSION_UNKNOWN_EVENT", timestamp);
129 logEvent(SessionInfo sessionInfo, String logMessageId, long timestamp) argument
[all...]
H A DSessionAuditor.java84 public void auditActivity(SessionInfo sessionInfo, SessionEventType eventType, long timestamp) { argument
87 auditActivity(sessionInfo, AM_SESSION_CREATED, CREATE, timestamp);
90 auditActivity(sessionInfo, AM_SESSION_IDLE_TIMED_OUT, DELETE, timestamp);
93 auditActivity(sessionInfo, AM_SESSION_MAX_TIMED_OUT, DELETE, timestamp);
96 auditActivity(sessionInfo, AM_SESSION_LOGGED_OUT, DELETE, timestamp);
99 auditActivity(sessionInfo, AM_SESSION_DESTROYED, DELETE, timestamp);
102 auditActivity(sessionInfo, AM_SESSION_PROPERTY_CHANGED, UPDATE, timestamp);
109 private void auditActivity(SessionInfo sessionInfo, EventName eventName, ConfigOperation operation, long timestamp) { argument
120 .timestamp(timestamp)
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/adapters/
H A DOAuthValues.java55 * @param values A Collection containing a single timestamp to convert.
56 * The timestamp must be in milliseconds from the epoch.
57 * @return A Calendar that represents this timestamp.
64 long timestamp = Long.parseLong(dateString);
67 calendar.setTimeInMillis(timestamp);
73 * @param timestamp Calendar representing the timestamp.
74 * @return A non null non empty collection of a single timestamp.
76 public Collection<String> fromDateValue(Calendar timestamp) { argument
77 return Arrays.asList(Long.toString(timestamp
[all...]
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/adapters/
H A DOAuthValues.java58 * @param values A Collection containing a single timestamp to convert.
59 * The timestamp must be in milliseconds from the epoch.
60 * @return A Calendar that represents this timestamp.
67 long timestamp = Long.parseLong(dateString);
70 calendar.setTimeInMillis(timestamp);
76 * @param timestamp Calendar representing the timestamp.
77 * @return A non null non empty collection of a single timestamp.
79 public Collection<String> fromDateValue(Calendar timestamp) { argument
80 return Arrays.asList(Long.toString(timestamp
[all...]
/forgerock/openidm-v4/openidm-util/src/main/java/org/forgerock/openidm/util/
H A DDateUtil.java29 * Manages timestamp strings in ISO8601 format
105 * Generate a formatted timestamp for the current time.
107 * @return String containing a timestamp
118 * Formats a given DateTime into a timestamp.
122 * @return String containing the formatted timestamp
129 * Formats a given date into a timestamp.
133 * @return String containing the formatted timestamp
141 * Parses an ISO8601 compliant timestamp into a DateTime object.
143 * @param timestamp
144 * timestamp t
147 parseTimestamp(String timestamp) argument
168 parseIfDate(String timestamp) argument
[all...]
/forgerock/openidm-v4/openidm-maintenance/src/main/java/org/forgerock/openidm/maintenance/upgrade/
H A DStaticFileUpdate.java43 private final long timestamp; field in class:StaticFileUpdate
46 final ProductVersion currentVersion, final long timestamp) {
52 this.timestamp = timestamp;
83 destination = root.resolve(path.toString() + OLD_SUFFIX + timestamp);
117 final Path destination = root.resolve(path.toString() + NEW_SUFFIX + timestamp);
45 StaticFileUpdate(final FileStateChecker fileStateChecker, final Path openidmRoot, final Archive archive, final ProductVersion currentVersion, final long timestamp) argument
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/replication/server/changelog/je/
H A DReplicaCursorTest.java44 private int timestamp; field in class:ReplicaCursorTest
50 timestamp = 1;
67 final UpdateMsg updateMsg = new FakeUpdateMsg(timestamp++);
83 final CSN offlineCSN = new CSN(timestamp++, 1, 1);
97 final UpdateMsg updateMsg = new FakeUpdateMsg(timestamp++);
100 final CSN offlineCSN = new CSN(timestamp++, 1, 1);
116 final CSN outdatedOfflineCSN = new CSN(timestamp++, 1, 1);
118 final UpdateMsg updateMsg = new FakeUpdateMsg(timestamp++);
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/replication/server/changelog/je/
H A DReplicaCursorTest.java44 private int timestamp; field in class:ReplicaCursorTest
50 timestamp = 1;
67 final UpdateMsg updateMsg = new FakeUpdateMsg(timestamp++);
83 final CSN offlineCSN = new CSN(timestamp++, 1, 1);
97 final UpdateMsg updateMsg = new FakeUpdateMsg(timestamp++);
100 final CSN offlineCSN = new CSN(timestamp++, 1, 1);
116 final CSN outdatedOfflineCSN = new CSN(timestamp++, 1, 1);
118 final UpdateMsg updateMsg = new FakeUpdateMsg(timestamp++);
/forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/utils/
H A DTimeUtils.java43 * @param timestamp Non null timestamp to convert.
46 public static long toUnixTime(Calendar timestamp) { argument
47 return timestamp.getTimeInMillis() / 1000L;
57 * @param unixTime A Unix timestamp.
58 * @return Non null Calendar representing this timestamp.
71 * @param unixTime A Unix timestamp in the given time units.
72 * @param timeUnit The time units of the timestamp.
73 * @return Non null Calendar representing this timestamp.
84 * Generates the current timestamp i
[all...]
/forgerock/openam-v13/openam-audit/openam-audit-core/src/main/java/org/forgerock/openam/audit/
H A DAMAuditEventBuilder.java74 * @param timestamp The timestamp.
77 T timestamp(long timestamp); argument
/forgerock/openam-v13/openam-audit/openam-audit-core/src/test/java/org/forgerock/openam/audit/
H A DAMActivityAuditEventBuilderTest.java33 .timestamp(1436389263629L)
50 .timestamp(1436389263629L)
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/replication/server/changelog/file/
H A DReplicaCursorTest.java45 private int timestamp; field in class:ReplicaCursorTest
51 timestamp = 1;
68 final UpdateMsg updateMsg = new FakeUpdateMsg(timestamp++);
84 final CSN offlineCSN = new CSN(timestamp++, 1, 1);
98 final UpdateMsg updateMsg = new FakeUpdateMsg(timestamp++);
101 final CSN offlineCSN = new CSN(timestamp++, 1, 1);
117 final CSN outdatedOfflineCSN = new CSN(timestamp++, 1, 1);
119 final UpdateMsg updateMsg = new FakeUpdateMsg(timestamp++);
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/utils/
H A DTimeUtils.java50 * @param timestamp Non null timestamp to convert.
53 public static long toUnixTime(Calendar timestamp) { argument
54 return timestamp.getTimeInMillis() / 1000L;
64 * @param unixTime A Unix timestamp.
65 * @return Non null Calendar representing this timestamp.
78 * @param unixTime A Unix timestamp in the given time units.
79 * @param timeUnit The time units of the timestamp.
80 * @return Non null Calendar representing this timestamp.
91 * Generates the current timestamp i
[all...]
/forgerock/openam/openam-audit/openam-audit-core/src/main/java/org/forgerock/openam/audit/
H A DAMAuditEventBuilder.java74 * @param timestamp The timestamp.
77 T timestamp(long timestamp); argument
/forgerock/openam/openam-audit/openam-audit-core/src/test/java/org/forgerock/openam/audit/
H A DAMActivityAuditEventBuilderTest.java33 .timestamp(1436389263629L)
50 .timestamp(1436389263629L)
/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/sync/impl/
H A DAbstractSyncAuditEventBuilder.java41 public static final String TIMESTAMP = "timestamp";
172 * Saves the timestamp on the event.
174 * @param timestamp
178 public T timestamp(String timestamp) { argument
179 jsonValue.put(TIMESTAMP, timestamp);
/forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/shared/monitoring/
H A DRateWindow.java66 * @param timestamp The millisecond timestamp of the event.
68 public void incrementForTimestamp(final long timestamp) { argument
69 long index = getIndexForTimestamp(timestamp);
165 * Converts the millisecond timestamp into a normalised sample rate.
167 * @param timestamp The millisecond timestamp.
170 private long getIndexForTimestamp(final long timestamp) { argument
171 return timestamp / sampleRate;
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/shared/monitoring/
H A DRateWindow.java66 * @param timestamp The millisecond timestamp of the event.
68 public void incrementForTimestamp(final long timestamp) { argument
69 long index = getIndexForTimestamp(timestamp);
165 * Converts the millisecond timestamp into a normalised sample rate.
167 * @param timestamp The millisecond timestamp.
170 private long getIndexForTimestamp(final long timestamp) { argument
171 return timestamp / sampleRate;
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/common/
H A DChangeNumberGenerator.java47 * @param timestamp time to start with.
49 public ChangeNumberGenerator(int serverID2, long timestamp) argument
51 this.lastTime = timestamp;
/forgerock/opendj2/src/server/org/opends/server/replication/common/
H A DCSNGenerator.java54 * @param timestamp
57 public CSNGenerator(int serverId, long timestamp) argument
59 this.lastTime = timestamp;
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/common/
H A DChangeNumberGenerator.java47 * @param timestamp time to start with.
49 public ChangeNumberGenerator(int serverID2, long timestamp) argument
51 this.lastTime = timestamp;
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/common/
H A DChangeNumberGenerator.java47 * @param timestamp time to start with.
49 public ChangeNumberGenerator(int serverID2, long timestamp) argument
51 this.lastTime = timestamp;
/forgerock/opendj2-hg/src/server/org/opends/server/replication/common/
H A DCSNGenerator.java54 * @param timestamp
57 public CSNGenerator(int serverId, long timestamp) argument
59 this.lastTime = timestamp;
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/query/
H A DAttributeType.java55 Date timestamp = DateUtils.stringToDate(value.toString());
56 return new SearchFilter(field, timestamp.getTime(), operator);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/common/
H A DCSNGenerator.java54 * @param timestamp
57 public CSNGenerator(int serverId, long timestamp) argument
59 this.lastTime = timestamp;

Completed in 557 milliseconds

1234567