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

Packages that use ChangeLogType
edu.internet2.middleware.grouper.changeLog   
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 ChangeLogType in edu.internet2.middleware.grouper.changeLog
 

Methods in edu.internet2.middleware.grouper.changeLog that return ChangeLogType
static ChangeLogType ChangeLogTypeFinder.find(java.lang.String changeLogTypeId, boolean exceptionIfNotFound)
          Find an ChangeLogType.
static ChangeLogType ChangeLogTypeFinder.find(java.lang.String changeLogCategory, java.lang.String changeLogAction, boolean exceptionIfNotFound)
          Find an ChangeLogType.
 ChangeLogType ChangeLogEntry.getChangeLogType()
          get the changeLog type, it better be there
 ChangeLogType ChangeLogTypeBuiltin.getChangeLogType()
          get the audit type from the enum
 ChangeLogType ChangeLogTypeBuiltin.internal_changeLogTypeDefault()
          get the defaults, but not the id
 

Methods in edu.internet2.middleware.grouper.changeLog with parameters of type ChangeLogType
 void ChangeLogEntry.assignStringValue(ChangeLogType changeLogType, java.lang.String label, java.lang.String value)
           
 void ChangeLogType.copyArgFieldIntoThis(ChangeLogType changeLogType)
          copy the argument into this
 boolean ChangeLogType.equalsDeep(ChangeLogType changeLogType)
          see if one changeLog type is the same as another (not looking at last update, id, etc)
 

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

Methods in edu.internet2.middleware.grouper.internal.dao that return types with arguments of type ChangeLogType
 java.util.Set<ChangeLogType> ChangeLogTypeDAO.findAll()
          find all change log types
 

Methods in edu.internet2.middleware.grouper.internal.dao with parameters of type ChangeLogType
 void ChangeLogTypeDAO.saveOrUpdate(ChangeLogType changeLogType)
          insert or update an change log entry object
 

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

Methods in edu.internet2.middleware.grouper.internal.dao.hib3 that return types with arguments of type ChangeLogType
 java.util.Set<ChangeLogType> Hib3ChangeLogTypeDAO.findAll()
           
 

Methods in edu.internet2.middleware.grouper.internal.dao.hib3 with parameters of type ChangeLogType
 void Hib3ChangeLogTypeDAO.saveOrUpdate(ChangeLogType changeLogType)