Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.repoweb.model
Interface Repository  view Repository download Repository.java

All Known Implementing Classes:
FailSafeRepository

public interface Repository

Represente un repository Maven.


Method Summary
 GroupList findAllGroups()
          Search alll groups.
 ArtifactList findArtifactByClass(java.lang.String fullClassName)
          Search Artifacts that contains a class.
 ArtifactList findArtifactByName(java.lang.String pattern)
          Search Artifacts that have an id that match pattern.
 Group findGroup(java.lang.String groupId)
          Search for a group.
 GroupList findGroupsByName(java.lang.String pattern)
          Search groups that have a groupId that match pattern.
 

Method Detail

findGroup

public Group findGroup(java.lang.String groupId)
                throws UnknownGroupIdException
Search for a group.


findGroupsByName

public GroupList findGroupsByName(java.lang.String pattern)
Search groups that have a groupId that match pattern.


findArtifactByName

public ArtifactList findArtifactByName(java.lang.String pattern)
Search Artifacts that have an id that match pattern.


findArtifactByClass

public ArtifactList findArtifactByClass(java.lang.String fullClassName)
Search Artifacts that contains a class.


findAllGroups

public GroupList findAllGroups()
Search alll groups.