-
Notifications
You must be signed in to change notification settings - Fork 460
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f9baa81
commit 2d9a588
Showing
7 changed files
with
323 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
116 changes: 116 additions & 0 deletions
116
src/main/java/org/gitlab4j/api/models/ProjectAccessToken.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
package org.gitlab4j.api.models; | ||
|
||
import com.fasterxml.jackson.annotation.JsonFormat; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import org.gitlab4j.api.Constants; | ||
import org.gitlab4j.api.utils.JacksonJson; | ||
|
||
import java.util.Date; | ||
import java.util.List; | ||
|
||
public class ProjectAccessToken { | ||
private Long userId; | ||
private List<Constants.ProjectAccessTokenScope> 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<Constants.ProjectAccessTokenScope> getScopes() { | ||
return scopes; | ||
} | ||
|
||
public void setScopes(List<Constants.ProjectAccessTokenScope> 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); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.