All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ultreia.java4all.http.service.ServiceInitializerImpl Maven / Gradle / Ivy

package io.ultreia.java4all.http.service;

/*
 * #%L
 * Http :: Api
 * %%
 * Copyright (C) 2017 - 2024 Ultreia.io
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Lesser Public License for more details.
 *
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * .
 * #L%
 */


import java.util.Objects;

/**
 * Objet contentant les informations nécessaire pour créer un nouveau service.
 * 

* Ces informations viennent en général du context applicatif appelant. *

* Created on 31/08/15. * * @author Tony Chemit - [email protected] */ public class ServiceInitializerImpl implements DataSourceConfigurationAndConnection, ServiceInitializer { private final C initializerConfig; private final DataSourceConfigurationAndConnection configurationAndConnection; public ServiceInitializerImpl(ServiceInitializer initializer, Conf Conf, Conn Conn) { this(initializer.getInitializerConfig(), Conf, Conn); } public ServiceInitializerImpl(C initializerConfig, Conf Conf, Conn Conn) { this.initializerConfig = Objects.requireNonNull(initializerConfig); this.configurationAndConnection = new DataSourceConfigurationAndConnectionImpl<>(Conf, Conn); } public C getInitializerConfig() { return initializerConfig; } @Override public Conf getConfiguration() { return configurationAndConnection.getConfiguration(); } @Override public Conn getConnection() { return configurationAndConnection.getConnection(); } @Override public void setConfiguration(Conf configuration) { this.configurationAndConnection.setConfiguration(configuration); } @Override public void setConnection(Conn connection) { this.configurationAndConnection.setConnection(connection); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy