polishing

This commit is contained in:
Mark Fisher
2015-07-24 15:03:27 -04:00
parent 55e1bf0de9
commit 5242643820
2 changed files with 7 additions and 2 deletions

View File

@@ -18,16 +18,21 @@ package org.springframework.cloud.stream.module.resolver;
import org.springframework.core.io.Resource;
/**
* Interface used to retrieve a Module uber-jar from a remote or local repository.
* Interface used to return a {@link Resource} that provides access to a module
* uber-jar based on its Maven coordinates.
*
* @author David Turanski
*/
public interface ModuleResolver {
/**
* Retrieve a resource given its coordinates.
*
* @param groupId the groupId
* @param artifactId the artifactId
* @param version the version
* @return the resource
*/
public Resource resolve(String groupId, String artifactId, String version);
}

View File

@@ -1,5 +1,5 @@
/**
* Root package of the Module support.
* Root package of the ModuleResolver support.
*/
package org.springframework.cloud.stream.module.resolver;