org.gitlab4j.api.models.PackageFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gitlab4j-api Show documentation
Show all versions of gitlab4j-api Show documentation
GitLab4J-API (gitlab4j-api) provides a full featured Java client library for working with GitLab repositories and servers via the GitLab REST API.
package org.gitlab4j.api.models;
import java.util.Date;
import org.gitlab4j.api.utils.JacksonJson;
public class PackageFile {
private Integer id;
private Integer packageId;
private Date created_at;
private String fileName;
private Long size;
private String fileMd5;
private String fileSha1;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getPackageId() {
return packageId;
}
public void setPackageId(Integer packageId) {
this.packageId = packageId;
}
public Date getCreated_at() {
return created_at;
}
public void setCreated_at(Date created_at) {
this.created_at = created_at;
}
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public Long getSize() {
return size;
}
public void setSize(Long size) {
this.size = size;
}
public String getFileMd5() {
return fileMd5;
}
public void setFileMd5(String fileMd5) {
this.fileMd5 = fileMd5;
}
public String getFileSha1() {
return fileSha1;
}
public void setFileSha1(String fileSha1) {
this.fileSha1 = fileSha1;
}
@Override
public String toString() {
return (JacksonJson.toJsonString(this));
}
}