Searched defs:timestamp (Results 1 - 25 of 69) sorted by relevance

123

/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-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-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/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;
/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-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/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-core/src/main/java/com/sun/identity/tools/nightly/
H A DNightlyIndexHtml.java60 String timestamp,
76 Object[] param = {timestamp};
58 create( String baseDir, String timestamp, String indexURL ) argument
/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/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/openam/openam-core/src/main/java/com/iplanet/dpro/session/service/
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/openam-core/src/main/java/com/sun/identity/tools/nightly/
H A DNightlyIndexHtml.java60 String timestamp,
76 Object[] param = {timestamp};
58 create( String baseDir, String timestamp, String indexURL ) argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/soapbinding/
H A DConsentHeader.java52 private Date timestamp = null; field in class:ConsentHeader
96 timestamp = DateUtils.stringToDate(str);
119 * Returns value of <code>timestamp</code> attribute.
121 * @return value of <code>timestamp</code> attribute
124 return timestamp;
208 if (timestamp != null) {
211 DateUtils.toUTCDateFormat(timestamp));
H A DCorrelationHeader.java57 private Date timestamp = null; field in class:CorrelationHeader
67 timestamp = new Date();
118 timestamp = DateUtils.stringToDate(str);
149 * Returns value of <code>timestamp</code> attribute.
151 * @return value of <code>timestamp</code> attribute
154 return timestamp;
235 DateUtils.toUTCDateFormat(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-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/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/test/java/org/forgerock/openidm/maintenance/upgrade/
H A DStaticFileUpdateTest.java59 private static final long timestamp = new Date().getTime(); field in class:StaticFileUpdateTest
65 return Paths.get(file + OLD_SUFFIX + timestamp);
69 return Paths.get(file + NEW_SUFFIX + timestamp);
112 return new StaticFileUpdate(fileStateChecker, tempPath, archive, oldVersion, timestamp);
/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/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

Completed in 228 milliseconds

123