/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/log/service/ |
H A D | Log.java | 25 * $Id: Log.java,v 1.3 2008/06/25 05:43:38 qcheng Exp $ 41 public class Log implements ParseOutput { class in inherits:ParseOutput 69 } //end of Log
|
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/csharpsource/Fedlet/Fedlet/source/Common/ |
H A D | FedletLogger.cs | 34 /// Simple class for logging events to the Windows Application Log. The
73 public const string Log = "Application";
field in class:Sun.Identity.Common.FedletLogger
|
/forgerock/openam/openam-core/src/main/java/com/sun/identity/log/service/ |
H A D | Log.java | 25 * $Id: Log.java,v 1.3 2008/06/25 05:43:38 qcheng Exp $ 41 public class Log implements ParseOutput { class in inherits:ParseOutput 69 } //end of Log
|
/forgerock/openam/openam-federation/openam-federation-library/src/main/csharpsource/Fedlet/Fedlet/source/Common/ |
H A D | FedletLogger.cs | 34 /// Simple class for logging events to the Windows Application Log. The
73 public const string Log = "Application";
field in class:Sun.Identity.Common.FedletLogger
|
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/replication/server/changelog/file/ |
H A D | LogTest.java | 67 Log<String, String> log = openLog(RECORD_PARSER); 75 private Log<String, String> openLog(RecordParser<String, String> parser) throws ChangelogException 84 return Log.openLog(LOG_DIRECTORY, parser, sizeLimitPerFileInBytes); 90 Log<String, String> log = openLog(LogFileTest.RECORD_PARSER); 105 Log<String, String> log = openLog(RECORD_PARSER); 120 Log<String, String> log = openLog(RECORD_PARSER); 138 Log<String, String> log = openLog(LogFileTest.RECORD_PARSER); 215 Log<String, String> log = openLog(LogFileTest.RECORD_PARSER); 237 Log<String, String> log = openLog(LogFileTest.RECORD_PARSER); 253 Log<Strin 574 getWriteLogThread(final Log<String, String> writeLog, final String recordPrefix, final AtomicReference<ChangelogException> exceptionRef) argument [all...] |
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/replication/server/changelog/file/ |
H A D | LogTest.java | 67 Log<String, String> log = openLog(RECORD_PARSER); 75 private Log<String, String> openLog(RecordParser<String, String> parser) throws ChangelogException 84 return Log.openLog(LOG_DIRECTORY, parser, sizeLimitPerFileInBytes); 90 Log<String, String> log = openLog(LogFileTest.RECORD_PARSER); 105 Log<String, String> log = openLog(RECORD_PARSER); 120 Log<String, String> log = openLog(RECORD_PARSER); 138 Log<String, String> log = openLog(LogFileTest.RECORD_PARSER); 215 Log<String, String> log = openLog(LogFileTest.RECORD_PARSER); 237 Log<String, String> log = openLog(LogFileTest.RECORD_PARSER); 253 Log<Strin 574 getWriteLogThread(final Log<String, String> writeLog, final String recordPrefix, final AtomicReference<ChangelogException> exceptionRef) argument [all...] |
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/replication/server/changelog/file/ |
H A D | LogTest.java | 44 import org.opends.server.replication.server.changelog.file.Log.LogRotationParameters; 73 Log<String, String> log = openLog(RECORD_PARSER); 81 private Log<String, String> openLog(RecordParser<String, String> parser) throws ChangelogException 93 return Log.openLog(replicationEnv, LOG_DIRECTORY, parser, rotationParams); 99 try (Log<String, String> log = openLog(LogFileTest.RECORD_PARSER); 109 try (Log<String, String> log = openLog(RECORD_PARSER); 119 try (Log<String, String> log = openLog(RECORD_PARSER); 132 try (Log<String, String> log = openLog(LogFileTest.RECORD_PARSER); 204 try (Log<String, String> log = openLog(LogFileTest.RECORD_PARSER); 221 try (Log<Strin 549 getWriteLogThread(final Log<String, String> writeLog, final String recordPrefix, final AtomicReference<ChangelogException> exceptionRef) argument [all...] |
/forgerock/opendj2/src/server/org/opends/server/replication/server/changelog/file/ |
H A D | Log.java | 83 * A log is obtained using the {@code Log.openLog()} method and must always be 89 * Log<K, V> log = null; 92 * log = Log.openLog(logPath, parser, maxFileSize); 109 final class Log<K extends Comparable<K>, V> implements Closeable class in inherits:Closeable 128 private static final Map<File, Log<?, ?>> logsCache = new HashMap<File, Log<?, ?>>(); 212 static synchronized <K extends Comparable<K>, V> Log<K, V> openLog(final File logPath, 217 Log<K, V> log = (Log<K, V>) logsCache.get(logPath); 220 log = new Log< 269 private Log(final File logPath, final RecordParser<K, V> parser, final long sizeLimitPerFile) method in class:Log 986 LogCursor(final Log<K, V> log) argument [all...] |
H A D | ReplicationEnvironment.java | 92 * See {@code Log} class for details on the log files. 186 private final List<Log<?, ?>> logs = new CopyOnWriteArrayList<Log<?, ?>>(); 274 Log<CSN, UpdateMsg> getOrCreateReplicaDB(final DN domainDN, final int serverId, final long generationId) 324 Log<Long, ChangeNumberIndexRecord> getOrCreateCNIndexDB() throws ChangelogException 658 private <K extends Comparable<K>, V> Log<K, V> openLog(final File serverIdPath, final RecordParser<K, V> parser) 663 final Log<K, V> log = Log.openLog(serverIdPath, parser, MAX_LOG_FILE_SIZE_IN_BYTES); 671 private void checkShutDownAfterOpening(final File serverIdPath, final Log<?, ?> log) throws ChangelogException argument 752 private void closeLog(final Log< argument [all...] |
/forgerock/opendj2-hg/src/server/org/opends/server/replication/server/changelog/file/ |
H A D | Log.java | 83 * A log is obtained using the {@code Log.openLog()} method and must always be 89 * Log<K, V> log = null; 92 * log = Log.openLog(logPath, parser, maxFileSize); 109 final class Log<K extends Comparable<K>, V> implements Closeable class in inherits:Closeable 128 private static final Map<File, Log<?, ?>> logsCache = new HashMap<File, Log<?, ?>>(); 212 static synchronized <K extends Comparable<K>, V> Log<K, V> openLog(final File logPath, 217 Log<K, V> log = (Log<K, V>) logsCache.get(logPath); 220 log = new Log< 269 private Log(final File logPath, final RecordParser<K, V> parser, final long sizeLimitPerFile) method in class:Log 986 LogCursor(final Log<K, V> log) argument [all...] |
H A D | ReplicationEnvironment.java | 92 * See {@code Log} class for details on the log files. 186 private final List<Log<?, ?>> logs = new CopyOnWriteArrayList<Log<?, ?>>(); 274 Log<CSN, UpdateMsg> getOrCreateReplicaDB(final DN domainDN, final int serverId, final long generationId) 324 Log<Long, ChangeNumberIndexRecord> getOrCreateCNIndexDB() throws ChangelogException 658 private <K extends Comparable<K>, V> Log<K, V> openLog(final File serverIdPath, final RecordParser<K, V> parser) 663 final Log<K, V> log = Log.openLog(serverIdPath, parser, MAX_LOG_FILE_SIZE_IN_BYTES); 671 private void checkShutDownAfterOpening(final File serverIdPath, final Log<?, ?> log) throws ChangelogException argument 752 private void closeLog(final Log< argument [all...] |
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/server/changelog/file/ |
H A D | ReplicationEnvironment.java | 63 import org.opends.server.replication.server.changelog.file.Log.LogRotationParameters; 100 * See {@code Log} class for details on the log files. 216 private final List<Log<CSN, UpdateMsg>> logsReplicaDB = new CopyOnWriteArrayList<>(); 221 * This is the responsibility of Log class to handle properly these multiple references. 223 private List<Log<Long, ChangeNumberIndexRecord>> logsCNIndexDB = new CopyOnWriteArrayList<>(); 293 for (Log<Long, ChangeNumberIndexRecord> log : logsCNIndexDB) 352 Log<CSN, UpdateMsg> getOrCreateReplicaDB(final DN domainDN, final int serverId, final long generationId) 403 Log<Long, ChangeNumberIndexRecord> getOrCreateCNIndexDB() throws ChangelogException 504 void notifyLogFileRotation(Log<?, ?> log) throws ChangelogException 751 private <K extends Comparable<K>, V> Log< 765 checkShutDownAfterOpening(final File serverIdPath, final Log<?, ?> log) argument 892 closeLog(final Log<?, ?> log) argument [all...] |
H A D | Log.java | 81 * A log is obtained using the {@code Log.openLog()} method and must always be 86 * Log<K, V> log = null; 89 * log = Log.openLog(logPath, parser, maxFileSize); 106 final class Log<K extends Comparable<K>, V> implements Closeable class in inherits:Closeable 127 private static final Map<File, Log<?, ?>> logsCache = new HashMap<>(); 226 static synchronized <K extends Comparable<K>, V> Log<K, V> openLog(final ReplicationEnvironment replicationEnv, 232 Log<K, V> log = (Log<K, V>) logsCache.get(logPath); 235 log = new Log<>(replicationEnv, logPath, parser, rotationParameters); 255 return new Log 342 private Log(final ReplicationEnvironment replicationEnv, final File logPath, final RecordParser<K, V> parser, method in class:Log 1262 InternalLogCursor(final Log<K, V> log) argument [all...] |
/forgerock/opendj2/ext/ant/lib/ |
H A D | ant-contrib-1.0b3.jar | META-INF/ META-INF/MANIFEST.MF net/ net/sf/ net/sf/antcontrib/ net/sf/antcontrib/antclipse/ ... |
/forgerock/opendj-b2.6/ext/ant/lib/ |
H A D | ant-contrib-1.0b3.jar | META-INF/ META-INF/MANIFEST.MF net/ net/sf/ net/sf/antcontrib/ net/sf/antcontrib/antclipse/ ... |
/forgerock/opendj2.6.2/ext/ant/lib/ |
H A D | ant-contrib-1.0b3.jar | META-INF/ META-INF/MANIFEST.MF net/ net/sf/ net/sf/antcontrib/ net/sf/antcontrib/antclipse/ ... |
/forgerock/opendj2-hg/ext/ant/lib/ |
H A D | ant-contrib-1.0b3.jar | META-INF/ META-INF/MANIFEST.MF net/ net/sf/ net/sf/antcontrib/ net/sf/antcontrib/antclipse/ ... |
/forgerock/opendj-v3/opendj-server-legacy/ext/ant/lib/ |
H A D | ant-contrib-1.0b3.jar | META-INF/ META-INF/MANIFEST.MF net/ net/sf/ net/sf/antcontrib/ net/sf/antcontrib/antclipse/ ... |
/forgerock/opendj2/ext/checkstyle/ |
H A D | checkstyle-all-4.1.jar | META-INF/ META-INF/MANIFEST.MF antlr/ antlr/ANTLRError.class ANTLRError.java package antlr ... |
/forgerock/opendj-b2.6/ext/checkstyle/ |
H A D | checkstyle-all-4.1.jar | META-INF/ META-INF/MANIFEST.MF antlr/ antlr/ANTLRError.class ANTLRError.java package antlr ... |
/forgerock/opendj2.6.2/ext/checkstyle/ |
H A D | checkstyle-all-4.1.jar | META-INF/ META-INF/MANIFEST.MF antlr/ antlr/ANTLRError.class ANTLRError.java package antlr ... |
/forgerock/opendj2-jel-hg/ext/checkstyle/ |
H A D | checkstyle-all-4.1.jar | META-INF/ META-INF/MANIFEST.MF antlr/ antlr/ANTLRError.class ANTLRError.java package antlr ... |
/forgerock/opendj2-hg/ext/checkstyle/ |
H A D | checkstyle-all-4.1.jar | META-INF/ META-INF/MANIFEST.MF antlr/ antlr/ANTLRError.class ANTLRError.java package antlr ... |