Skip to content

Commit ffc35ef

Browse files
committed
Added set methods (#243).
1 parent ae9200f commit ffc35ef

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/main/java/org/gitlab4j/api/models/Permissions.java

+8
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,15 @@ public ProjectAccess getProjectAccess() {
1515
return projectAccess;
1616
}
1717

18+
public void setProjectAccess(ProjectAccess projectAccess) {
19+
this.projectAccess = projectAccess;
20+
}
21+
1822
public ProjectAccess getGroupAccess() {
1923
return groupAccess;
2024
}
25+
26+
public void setGroupAccess(ProjectAccess groupAccess) {
27+
this.groupAccess = groupAccess;
28+
}
2129
}

0 commit comments

Comments
 (0)