Class ArtifactDescriptorRequest

    • Constructor Detail

      • ArtifactDescriptorRequest

        public ArtifactDescriptorRequest​(Artifact artifact,
                                         List<RemoteRepository> repositories,
                                         String context)
        Creates a request with the specified properties.
        Parameters:
        artifact - The artifact whose descriptor should be read, may be null.
        repositories - The repositories to resolve the descriptor from, may be null.
        context - The context in which this request is made, may be null.
    • Method Detail

      • getArtifact

        public Artifact getArtifact()
        Gets the artifact whose descriptor shall be read.
        Returns:
        The artifact or null if not set.
      • setArtifact

        public ArtifactDescriptorRequest setArtifact​(Artifact artifact)
        Sets the artifact whose descriptor shall be read. Eventually, a valid request must have an artifact set.
        Parameters:
        artifact - The artifact, may be null.
        Returns:
        This request for chaining, never null.
      • addRepository

        public ArtifactDescriptorRequest addRepository​(RemoteRepository repository)
        Adds the specified repository for the resolution of the artifact descriptor.
        Parameters:
        repository - The repository to add, may be null.
        Returns:
        This request for chaining, never null.
      • getRequestContext

        public String getRequestContext()
        Gets the context in which this request is made.
        Returns:
        The context, never null.
      • getTrace

        public RequestTrace getTrace()
        Gets the trace information that describes the higher level request/operation in which this request is issued.
        Returns:
        The trace information about the higher level operation or null if none.
      • setTrace

        public ArtifactDescriptorRequest setTrace​(RequestTrace trace)
        Sets the trace information that describes the higher level request/operation in which this request is issued.
        Parameters:
        trace - The trace information about the higher level operation, may be null.
        Returns:
        This request for chaining, never null.