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

com.jpattern.core.AServiceBuilder Maven / Gradle / Ivy

package com.jpattern.core;

/**
 * 
 * @author Francesco Cina'
 *
 * 29/gen/2011
 */
public abstract class AServiceBuilder {

	private String _serviceName;

    public AServiceBuilder(String aServiceName) {
        _serviceName = aServiceName;
    }

    public final String getName() {
        return _serviceName;
    }
    
    public abstract IService build();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy