Commit 764787fa authored by Greg Messner's avatar Greg Messner
Browse files

Changed boolean to Boolean.

parent 41f6f41f
...@@ -11,7 +11,7 @@ public class Branch { ...@@ -11,7 +11,7 @@ public class Branch {
private Commit commit; private Commit commit;
private String name; private String name;
private boolean isProtected; private Boolean isProtected;
public Commit getCommit () { public Commit getCommit () {
return this.commit; return this.commit;
...@@ -29,11 +29,11 @@ public class Branch { ...@@ -29,11 +29,11 @@ public class Branch {
this.name = name; this.name = name;
} }
public boolean getProtected () { public Boolean getProtected () {
return this.isProtected; return this.isProtected;
} }
public void setProtected (boolean isProtected) { public void setProtected (Boolean isProtected) {
this.isProtected = isProtected; this.isProtected = isProtected;
} }
} }
...@@ -17,22 +17,22 @@ public class Project { ...@@ -17,22 +17,22 @@ public class Project {
private String description; private String description;
private String httpUrlToRepo; private String httpUrlToRepo;
private Integer id; private Integer id;
private boolean issuesEnabled; private Boolean issuesEnabled;
private Date lastActivityAt; private Date lastActivityAt;
private boolean mergeRequestsEnabled; private Boolean mergeRequestsEnabled;
private String name; private String name;
private String nameWithNamespace; private String nameWithNamespace;
private Namespace namespace; private Namespace namespace;
private Owner owner; private Owner owner;
private String path; private String path;
private String pathWithNamespace; private String pathWithNamespace;
private boolean isPublic; private Boolean isPublic;
private boolean snippetsEnabled; private Boolean snippetsEnabled;
private String sshUrlToRepo; private String sshUrlToRepo;
private Integer visibilityLevel; private Integer visibilityLevel;
private boolean wallEnabled; private Boolean wallEnabled;
private String webUrl; private String webUrl;
private boolean wikiEnabled; private Boolean wikiEnabled;
public Date getCreatedAt () { public Date getCreatedAt () {
return this.createdAt; return this.createdAt;
...@@ -74,11 +74,11 @@ public class Project { ...@@ -74,11 +74,11 @@ public class Project {
this.id = id; this.id = id;
} }
public boolean getIssuesEnabled () { public Boolean getIssuesEnabled () {
return this.issuesEnabled; return this.issuesEnabled;
} }
public void setIssuesEnabled (boolean issuesEnabled) { public void setIssuesEnabled (Boolean issuesEnabled) {
this.issuesEnabled = issuesEnabled; this.issuesEnabled = issuesEnabled;
} }
...@@ -90,11 +90,11 @@ public class Project { ...@@ -90,11 +90,11 @@ public class Project {
this.lastActivityAt = lastActivityAt; this.lastActivityAt = lastActivityAt;
} }
public boolean getMergeRequestsEnabled () { public Boolean getMergeRequestsEnabled () {
return this.mergeRequestsEnabled; return this.mergeRequestsEnabled;
} }
public void setMergeRequestsEnabled (boolean mergeRequestsEnabled) { public void setMergeRequestsEnabled (Boolean mergeRequestsEnabled) {
this.mergeRequestsEnabled = mergeRequestsEnabled; this.mergeRequestsEnabled = mergeRequestsEnabled;
} }
...@@ -146,19 +146,19 @@ public class Project { ...@@ -146,19 +146,19 @@ public class Project {
this.pathWithNamespace = pathWithNamespace; this.pathWithNamespace = pathWithNamespace;
} }
public boolean getPublic () { public Boolean getPublic () {
return this.isPublic; return this.isPublic;
} }
public void setPublic (boolean isPublic) { public void setPublic (Boolean isPublic) {
this.isPublic = isPublic; this.isPublic = isPublic;
} }
public boolean getSnippetsEnabled () { public Boolean getSnippetsEnabled () {
return this.snippetsEnabled; return this.snippetsEnabled;
} }
public void setSnippetsEnabled (boolean snippetsEnabled) { public void setSnippetsEnabled (Boolean snippetsEnabled) {
this.snippetsEnabled = snippetsEnabled; this.snippetsEnabled = snippetsEnabled;
} }
...@@ -178,11 +178,11 @@ public class Project { ...@@ -178,11 +178,11 @@ public class Project {
this.visibilityLevel = visibilityLevel; this.visibilityLevel = visibilityLevel;
} }
public boolean getWallEnabled () { public Boolean getWallEnabled () {
return this.wallEnabled; return this.wallEnabled;
} }
public void setWallEnabled (boolean wallEnabled) { public void setWallEnabled (Boolean wallEnabled) {
this.wallEnabled = wallEnabled; this.wallEnabled = wallEnabled;
} }
...@@ -194,11 +194,11 @@ public class Project { ...@@ -194,11 +194,11 @@ public class Project {
this.webUrl = webUrl; this.webUrl = webUrl;
} }
public boolean getWikiEnabled () { public Boolean getWikiEnabled () {
return this.wikiEnabled; return this.wikiEnabled;
} }
public void setWikiEnabled (boolean wikiEnabled) { public void setWikiEnabled (Boolean wikiEnabled) {
this.wikiEnabled = wikiEnabled; this.wikiEnabled = wikiEnabled;
} }
} }
...@@ -11,15 +11,15 @@ import javax.xml.bind.annotation.XmlRootElement; ...@@ -11,15 +11,15 @@ import javax.xml.bind.annotation.XmlRootElement;
public class Session { public class Session {
private String bio; private String bio;
private boolean blocked; private Boolean blocked;
private boolean canCreateGroup; private Boolean canCreateGroup;
private boolean canCreateProject; private Boolean canCreateProject;
private boolean canCreateTeam; private Boolean canCreateTeam;
private Date createdAt; private Date createdAt;
private boolean darkScheme; private Boolean darkScheme;
private String email; private String email;
private Integer id; private Integer id;
private boolean isAdmin; private Boolean isAdmin;
private String linkedin; private String linkedin;
private String name; private String name;
private String privateToken; private String privateToken;
...@@ -37,35 +37,35 @@ public class Session { ...@@ -37,35 +37,35 @@ public class Session {
this.bio = bio; this.bio = bio;
} }
public boolean getBlocked () { public Boolean getBlocked () {
return this.blocked; return this.blocked;
} }
public void setBlocked (boolean blocked) { public void setBlocked (Boolean blocked) {
this.blocked = blocked; this.blocked = blocked;
} }
public boolean getCanCreateGroup () { public Boolean getCanCreateGroup () {
return this.canCreateGroup; return this.canCreateGroup;
} }
public void setCanCreateGroup (boolean canCreateGroup) { public void setCanCreateGroup (Boolean canCreateGroup) {
this.canCreateGroup = canCreateGroup; this.canCreateGroup = canCreateGroup;
} }
public boolean getCanCreateProject () { public Boolean getCanCreateProject () {
return this.canCreateProject; return this.canCreateProject;
} }
public void setCanCreateProject (boolean canCreateProject) { public void setCanCreateProject (Boolean canCreateProject) {
this.canCreateProject = canCreateProject; this.canCreateProject = canCreateProject;
} }
public boolean getCanCreateTeam () { public Boolean getCanCreateTeam () {
return this.canCreateTeam; return this.canCreateTeam;
} }
public void setCanCreateTeam (boolean canCreateTeam) { public void setCanCreateTeam (Boolean canCreateTeam) {
this.canCreateTeam = canCreateTeam; this.canCreateTeam = canCreateTeam;
} }
...@@ -77,11 +77,11 @@ public class Session { ...@@ -77,11 +77,11 @@ public class Session {
this.createdAt = createdAt; this.createdAt = createdAt;
} }
public boolean getDarkScheme () { public Boolean getDarkScheme () {
return this.darkScheme; return this.darkScheme;
} }
public void setDarkScheme (boolean darkScheme) { public void setDarkScheme (Boolean darkScheme) {
this.darkScheme = darkScheme; this.darkScheme = darkScheme;
} }
...@@ -101,11 +101,11 @@ public class Session { ...@@ -101,11 +101,11 @@ public class Session {
this.id = id; this.id = id;
} }
public boolean getIsAdmin () { public Boolean getIsAdmin () {
return this.isAdmin; return this.isAdmin;
} }
public void setIsAdmin (boolean isAdmin) { public void setIsAdmin (Boolean isAdmin) {
this.isAdmin = isAdmin; this.isAdmin = isAdmin;
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment