All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.apicurio.registry.model.GA Maven / Gradle / Ivy

There is a newer version: 3.0.4
Show newest version
package io.apicurio.registry.model;

import lombok.EqualsAndHashCode;
import lombok.Getter;

@Getter
@EqualsAndHashCode(callSuper = true)
public class GA extends GroupId {

    private final ArtifactId artifactId;

    public GA(String groupId, String artifactId) {
        super(groupId);
        this.artifactId = new ArtifactId(artifactId);
    }

    public String getRawArtifactId() {
        return artifactId.getRawArtifactId();
    }

    @Override
    public String toString() {
        return super.toString() + ":" + artifactId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy