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

com.github.jasonmfehr.combiner.factory.InputSourceReaderFactory Maven / Gradle / Ivy

package com.github.jasonmfehr.combiner.factory;

import org.codehaus.plexus.component.annotations.Component;

import com.github.jasonmfehr.combiner.input.InputSourceReader;

@Component(role=InputSourceReaderFactory.class)
public class InputSourceReaderFactory extends ObjectFactory {

	private static final String DEFAULT_PACKAGE = "com.github.jasonmfehr.combiner.input";

	@Override
	protected Class getObjectClass() {
		return InputSourceReader.class;
	}

	@Override
	protected String getDefaultPackage() {
		return DEFAULT_PACKAGE;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy