| org.kuali.core.dao.MaintenanceDocumentDao
All known Subclasses: org.kuali.core.dao.ojb.MaintenanceDocumentDaoOjb,
MaintenanceDocumentDao | public interface MaintenanceDocumentDao (Code) | | This interface defines basic methods that MaintenanceDocument Dao's must provide
|
deleteLocks | public void deleteLocks(String documentNumber)(Code) | | This method deletes the locks for the given document number. It is called when the document is final,
thus it can be unlocked, or when the locks need to be regenerated (thus they get cleared first).
Parameters: documentNumber - - document number whose locks should be deleted |
getLockingDocumentNumber | public String getLockingDocumentNumber(String lockingRepresentation, String documentNumber)(Code) | | This method looks for a document that is locking the given lockingRepresentation. If one is found, then it
retrieves the documentNumber, and returns it.
Parameters: lockingRepresentation - - locking representation to check for Parameters: documentNumber - - document number to ignore, optional argument returns an empty string if no locking document is found, otherwise returns the documentNumber of the locking document |
getPendingDocumentsForClass | public Collection getPendingDocumentsForClass(Class businessObjectClass)(Code) | | |
storeLocks | public void storeLocks(List<MaintenanceLock> maintenanceLocks)(Code) | | This method stores the given list of maintenance locks. Typically these will all be for the same document.
Parameters: maintenanceLocks - - the list of maintenance locks to be stored |
|
|