Class RepositoryReaderImpl
- java.lang.Object
- 
- com.ibm.websphere.logging.hpel.reader.RepositoryReaderImpl
 
- 
- All Implemented Interfaces:
- RepositoryReader
 
 public class RepositoryReaderImpl extends java.lang.Object implements RepositoryReader Implementation of theRepositoryReaderproviding access to a local HPEL repository.
- 
- 
Constructor SummaryConstructors Constructor Description RepositoryReaderImpl(java.io.File directory)creates RepositoryReader instance working on the binary log set.RepositoryReaderImpl(java.io.File logLocation, java.io.File traceLocation)Creates RepositoryReader instance working on the binary log set and trace log set.RepositoryReaderImpl(java.lang.String directory)creates RepositoryReader instance working on the binary log set.RepositoryReaderImpl(java.lang.String logDirectory, java.lang.String traceDirectory)Creates RepositoryReader instance working on the binary log set and trace log set.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static booleancontainsLogFiles(java.io.File location)checks if specified location contains log files.ServerInstanceLogRecordListgetLogListForCurrentServerInstance()returns log records from the repository that were created since the last server startup.ServerInstanceLogRecordListgetLogListForServerInstance(RepositoryPointer after)returns log records from the repository that are beyond a given repository location as specified.ServerInstanceLogRecordListgetLogListForServerInstance(RepositoryPointer after, int threadID)returns log records from the repository that are beyond a given repository location and created by a given thread as specified.ServerInstanceLogRecordListgetLogListForServerInstance(RepositoryPointer after, LogQueryBean query)returns log records from the repository for one server instance that are beyond a given repository location, according to the criteria specified by the log query bean.ServerInstanceLogRecordListgetLogListForServerInstance(RepositoryPointer after, LogRecordFilter filter)returns log records from the binary repository that are beyond a given repository location and satisfies the filter criteria as specified by the parameters.ServerInstanceLogRecordListgetLogListForServerInstance(RepositoryPointer after, LogRecordHeaderFilter filter)returns log records from the binary repository that are beyond a given repository location and satisfies the filter criteria as specified by the parameters.ServerInstanceLogRecordListgetLogListForServerInstance(RepositoryPointer after, java.util.logging.Level minLevel, java.util.logging.Level maxLevel)returns log records from the repository that are beyond a given repository location and within the level range as specified.ServerInstanceLogRecordListgetLogListForServerInstance(java.util.Date time)returns log records from the repository of a server instance running at the time specified.ServerInstanceLogRecordListgetLogListForServerInstance(java.util.Date time, int threadID)returns log records from the repository of a server instance running at a specified time created by the given thread.ServerInstanceLogRecordListgetLogListForServerInstance(java.util.Date time, LogQueryBean query)returns log records from the repository of a server instance running at a specified time, according to the criteria specified by the log query bean.ServerInstanceLogRecordListgetLogListForServerInstance(java.util.Date time, LogRecordFilter filter)returns log records from the binary repository which satisfy condition of the filter as specified by the parameter.ServerInstanceLogRecordListgetLogListForServerInstance(java.util.Date time, LogRecordHeaderFilter filter)returns log records from the binary repository which satisfy condition of the filter as specified by the parameter.ServerInstanceLogRecordListgetLogListForServerInstance(java.util.Date time, java.util.logging.Level minLevel, java.util.logging.Level maxLevel)returns log records from the repository of a server instance running at a specified time, within the level range as specified.java.lang.Iterable<ServerInstanceLogRecordList>getLogLists()returns log records from the binary repositoryjava.lang.Iterable<ServerInstanceLogRecordList>getLogLists(int minLevel, int maxLevel)returns log records from the binary repository that are within the level range as specified by the parameters.java.lang.Iterable<ServerInstanceLogRecordList>getLogLists(LogQueryBean query)returns log records from the repository according to the criteria specified by the log query bean.java.lang.Iterable<ServerInstanceLogRecordList>getLogLists(RepositoryPointer after)returns log records from the binary repository that are within the date range and which satisfy condition of the filter as specified by the parameters.java.lang.Iterable<ServerInstanceLogRecordList>getLogLists(RepositoryPointer after, int minLevel, int maxLevel)returns log records from the binary repository beyond the given repository pointer and within the level range as specified by the parameters.java.lang.Iterable<ServerInstanceLogRecordList>getLogLists(RepositoryPointer after, LogQueryBean query)returns log records from the repository that are beyond a given repository location, according to the criteria specified by the log query bean.java.lang.Iterable<ServerInstanceLogRecordList>getLogLists(RepositoryPointer after, java.util.Date maxTime)returns log records from the binary repository that are after a given location and less than or equal to a given date Callers would have to invokeRepositoryLogRecordHeader.getRepositoryPointer()to obtain the RepositoryPointer of the last record read.java.lang.Iterable<ServerInstanceLogRecordList>getLogLists(RepositoryPointer after, java.util.Date endTime, LogRecordFilter filter)returns log records from the binary repository that are beyond a given repository location, occured before a given time, and meet a filter condition as specified by the parameters.java.lang.Iterable<ServerInstanceLogRecordList>getLogLists(RepositoryPointer after, java.util.Date endTime, LogRecordHeaderFilter filter)returns log records from the binary repository that are beyond a given repository location, occured before a given time, and meet a filter condition as specified by the parameters.java.lang.Iterable<ServerInstanceLogRecordList>getLogLists(RepositoryPointer after, java.util.logging.Level minLevel, java.util.logging.Level maxLevel)returns log records from the binary repository beyond the given repository pointer and within the level range as specified by the parameters.java.lang.Iterable<ServerInstanceLogRecordList>getLogLists(java.util.Date minTime, java.util.Date maxTime)returns log records from the binary repository that are between 2 dates (inclusive)java.lang.Iterable<ServerInstanceLogRecordList>getLogLists(java.util.Date beginTime, java.util.Date endTime, LogRecordFilter filter)returns log records from the binary repository that are within the date range and which satisfy condition of the filter as specified by the parameters.java.lang.Iterable<ServerInstanceLogRecordList>getLogLists(java.util.Date beginTime, java.util.Date endTime, LogRecordHeaderFilter filter)returns log records from the binary repository that are within the date range and which satisfy condition of the filter as specified by the parameters.java.lang.Iterable<ServerInstanceLogRecordList>getLogLists(java.util.logging.Level minLevel, java.util.logging.Level maxLevel)returns log records from the binary repository beyond the given repository pointer and within the level range as specified by the parameters.java.lang.StringgetLogLocation()Returns log directory used by this reader.java.lang.StringgetTraceLocation()Returns trace directory used by this reader.static java.io.File[]listRepositories(java.io.File parent)list subdirectories containing repository files.
 
- 
- 
- 
Constructor Detail- 
RepositoryReaderImplpublic RepositoryReaderImpl(java.lang.String directory) creates RepositoryReader instance working on the binary log set.- Parameters:
- directory- or zip file containing log and/or trace files.
 
 - 
RepositoryReaderImplpublic RepositoryReaderImpl(java.lang.String logDirectory, java.lang.String traceDirectory)Creates RepositoryReader instance working on the binary log set and trace log set. This allows for a merging of repositories in directories which may not be adjacent.- Parameters:
- logDirectory- containing log files. If this is null, then use trace only
- traceDirectory- containing log files. If this is null, then use log only
- Throws:
- java.lang.IllegalArgumentException- if both- logDirectoryand- traceDirectoryare null.
 
 - 
RepositoryReaderImplpublic RepositoryReaderImpl(java.io.File directory) creates RepositoryReader instance working on the binary log set.- Parameters:
- directory- or zip file containing log and/or trace files.
 
 - 
RepositoryReaderImplpublic RepositoryReaderImpl(java.io.File logLocation, java.io.File traceLocation)Creates RepositoryReader instance working on the binary log set and trace log set. This allows for a merging of repositories in directories which may not be adjacent.- Parameters:
- logLocation- containing log files. If this is null, then use trace only
- traceLocation- containing log files. If this is null, then use log only
- Throws:
- java.lang.IllegalArgumentException- if both- logLocationand- traceLocationare null.
 
 
- 
 - 
Method Detail- 
getLogLocationpublic java.lang.String getLogLocation() Returns log directory used by this reader.- Returns:
- absolute path to log directory.
 
 - 
getTraceLocationpublic java.lang.String getTraceLocation() Returns trace directory used by this reader.- Returns:
- absolute path to trace directory.
 
 - 
containsLogFilespublic static boolean containsLogFiles(java.io.File location) checks if specified location contains log files.- Parameters:
- location- to check.
- Returns:
- trueif the directory itself or known subdirectories contain log files.
 
 - 
listRepositoriespublic static java.io.File[] listRepositories(java.io.File parent) list subdirectories containing repository files.- Parameters:
- parent- the directory to check subdirectories in.
- Returns:
- list of subdirectory names containing repository files.
 
 - 
getLogListspublic java.lang.Iterable<ServerInstanceLogRecordList> getLogLists() returns log records from the binary repository- Specified by:
- getLogListsin interface- RepositoryReader
- Returns:
- the iterable instance of a list of log records If no records are available, the iterable has no entries
 
 - 
getLogListspublic java.lang.Iterable<ServerInstanceLogRecordList> getLogLists(RepositoryPointer after) returns log records from the binary repository that are within the date range and which satisfy condition of the filter as specified by the parameters.- Specified by:
- getLogListsin interface- RepositoryReader
- Parameters:
- after- pointer to the a repository location where the query should start. Only includes records after this point
- Returns:
- the iterable instance of a list of log records within a process that are within the parameter range and satisfy the condition. If no records exist after the location, an Iterable is returned with no entries
 
 - 
getLogListspublic java.lang.Iterable<ServerInstanceLogRecordList> getLogLists(java.util.Date beginTime, java.util.Date endTime, LogRecordHeaderFilter filter) returns log records from the binary repository that are within the date range and which satisfy condition of the filter as specified by the parameters.- Parameters:
- beginTime- the minimum- Datevalue that the returned records can have
- endTime- the maximum- Datevalue that the returned records can have
- filter- an instance implementing- LogRecordHeaderFilterinterface to verify one record at a time.
- Returns:
- the iterable instance of a list of log records within a process that are within the parameter range and satisfy the condition. If no records meet the criteria, an Iterable is returned with no entries
 
 - 
getLogListspublic java.lang.Iterable<ServerInstanceLogRecordList> getLogLists(RepositoryPointer after, java.util.Date endTime, LogRecordHeaderFilter filter) returns log records from the binary repository that are beyond a given repository location, occured before a given time, and meet a filter condition as specified by the parameters. Callers would have to invokeRepositoryLogRecordHeader.getRepositoryPointer()to obtain the RepositoryPointer of the last record read.- Parameters:
- after- RepositoryPointer of the last read log record.
- endTime- the maximum- Datevalue that the returned records can have
- filter- an instance implementing- LogRecordHeaderFilterinterface to verify one record at a time.
- Returns:
- the iterable instance of a list of log records within a process that are within the parameter range and satisfy the condition. If no records meet the criteria, an Iterable is returned with no entries
 
 - 
getLogListspublic java.lang.Iterable<ServerInstanceLogRecordList> getLogLists(java.util.Date beginTime, java.util.Date endTime, LogRecordFilter filter) returns log records from the binary repository that are within the date range and which satisfy condition of the filter as specified by the parameters.- Parameters:
- beginTime- the minimum- Datevalue that the returned records can have
- endTime- the maximum- Datevalue that the returned records can have
- filter- an instance implementing- LogRecordFilterinterface to verify one record at a time.
- Returns:
- the iterable instance of a list of log records within a process that are within the parameter range and satisfy the condition. If no records meet the criteria, an Iterable is returned with no entries
 
 - 
getLogListspublic java.lang.Iterable<ServerInstanceLogRecordList> getLogLists(RepositoryPointer after, java.util.Date endTime, LogRecordFilter filter) returns log records from the binary repository that are beyond a given repository location, occured before a given time, and meet a filter condition as specified by the parameters. Callers would have to invokeRepositoryLogRecordHeader.getRepositoryPointer()to obtain the RepositoryPointer of the last record read.- Parameters:
- after- RepositoryPointer of the last read log record.
- endTime- the maximum- Datevalue that the returned records can have
- filter- an instance implementing- LogRecordFilterinterface to verify one record at a time.
- Returns:
- the iterable instance of a list of log records within a process that are within the parameter range and satisfy the condition. If no records meet the criteria, an Iterable is returned with no entries
 
 - 
getLogListspublic java.lang.Iterable<ServerInstanceLogRecordList> getLogLists(int minLevel, int maxLevel) returns log records from the binary repository that are within the level range as specified by the parameters.- Parameters:
- minLevel- integer value of the minimum- Levelthat the returned records need to match
- maxLevel- integer value of the maximum- Levelthat the returned records need to match
- Returns:
- the iterable instance of a list of log records within a process that are within the parameter range If no records meet the criteria, an Iterable is returned with no entries
 
 - 
getLogListspublic java.lang.Iterable<ServerInstanceLogRecordList> getLogLists(RepositoryPointer after, int minLevel, int maxLevel) returns log records from the binary repository beyond the given repository pointer and within the level range as specified by the parameters. Callers would have to invokeRepositoryLogRecordHeader.getRepositoryPointer()to obtain the RepositoryPointer of the last record read.- Parameters:
- after- RepositoryPointer of the last read log record.
- minLevel- integer value of the minimum- Levelthat the returned records need to match
- maxLevel- integer value of the maximum- Levelthat the returned records need to match
- Returns:
- the iterable instance of a list of log records within a process that are within the parameter range If no records meet the criteria, an Iterable is returned with no entries
 
 - 
getLogListspublic java.lang.Iterable<ServerInstanceLogRecordList> getLogLists(java.util.logging.Level minLevel, java.util.logging.Level maxLevel) returns log records from the binary repository beyond the given repository pointer and within the level range as specified by the parameters. Callers would have to invokeRepositoryLogRecordHeader.getRepositoryPointer()to obtain the RepositoryPointer of the last record read.- Specified by:
- getLogListsin interface- RepositoryReader
- Parameters:
- minLevel- integer value of the minimum- Levelthat the returned records need to match
- maxLevel- integer value of the maximum- Levelthat the returned records need to match
- Returns:
- the iterable instance of a list of log records within a process that are within the parameter range If no records meet the criteria, an Iterable is returned with no entries
 
 - 
getLogListspublic java.lang.Iterable<ServerInstanceLogRecordList> getLogLists(RepositoryPointer after, java.util.logging.Level minLevel, java.util.logging.Level maxLevel) returns log records from the binary repository beyond the given repository pointer and within the level range as specified by the parameters. Callers would have to invokeRepositoryLogRecordHeader.getRepositoryPointer()to obtain the RepositoryPointer of the last record read.- Specified by:
- getLogListsin interface- RepositoryReader
- Parameters:
- after- RepositoryPointer of the last read log record.
- minLevel- Level value of the minimum- Levelthat the returned records need to match
- maxLevel- Level value of the maximum- Levelthat the returned records need to match
- Returns:
- the iterable instance of a list of log records within a process that are within the parameter range If no records meet the criteria, an Iterable is returned with no entries
 
 - 
getLogListspublic java.lang.Iterable<ServerInstanceLogRecordList> getLogLists(java.util.Date minTime, java.util.Date maxTime) returns log records from the binary repository that are between 2 dates (inclusive)- Specified by:
- getLogListsin interface- RepositoryReader
- Parameters:
- minTime- the minimum- Datevalue that the returned records can have
- maxTime- the maximum- Datevalue that the returned records can have
- Returns:
- the iterable instance of a list of log records within a process that are within the parameter range and satisfy the condition. If no records meet the criteria, an Iterable is returned with no entries
 
 - 
getLogListspublic java.lang.Iterable<ServerInstanceLogRecordList> getLogLists(RepositoryPointer after, java.util.Date maxTime) returns log records from the binary repository that are after a given location and less than or equal to a given date Callers would have to invokeRepositoryLogRecordHeader.getRepositoryPointer()to obtain the RepositoryPointer of the last record read.- Specified by:
- getLogListsin interface- RepositoryReader
- Parameters:
- after- RepositoryPointer of the last read log record.
- maxTime- the maximum- Datevalue that the returned records can have
- Returns:
- the iterable instance of a list of log records within a process that are within the parameter range and satisfy the condition. If no records meet the criteria, an Iterable is returned with no entries
 
 - 
getLogListspublic java.lang.Iterable<ServerInstanceLogRecordList> getLogLists(LogQueryBean query) Description copied from interface:RepositoryReaderreturns log records from the repository according to the criteria specified by the log query bean.- Specified by:
- getLogListsin interface- RepositoryReader
- Parameters:
- query-- LogQueryBeaninstance representing set of criteria each of which need to be met by the return records.
- Returns:
- the iterable instance of a list of log records within a process that are within the parameter range If no records meet the criteria, an Iterable is returned with no entries
 
 - 
getLogListspublic java.lang.Iterable<ServerInstanceLogRecordList> getLogLists(RepositoryPointer after, LogQueryBean query) Description copied from interface:RepositoryReaderreturns log records from the repository that are beyond a given repository location, according to the criteria specified by the log query bean.- Specified by:
- getLogListsin interface- RepositoryReader
- Parameters:
- after- pointer to a record the list will start after
- query-- LogQueryBeaninstance representing set of criteria each of which need to be met by the return records.
- Returns:
- the iterable instance of a list of log records within a process that are within the parameter range If no records meet the criteria, an Iterable is returned with no entries
 
 - 
getLogListForCurrentServerInstancepublic ServerInstanceLogRecordList getLogListForCurrentServerInstance() Description copied from interface:RepositoryReaderreturns log records from the repository that were created since the last server startup.- Specified by:
- getLogListForCurrentServerInstancein interface- RepositoryReader
- Returns:
- the iterable list of log records If no records meet the criteria, an Iterable is returned with no entries
 
 - 
getLogListForServerInstancepublic ServerInstanceLogRecordList getLogListForServerInstance(java.util.Date time) Description copied from interface:RepositoryReaderreturns log records from the repository of a server instance running at the time specified.- Specified by:
- getLogListForServerInstancein interface- RepositoryReader
- Parameters:
- time-- Datevalue used to determine the server instance where the server start time occurs before this value and the server stop time occurs after this value
- Returns:
- the iterable list of log records If no records meet the criteria, a list is returned with a null properties object and a null record list
 
 - 
getLogListForServerInstancepublic ServerInstanceLogRecordList getLogListForServerInstance(RepositoryPointer after) Description copied from interface:RepositoryReaderreturns log records from the repository that are beyond a given repository location as specified. Callers need to invokeRepositoryLogRecordHeader.getRepositoryPointer()to obtain the RepositoryPointer for a particular log record. The returned logs will be from one server instance.- Specified by:
- getLogListForServerInstancein interface- RepositoryReader
- Parameters:
- after- pointer to a record the list will start after
- Returns:
- the iterable list of log records If no records meet the criteria, the list is empty.
 
 - 
getLogListForServerInstancepublic ServerInstanceLogRecordList getLogListForServerInstance(java.util.Date time, LogRecordHeaderFilter filter) returns log records from the binary repository which satisfy condition of the filter as specified by the parameter. The returned logs will be from the same server instance. The server instance will be determined by the time as specified by the parameter.- Parameters:
- time- the- Datetime value used to determine the server instance where the server start time occurs before this value and the server stop time occurs after this value
- filter- an instance implementing- LogRecordHeaderFilterinterface to verify one record at a time.
- Returns:
- the iterable list of log records
 
 - 
getLogListForServerInstancepublic ServerInstanceLogRecordList getLogListForServerInstance(RepositoryPointer after, LogRecordHeaderFilter filter) returns log records from the binary repository that are beyond a given repository location and satisfies the filter criteria as specified by the parameters. Callers would have to invokeRepositoryLogRecordHeader.getRepositoryPointer()to obtain the RepositoryPointer of the last record read. The returned logs will be from the same server instance.- Parameters:
- after- RepositoryPointer of the last read log record.
- filter- an instance implementing- LogRecordHeaderFilterinterface to verify one record at a time.
- Returns:
- the iterable list of log records
 
 - 
getLogListForServerInstancepublic ServerInstanceLogRecordList getLogListForServerInstance(java.util.Date time, LogRecordFilter filter) returns log records from the binary repository which satisfy condition of the filter as specified by the parameter. The returned logs will be from the same server instance. The server instance will be determined by the time as specified by the parameter.- Parameters:
- time- the- Datetime value used to determine the server instance where the server start time occurs before this value and the server stop time occurs after this value
- filter- an instance implementing- LogRecordFilterinterface to verify one record at a time.
- Returns:
- the iterable list of log records
 
 - 
getLogListForServerInstancepublic ServerInstanceLogRecordList getLogListForServerInstance(RepositoryPointer after, LogRecordFilter filter) returns log records from the binary repository that are beyond a given repository location and satisfies the filter criteria as specified by the parameters. Callers would have to invokeRepositoryLogRecordHeader.getRepositoryPointer()to obtain the RepositoryPointer of the last record read. The returned logs will be from the same server instance.- Parameters:
- after- RepositoryPointer of the last read log record.
- filter- an instance implementing- LogRecordFilterinterface to verify one record at a time.
- Returns:
- the iterable list of log records
 
 - 
getLogListForServerInstancepublic ServerInstanceLogRecordList getLogListForServerInstance(java.util.Date time, java.util.logging.Level minLevel, java.util.logging.Level maxLevel) Description copied from interface:RepositoryReaderreturns log records from the repository of a server instance running at a specified time, within the level range as specified.- Specified by:
- getLogListForServerInstancein interface- RepositoryReader
- Parameters:
- time-- Datevalue used to determine the server instance where the server start time occurs before this value and the server stop time occurs after this value
- minLevel- minimum- Levelthat will be included in the returned list
- maxLevel- maximum- Levelthat will be included in the returned list
- Returns:
- the iterable list of log records If no records meet the criteria, the list is empty.
 
 - 
getLogListForServerInstancepublic ServerInstanceLogRecordList getLogListForServerInstance(RepositoryPointer after, java.util.logging.Level minLevel, java.util.logging.Level maxLevel) Description copied from interface:RepositoryReaderreturns log records from the repository that are beyond a given repository location and within the level range as specified. Callers need to invokeRepositoryLogRecordHeader.getRepositoryPointer()to obtain the RepositoryPointer for a particular log record. The returned logs will be from one server instance.- Specified by:
- getLogListForServerInstancein interface- RepositoryReader
- Parameters:
- after- pointer to a record the list will start after
- minLevel- minimum- Levelthat will be included in the returned list
- maxLevel- maximum- Levelthat will be included in the returned list
- Returns:
- the iterable list of log records If no records meet the criteria, the list is empty.
 
 - 
getLogListForServerInstancepublic ServerInstanceLogRecordList getLogListForServerInstance(java.util.Date time, int threadID) Description copied from interface:RepositoryReaderreturns log records from the repository of a server instance running at a specified time created by the given thread.- Specified by:
- getLogListForServerInstancein interface- RepositoryReader
- Parameters:
- time-- Datevalue used to determine the server instance where the server start time occurs before this value and the server stop time occurs after this value
- threadID- ID of the thread that the returned records will match
- Returns:
- the iterable list of log records If no records meet the criteria, the list is empty.
 
 - 
getLogListForServerInstancepublic ServerInstanceLogRecordList getLogListForServerInstance(RepositoryPointer after, int threadID) Description copied from interface:RepositoryReaderreturns log records from the repository that are beyond a given repository location and created by a given thread as specified. Callers need to invokeRepositoryLogRecordHeader.getRepositoryPointer()to obtain the RepositoryPointer for a particular log record. The returned logs will be from one server instance.- Specified by:
- getLogListForServerInstancein interface- RepositoryReader
- Parameters:
- after- pointer to a record the list will start after
- threadID- ID of the thread that the returned records will match
- Returns:
- the iterable list of log records If no records meet the criteria, the list is empty.
 
 - 
getLogListForServerInstancepublic ServerInstanceLogRecordList getLogListForServerInstance(java.util.Date time, LogQueryBean query) Description copied from interface:RepositoryReaderreturns log records from the repository of a server instance running at a specified time, according to the criteria specified by the log query bean.- Specified by:
- getLogListForServerInstancein interface- RepositoryReader
- Parameters:
- time-- Datevalue used to determine the server instance where the server start time occurs before this value and the server stop time occurs after this value
- query-- LogQueryBeaninstance representing set of criteria each of which need to be met by the return records.
- Returns:
- the iterable list of log records If no records meet the criteria, the list is empty.
- See Also:
- LogQueryBean
 
 - 
getLogListForServerInstancepublic ServerInstanceLogRecordList getLogListForServerInstance(RepositoryPointer after, LogQueryBean query) Description copied from interface:RepositoryReaderreturns log records from the repository for one server instance that are beyond a given repository location, according to the criteria specified by the log query bean.- Specified by:
- getLogListForServerInstancein interface- RepositoryReader
- Parameters:
- after- pointer to a record the list will start after
- query-- LogQueryBeaninstance representing set of criteria each of which need to be met by the return records.
- Returns:
- the iterable list of log records If no records meet the criteria, the list is empty.
- See Also:
- LogQueryBean
 
 
- 
 
-