Class EmptyRepositoryHashSearch
java.lang.Object
org.apache.maven.shared.jar.identification.repository.EmptyRepositoryHashSearch
- All Implemented Interfaces:
- RepositoryHashSearch
@Singleton
@Named("empty")
public class EmptyRepositoryHashSearch
extends Object
implements RepositoryHashSearch
Empty repository hash search.  Always returns an empty list.
 Used for local only implementation of a RepositoryHashSearch. It is expected for the users of this library to provide
 an implementation of a 
RepositoryHashSearch against a
 real repository.- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionList<org.apache.maven.artifact.Artifact> searchBytecodeHash(String hash) Search the repository for artifacts matching the given hash code when consider the bytecode of the classes in the file.List<org.apache.maven.artifact.Artifact> searchFileHash(String hash) Search the repository for artifacts matching the given hash code when consider the entire contents of the file.
- 
Constructor Details- 
EmptyRepositoryHashSearchpublic EmptyRepositoryHashSearch()
 
- 
- 
Method Details- 
searchBytecodeHashDescription copied from interface:RepositoryHashSearchSearch the repository for artifacts matching the given hash code when consider the bytecode of the classes in the file.- Specified by:
- searchBytecodeHashin interface- RepositoryHashSearch
- Parameters:
- hash- the hash code to use
- Returns:
- a list of Artifactinstances that matched
 
- 
searchFileHashDescription copied from interface:RepositoryHashSearchSearch the repository for artifacts matching the given hash code when consider the entire contents of the file.- Specified by:
- searchFileHashin interface- RepositoryHashSearch
- Parameters:
- hash- the hash code to use
- Returns:
- a list of Artifactinstances that matched
 
 
-