redora.configuration.rdo.service.RedoraTrashService Maven / Gradle / Ivy
package redora.configuration.rdo.service;
import org.jetbrains.annotations.NotNull;
import redora.configuration.rdo.service.base.RedoraTrashServiceBase;
import redora.service.ServiceBase;
import redora.exceptions.ConnectException;
/**
* Service layer for all database access activities around the RedoraTrash object.
* Redora actually implements everything in RedoraTrashServiceBase and RedoraTrashService
* extends it. You can add extra services yourself in this class. Usage:
*
* RedoraTrashService service ServiceFactory.redoraTrashService();
* service.doStuff();
* ServiceFactory.close(service);
*
* @author Redora (www.redora.net)
*/
public class RedoraTrashService extends RedoraTrashServiceBase {
//Protected to avoid instantiation outside ServiceFactory
protected RedoraTrashService() throws ConnectException {
super();
}
/**
* Instantiate by passing another service object. This RedoraTrashService
* will then used passed service object for database connection and transaction management.
* Typically you use this when a transaction is spawned over several objects.
* @param chain (Mandatory) Active service.
*/
public RedoraTrashService(@NotNull ServiceBase chain) {
super(chain);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy