
com.clusterra.pmbok.rest.reference.resource.ReferenceResource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clusterra-pmbok-rest-api Show documentation
Show all versions of clusterra-pmbok-rest-api Show documentation
A application used as an example on how to set up pushing its components to the Central Repository.
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