Uses of Class
edu.internet2.middleware.grouper.changeLog.ChangeLogEntry

Packages that use ChangeLogEntry
edu.internet2.middleware.grouper.changeLog   
edu.internet2.middleware.grouper.changeLog.consumer   
edu.internet2.middleware.grouper.client   
edu.internet2.middleware.grouper.internal.dao This package contains the data access object interfaces that a DB layer would have to implement (generally revolving around queries to DB) 
edu.internet2.middleware.grouper.internal.dao.hib3 This package contains hib3 related data access object implementations and mappings 
 

Uses of ChangeLogEntry in edu.internet2.middleware.grouper.changeLog
 

Methods in edu.internet2.middleware.grouper.changeLog that return types with arguments of type ChangeLogEntry
static java.util.Collection<ChangeLogEntry> ChangeLogEntry.fromJsonToCollection(java.lang.String json)
          convert json to a collection (generally of size one) of change log entries
 

Method parameters in edu.internet2.middleware.grouper.changeLog with type arguments of type ChangeLogEntry
 long ChangeLogConsumerBaseImpl.processChangeLogEntries(java.util.List<ChangeLogEntry> changeLogEntryList, ChangeLogProcessorMetadata changeLogProcessorMetadata)
          Process the list of changeLogEntries since the last time this consumer was run.
 long ChangeLogConsumerToMessage.processChangeLogEntries(java.util.List<ChangeLogEntry> changeLogEntryList, ChangeLogProcessorMetadata changeLogProcessorMetadata)
           
abstract  long ChangeLogConsumerBase.processChangeLogEntries(java.util.List<ChangeLogEntry> changeLogEntryList, ChangeLogProcessorMetadata changeLogProcessorMetadata)
          process the change logs
 

Uses of ChangeLogEntry in edu.internet2.middleware.grouper.changeLog.consumer
 

Method parameters in edu.internet2.middleware.grouper.changeLog.consumer with type arguments of type ChangeLogEntry
 long PrintTest.processChangeLogEntries(java.util.List<ChangeLogEntry> changeLogEntryList, ChangeLogProcessorMetadata changeLogProcessorMetadata)
           
 

Uses of ChangeLogEntry in edu.internet2.middleware.grouper.client
 

Method parameters in edu.internet2.middleware.grouper.client with type arguments of type ChangeLogEntry
 long GroupSyncConsumer.processChangeLogEntries(java.util.List<ChangeLogEntry> changeLogEntryList, ChangeLogProcessorMetadata changeLogProcessorMetadata)
          This is going to do best efforts, but if it cant get through, then log and continue...
 

Uses of ChangeLogEntry in edu.internet2.middleware.grouper.internal.dao
 

Methods in edu.internet2.middleware.grouper.internal.dao that return ChangeLogEntry
 ChangeLogEntry ChangeLogEntryDAO.findBySequenceNumber(long sequenceNumber, boolean exceptionIfNotFound)
          find by sequence number.
 

Methods in edu.internet2.middleware.grouper.internal.dao that return types with arguments of type ChangeLogEntry
 java.util.List<ChangeLogEntry> ChangeLogEntryDAO.retrieveBatch(long afterSequenceNumber, int batchSize)
          get the change log records after a sequence number, not including the sequence number
 

Methods in edu.internet2.middleware.grouper.internal.dao with parameters of type ChangeLogEntry
 void ChangeLogEntryDAO.delete(ChangeLogEntry changeLogEntry)
          delete change log entry object
 void ChangeLogEntryDAO.save(ChangeLogEntry changeLogEntry)
          insert a change log entry object
 void ChangeLogEntryDAO.update(ChangeLogEntry changeLogEntry)
          update a change log entry object
 

Method parameters in edu.internet2.middleware.grouper.internal.dao with type arguments of type ChangeLogEntry
 void ChangeLogEntryDAO.saveBatch(java.util.Set<ChangeLogEntry> changeLogEntries, boolean isTempBatch)
          insert a batch of change log entry objects
 

Uses of ChangeLogEntry in edu.internet2.middleware.grouper.internal.dao.hib3
 

Methods in edu.internet2.middleware.grouper.internal.dao.hib3 that return ChangeLogEntry
 ChangeLogEntry Hib3ChangeLogEntryDAO.findBySequenceNumber(long sequenceNumber, boolean exceptionIfNotFound)
           
 

Methods in edu.internet2.middleware.grouper.internal.dao.hib3 that return types with arguments of type ChangeLogEntry
 java.util.List<ChangeLogEntry> Hib3ChangeLogEntryDAO.retrieveBatch(long afterSequenceNumber, int batchSize)
           
 

Methods in edu.internet2.middleware.grouper.internal.dao.hib3 with parameters of type ChangeLogEntry
 void Hib3ChangeLogEntryDAO.delete(ChangeLogEntry changeLogEntry)
           
 void Hib3ChangeLogEntryDAO.save(ChangeLogEntry changeLogEntry)
           
 void Hib3ChangeLogEntryDAO.update(ChangeLogEntry changeLogEntry)
           
 

Method parameters in edu.internet2.middleware.grouper.internal.dao.hib3 with type arguments of type ChangeLogEntry
 void Hib3ChangeLogEntryDAO.saveBatch(java.util.Set<ChangeLogEntry> changeLogEntries, boolean isTempBatch)