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

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

There is a newer version: 3.6.2
Show newest version
package com.jpattern.core;

import java.io.Serializable;

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

	private static final long serialVersionUID = 1L;
	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