
org.gitlab4j.api.models.ProjectAccessToken Maven / Gradle / Ivy
package org.gitlab4j.api.models;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
import org.gitlab4j.api.Constants;
import org.gitlab4j.api.utils.JacksonJson;
public class ProjectAccessToken implements Serializable {
private static final long serialVersionUID = 1L;
private Long userId;
private List scopes;
private String name;
private Date expiresAt;
private Long id;
private Boolean active;
private Date createdAt;
private Boolean revoked;
private Long accessLevel;
private Date lastUsedAt;
private String token;
public Long getUserId() {
return userId;
}
public void setUserId(Long userId) {
this.userId = userId;
}
public List getScopes() {
return scopes;
}
public void setScopes(List scopes) {
this.scopes = scopes;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Date getExpiresAt() {
return expiresAt;
}
public void setExpiresAt(Date expiredAt) {
this.expiresAt = expiredAt;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Boolean isActive() {
return active;
}
public void setActive(Boolean active) {
this.active = active;
}
public Date getCreatedAt() {
return createdAt;
}
public void setCreatedAt(Date createdAt) {
this.createdAt = createdAt;
}
public Boolean isRevoked() {
return revoked;
}
public void setRevoked(Boolean revoked) {
this.revoked = revoked;
}
public Long getAccessLevel() {
return accessLevel;
}
public void setAccessLevel(Long accessLevel) {
this.accessLevel = accessLevel;
}
public Date getLastUsedAt() {
return lastUsedAt;
}
public void setLastUsedAt(Date lastUsedAt) {
this.lastUsedAt = lastUsedAt;
}
public String getToken() {
return token;
}
public void setToken(String token) {
this.token = token;
}
@Override
public String toString() {
return JacksonJson.toJsonString(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy