Class MavenChainedWorkspaceReader

  • All Implemented Interfaces:
    MavenWorkspaceReader, org.eclipse.aether.repository.WorkspaceReader

    public final class MavenChainedWorkspaceReader
    extends java.lang.Object
    implements MavenWorkspaceReader
    A maven workspace reader that delegates to a chain of other readers, effectively aggregating their contents.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private org.eclipse.aether.util.repository.ChainedWorkspaceReader delegate  
      private org.eclipse.aether.repository.WorkspaceReader[] readers  
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private MavenChainedWorkspaceReader​(org.eclipse.aether.repository.WorkspaceReader... readers)
      Creates a new workspace reader by chaining the specified readers.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.io.File findArtifact​(org.eclipse.aether.artifact.Artifact artifact)  
      Model findModel​(org.eclipse.aether.artifact.Artifact artifact)  
      java.util.List<java.lang.String> findVersions​(org.eclipse.aether.artifact.Artifact artifact)  
      org.eclipse.aether.repository.WorkspaceRepository getRepository()  
      static org.eclipse.aether.repository.WorkspaceReader of​(java.util.Collection<org.eclipse.aether.repository.WorkspaceReader> workspaceReaderCollection)
      chains a collection of WorkspaceReaders
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • delegate

        private org.eclipse.aether.util.repository.ChainedWorkspaceReader delegate
      • readers

        private org.eclipse.aether.repository.WorkspaceReader[] readers
    • Constructor Detail

      • MavenChainedWorkspaceReader

        private MavenChainedWorkspaceReader​(org.eclipse.aether.repository.WorkspaceReader... readers)
        Creates a new workspace reader by chaining the specified readers.
        Parameters:
        readers - The readers to chain must not be null.
    • Method Detail

      • getRepository

        public org.eclipse.aether.repository.WorkspaceRepository getRepository()
        Specified by:
        getRepository in interface org.eclipse.aether.repository.WorkspaceReader
      • findArtifact

        public java.io.File findArtifact​(org.eclipse.aether.artifact.Artifact artifact)
        Specified by:
        findArtifact in interface org.eclipse.aether.repository.WorkspaceReader
      • findVersions

        public java.util.List<java.lang.String> findVersions​(org.eclipse.aether.artifact.Artifact artifact)
        Specified by:
        findVersions in interface org.eclipse.aether.repository.WorkspaceReader
      • of

        public static org.eclipse.aether.repository.WorkspaceReader of​(java.util.Collection<org.eclipse.aether.repository.WorkspaceReader> workspaceReaderCollection)
        chains a collection of WorkspaceReaders
        Parameters:
        workspaceReaderCollection - the collection of readers, might be empty but never null
        Returns:
        if the collection contains only one item returns the single item, otherwise creates a new MavenChainedWorkspaceReader chaining all readers in the order of the given collection.