liquibase.hub.model.HubLink Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-core Show documentation
Show all versions of liquibase-core Show documentation
Liquibase is a tool for managing and executing database changes.
package liquibase.hub.model;
import java.util.Date;
import java.util.UUID;
public class HubLink {
private String shortUrl;
private String url;
private Date createDate;
public String getShortUrl() {
return shortUrl;
}
public void setShortUrl(String shortUrl) {
this.shortUrl = shortUrl;
}
public void setUrl(String url) {
this.url = url;
}
public String getUrl() {
return url;
}
public Date getCreateDate() {
return createDate;
}
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
}