
com.github.aistomin.maven.browser.MvnArtifactVersion Maven / Gradle / Ivy
/*
* Copyright (c) 2019-2022, Istomin Andrei
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.aistomin.maven.browser;
/**
* The interface of classes which represent the Maven artifact's version.
*
* @since 0.1
*/
public interface MvnArtifactVersion {
/**
* Maven artifact.
*
* @return The artifact.
*/
MvnArtifact artifact();
/**
* Version's name.
*
* @return The name of the version.
*/
String name();
/**
* The timestamp when the version was released.
*
* @return The timestamp.
*/
Long releaseTimestamp();
/**
* Artifact's version identifier. Normally it looks like
* "group_name:artifact_name:version".
*
* @return The version's identifier.
*/
String identifier();
/**
* Artifact's version dependency.
*
* @return The dependency.
*/
MvnDependency dependency();
/**
* Artifact's packaging.
*
* @return Packaging type.
*/
MvnPackagingType packaging();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy