redora.configuration.rdo.service.RedoraConfigurationService Maven / Gradle / Ivy
package redora.configuration.rdo.service;
import org.jetbrains.annotations.NotNull;
import redora.configuration.rdo.service.base.RedoraConfigurationServiceBase;
import redora.service.ServiceBase;
import redora.exceptions.ConnectException;
/**
* Service layer for all database access activities around the RedoraConfiguration object.
* Redora actually implements everything in RedoraConfigurationServiceBase and RedoraConfigurationService
* extends it. You can add extra services yourself in this class. Usage:
*
* RedoraConfigurationService service ServiceFactory.redoraConfigurationService();
* service.doStuff();
* ServiceFactory.close(service);
*
* @author Redora (www.redora.net)
*/
public class RedoraConfigurationService extends RedoraConfigurationServiceBase {
//Protected to avoid instantiation outside ServiceFactory
protected RedoraConfigurationService() throws ConnectException {
super();
}
/**
* Instantiate by passing another service object. This RedoraConfigurationService
* 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 RedoraConfigurationService(@NotNull ServiceBase chain) {
super(chain);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy