org.gitlab.api.models.GitlabNamespace Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-gitlab-api Show documentation
Show all versions of java-gitlab-api Show documentation
A Java wrapper for the Gitlab Git Hosting Server API
package org.gitlab.api.models;
import java.util.Date;
import org.codehaus.jackson.annotate.JsonProperty;
public class GitlabNamespace {
private Integer _id;
private String _name;
private String _path;
@JsonProperty("created_at")
private Date _createdAt;
@JsonProperty("updated_at")
private Date _updatedAt;
@JsonProperty("owner_id")
private Integer _ownerId;
public Integer getId() {
return _id;
}
public void setId(Integer id) {
_id = id;
}
public Date getCreatedAt() {
return _createdAt;
}
public void setCreatedAt(Date createdAt) {
_createdAt = createdAt;
}
public Date getUpdatedAt() {
return _updatedAt;
}
public void setUpdatedAt(Date updatedAt) {
_updatedAt = updatedAt;
}
public Integer getOwnerId() {
return _ownerId;
}
public void setOwnerId(Integer ownerId) {
_ownerId = ownerId;
}
public String getName() {
return _name;
}
public void setName(String name) {
_name = name;
}
public String getPath() {
return _path;
}
public void setPath(String path) {
_path = path;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy