Searched refs:interval (Results 1 - 25 of 107) sorted by relevance

12345

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DSPCache.java47 public static int interval = SAML2Constants.CACHE_CLEANUP_INTERVAL_DEFAULT; field in class:SPCache
55 interval = Integer.parseInt(intervalStr);
56 if (interval < 0) {
57 interval =
64 + "invalid cleanup interval. Using default.");
88 interval * 1000, interval * 1000);
96 interval * 1000, interval * 1000);
104 interval * 100
[all...]
H A DIDPCache.java56 * from cleanup interval
59 SPCache.interval * 1000, SPCache.interval * 1000);
69 SPCache.interval * 1000, SPCache.interval * 1000);
84 new PeriodicCleanUpMap(SPCache.interval * 1000,
85 SPCache.interval * 1000);
93 SPCache.interval * 1000, SPCache.interval * 1000);
110 * from cleanup interval
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DSPCache.java49 public static int interval = SAML2Constants.CACHE_CLEANUP_INTERVAL_DEFAULT; field in class:SPCache
55 // if interval is manually configured and if it's less than minimum of 5 mins, then set it to minimum.
57 interval = SystemPropertiesManager.getAsInt(SAML2Constants.CACHE_CLEANUP_INTERVAL, SAML2Constants.CACHE_CLEANUP_INTERVAL_DEFAULT);
58 if (interval < SAML2Constants.CACHE_CLEANUP_INTERVAL_MINIMUM) {
59 SAML2Utils.debug.message("SPCache.constructor: Cleanup interval shouldn't be less than {} seconds."
61 interval = SAML2Constants.CACHE_CLEANUP_INTERVAL_MINIMUM;
81 interval * 1000, interval * 1000);
89 interval * 1000, interval * 100
[all...]
H A DIDPCache.java56 * from cleanup interval
59 SPCache.interval * 1000, SPCache.interval * 1000);
69 SPCache.interval * 1000, SPCache.interval * 1000);
84 new PeriodicCleanUpMap(SPCache.interval * 1000,
85 SPCache.interval * 1000);
93 SPCache.interval * 1000, SPCache.interval * 1000);
110 * from cleanup interval
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/profile/
H A DSPCache.java51 public static int interval = SAML2Constants.CACHE_CLEANUP_INTERVAL_DEFAULT; field in class:SPCache
59 interval = Integer.parseInt(intervalStr);
60 if (interval < 0) {
61 interval =
68 + "invalid cleanup interval. Using default.");
71 assertionByIDCache = new PeriodicCleanUpMap(interval * 1000,
72 interval * 1000);
74 new Date(System.currentTimeMillis() + interval * 1000));
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/profile/
H A DSPCache.java53 public static int interval = SAML2Constants.CACHE_CLEANUP_INTERVAL_DEFAULT; field in class:SPCache
61 interval = Integer.parseInt(intervalStr);
62 if (interval < 0) {
63 interval =
70 + "invalid cleanup interval. Using default.");
73 assertionByIDCache = new PeriodicCleanUpMap(interval * 1000,
74 interval * 1000);
76 new Date(currentTimeMillis() + interval * 1000));
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/monitoring/
H A DSsoServerAuthSvcImpl.java49 * This is the interval over which the authehticate rate will be averaged
52 private long interval; field in class:SsoServerAuthSvcImpl
86 interval = Long.parseLong(intervalValue);
88 debug.message("SsoServerAuthSvcImpl::init interval value is not " +
91 interval = DEFAULT_INTERVAL;
94 if (((interval * 1000) / AVERAGE_RECORD_COUNT) < MINIMUM_FREQUENCY) {
97 frequency = (interval * 1000) / AVERAGE_RECORD_COUNT;
101 debug.message("Monitoring interval set to " + interval + "ms.");
116 if (System.currentTimeMillis() > (lastCheckpoint + (interval * 100
[all...]
H A DLinkTrapGenerator.java52 private int interval = 2000; /* 2 seconds */ field in class:LinkTrapGenerator
141 return Integer.valueOf(interval);
145 interval = val.intValue();
158 sleep(interval);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/monitoring/
H A DSsoServerAuthSvcImpl.java48 * This is the interval over which the authehticate rate will be averaged
51 private long interval; field in class:SsoServerAuthSvcImpl
85 interval = Long.parseLong(intervalValue);
87 debug.message("SsoServerAuthSvcImpl::init interval value is not " +
90 interval = DEFAULT_INTERVAL;
93 if (((interval * 1000) / AVERAGE_RECORD_COUNT) < MINIMUM_FREQUENCY) {
96 frequency = (interval * 1000) / AVERAGE_RECORD_COUNT;
100 debug.message("Monitoring interval set to " + interval + "ms.");
115 if (currentTimeMillis() > (lastCheckpoint + (interval * 100
[all...]
H A DLinkTrapGenerator.java52 private int interval = 2000; /* 2 seconds */ field in class:LinkTrapGenerator
141 return Integer.valueOf(interval);
145 interval = val.intValue();
158 sleep(interval);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/flatfile/
H A DFileObserver.java46 private int interval; field in class:FileObserver
59 interval = Constants.DEFAULT_CACHE_POLLING_TIME;
62 interval = Integer.parseInt(time);
68 interval = interval * 60 * 1000;
99 sleep(interval);
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/log/handlers/syslog/
H A DSyslogHandler.java155 long interval;
157 interval = Long.parseLong(period);
159 interval = LogConstants.BUFFER_TIME_DEFAULT;
161 interval *= 1000;
162 bufferingTask = new TimeBufferingTask(interval);
165 new Date(((System.currentTimeMillis() + interval) / 1000) * 1000));
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/flatfile/
H A DFileObserver.java46 private int interval; field in class:FileObserver
59 interval = Constants.DEFAULT_CACHE_POLLING_TIME;
62 interval = Integer.parseInt(time);
68 interval = interval * 60 * 1000;
99 sleep(interval);
/forgerock/opendj-b2.6/src/server/org/opends/server/extensions/
H A DDiskSpaceMonitor.java71 private final int interval; field in class:DiskSpaceMonitor
85 * @param interval The polling interval for checking free space.
86 * @param unit the time unit of the interval parameter.
92 long fullThreshold, int interval, TimeUnit unit,
97 this.interval = interval;
194 scheduleUpdate(this, 0, interval, unit);
90 DiskSpaceMonitor(String instanceName, File directory, long lowThreshold, long fullThreshold, int interval, TimeUnit unit, DiskSpaceMonitorHandler handler) argument
/forgerock/opendj2/src/server/org/opends/server/extensions/
H A DDiskSpaceMonitor.java70 private final int interval; field in class:DiskSpaceMonitor
84 * @param interval The polling interval for checking free space.
85 * @param unit the time unit of the interval parameter.
91 long fullThreshold, int interval, TimeUnit unit,
96 this.interval = interval;
193 scheduleUpdate(this, 0, interval, unit);
89 DiskSpaceMonitor(String instanceName, File directory, long lowThreshold, long fullThreshold, int interval, TimeUnit unit, DiskSpaceMonitorHandler handler) argument
/forgerock/opendj2.6.2/src/server/org/opends/server/extensions/
H A DDiskSpaceMonitor.java71 private final int interval; field in class:DiskSpaceMonitor
85 * @param interval The polling interval for checking free space.
86 * @param unit the time unit of the interval parameter.
92 long fullThreshold, int interval, TimeUnit unit,
97 this.interval = interval;
194 scheduleUpdate(this, 0, interval, unit);
90 DiskSpaceMonitor(String instanceName, File directory, long lowThreshold, long fullThreshold, int interval, TimeUnit unit, DiskSpaceMonitorHandler handler) argument
/forgerock/opendj2-jel-hg/src/server/org/opends/server/extensions/
H A DDiskSpaceMonitor.java71 private final int interval; field in class:DiskSpaceMonitor
85 * @param interval The polling interval for checking free space.
86 * @param unit the time unit of the interval parameter.
92 long fullThreshold, int interval, TimeUnit unit,
97 this.interval = interval;
194 scheduleUpdate(this, 0, interval, unit);
90 DiskSpaceMonitor(String instanceName, File directory, long lowThreshold, long fullThreshold, int interval, TimeUnit unit, DiskSpaceMonitorHandler handler) argument
/forgerock/opendj2-hg/src/server/org/opends/server/extensions/
H A DDiskSpaceMonitor.java70 private final int interval; field in class:DiskSpaceMonitor
84 * @param interval The polling interval for checking free space.
85 * @param unit the time unit of the interval parameter.
91 long fullThreshold, int interval, TimeUnit unit,
96 this.interval = interval;
193 scheduleUpdate(this, 0, interval, unit);
89 DiskSpaceMonitor(String instanceName, File directory, long lowThreshold, long fullThreshold, int interval, TimeUnit unit, DiskSpaceMonitorHandler handler) argument
/forgerock/openam-v13/openam-audit/openam-audit-configuration/src/main/java/org/forgerock/openam/audit/events/handlers/
H A DCsvAuditEventHandlerFactory.java81 String interval = getMapAttr(attributes, "rotationInterval", "-1");
83 Long intervalAsLong = Long.valueOf(interval);
85 //If interval is 0 or a negative value, then this indicates that the feature is disabled. Change
87 interval = "disabled";
89 //If interval is a positive number, add seconds to the end as the time unit.
90 interval = interval + " seconds";
93 throw new AuditException("Attribute 'rotationInterval' is invalid: " + interval);
95 csvHandlerConfiguration.getFileRotation().setRotationInterval(interval);
/forgerock/openam/openam-audit/openam-audit-configuration/src/main/java/org/forgerock/openam/audit/events/handlers/
H A DCsvAuditEventHandlerFactory.java81 String interval = getMapAttr(attributes, "rotationInterval", "-1");
83 Long intervalAsLong = Long.valueOf(interval);
85 //If interval is 0 or a negative value, then this indicates that the feature is disabled. Change
87 interval = "disabled";
89 //If interval is a positive number, add seconds to the end as the time unit.
90 interval = interval + " seconds";
93 throw new AuditException("Attribute 'rotationInterval' is invalid: " + interval);
95 csvHandlerConfiguration.getFileRotation().setRotationInterval(interval);
/forgerock/opendj-b2.6/src/server/org/opends/server/loggers/
H A DMultifileTextWriter.java87 private long interval; field in class:MultifileTextWriter
108 * @param interval the interval to check whether the logs need to be rotated.
122 public MultifileTextWriter(String name, long interval, argument
137 this.interval = interval;
339 * Set the interval in which the rotator thread checks to see if the log
342 * @param interval The interval to check if the log file needs to be rotated.
344 public void setInterval(long interval) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/loggers/
H A DMultifileTextWriter.java87 private long interval; field in class:MultifileTextWriter
108 * @param interval the interval to check whether the logs need to be rotated.
122 public MultifileTextWriter(String name, long interval, argument
137 this.interval = interval;
338 * Set the interval in which the rotator thread checks to see if the log
341 * @param interval The interval to check if the log file needs to be rotated.
343 public void setInterval(long interval) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/loggers/
H A DMultifileTextWriter.java87 private long interval; field in class:MultifileTextWriter
108 * @param interval the interval to check whether the logs need to be rotated.
122 public MultifileTextWriter(String name, long interval, argument
137 this.interval = interval;
339 * Set the interval in which the rotator thread checks to see if the log
342 * @param interval The interval to check if the log file needs to be rotated.
344 public void setInterval(long interval) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/loggers/
H A DMultifileTextWriter.java87 private long interval; field in class:MultifileTextWriter
108 * @param interval the interval to check whether the logs need to be rotated.
122 public MultifileTextWriter(String name, long interval, argument
137 this.interval = interval;
339 * Set the interval in which the rotator thread checks to see if the log
342 * @param interval The interval to check if the log file needs to be rotated.
344 public void setInterval(long interval) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/loggers/
H A DMultifileTextWriter.java87 private long interval; field in class:MultifileTextWriter
108 * @param interval the interval to check whether the logs need to be rotated.
122 public MultifileTextWriter(String name, long interval, argument
137 this.interval = interval;
338 * Set the interval in which the rotator thread checks to see if the log
341 * @param interval The interval to check if the log file needs to be rotated.
343 public void setInterval(long interval) argument
[all...]

Completed in 159 milliseconds

12345