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

com.clusterra.pmbok.rest.reference.resource.ReferenceResource Maven / Gradle / Ivy

Go to download

A application used as an example on how to set up pushing its components to the Central Repository.

There is a newer version: 1.1.3.RELEASE
Show newest version
package com.clusterra.pmbok.rest.reference.resource;


import org.springframework.hateoas.ResourceSupport;

import java.util.Date;

public class ReferenceResource extends ResourceSupport {

    private final String referenceId;

    private final String number;

    private final String name;

    private final Date publicationDate;

    private final String author;

    public ReferenceResource(String referenceId, String number, String name, Date publicationDate, String author) {
        this.referenceId = referenceId;
        this.number = number;
        this.name = name;
        this.publicationDate = publicationDate;
        this.author = author;
    }

    public String getReferenceId() {
        return referenceId;
    }

    public String getNumber() {
        return number;
    }

    public String getName() {
        return name;
    }

    public Date getPublicationDate() {
        return publicationDate;
    }

    public String getAuthor() {
        return author;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy