com.univocity.api.common.ResourceProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of univocity-api Show documentation
Show all versions of univocity-api Show documentation
uniVocity Data Integration's Public API
The newest version!
/*******************************************************************************
* Copyright (c) 2013 uniVocity Software Pty Ltd. All rights reserved.
* This file is subject to the terms and conditions defined in file
* 'LICENSE.txt', which is part of this source code package.
******************************************************************************/
package com.univocity.api.common;
/**
* Generic interface to define classes that provide a given resource.
*
* @author uniVocity Software Pty Ltd - [email protected]
*
* @param the type of resource provided by this ResourceProvider
*/
public interface ResourceProvider {
/**
* Returns the resource provided by this class
* @return the resource provided by this class
*/
public T getResource();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy