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 {
private Commit commit;
private String name;
private boolean isProtected;
private Boolean isProtected;
public Commit getCommit () {
return this.commit;
......@@ -29,11 +29,11 @@ public class Branch {
this.name = name;
}
public boolean getProtected () {
public Boolean getProtected () {
return this.isProtected;
}
public void setProtected (boolean isProtected) {
public void setProtected (Boolean isProtected) {
this.isProtected = isProtected;
}
}
......@@ -17,22 +17,22 @@ public class Project {
private String description;
private String httpUrlToRepo;
private Integer id;
private boolean issuesEnabled;
private Boolean issuesEnabled;
private Date lastActivityAt;
private boolean mergeRequestsEnabled;
private Boolean mergeRequestsEnabled;
private String name;
private String nameWithNamespace;
private Namespace namespace;
private Owner owner;
private String path;
private String pathWithNamespace;
private boolean isPublic;
private boolean snippetsEnabled;
private Boolean isPublic;
private Boolean snippetsEnabled;
private String sshUrlToRepo;
private Integer visibilityLevel;
private boolean wallEnabled;
private Boolean wallEnabled;
private String webUrl;
private boolean wikiEnabled;
private Boolean wikiEnabled;
public Date getCreatedAt () {
return this.createdAt;
......@@ -74,11 +74,11 @@ public class Project {
this.id = id;
}
public boolean getIssuesEnabled () {
public Boolean getIssuesEnabled () {
return this.issuesEnabled;
}
public void setIssuesEnabled (boolean issuesEnabled) {
public void setIssuesEnabled (Boolean issuesEnabled) {
this.issuesEnabled = issuesEnabled;
}
......@@ -90,11 +90,11 @@ public class Project {
this.lastActivityAt = lastActivityAt;
}
public boolean getMergeRequestsEnabled () {
public Boolean getMergeRequestsEnabled () {
return this.mergeRequestsEnabled;
}
public void setMergeRequestsEnabled (boolean mergeRequestsEnabled) {
public void setMergeRequestsEnabled (Boolean mergeRequestsEnabled) {
this.mergeRequestsEnabled = mergeRequestsEnabled;
}
......@@ -146,19 +146,19 @@ public class Project {
this.pathWithNamespace = pathWithNamespace;
}
public boolean getPublic () {
public Boolean getPublic () {
return this.isPublic;
}
public void setPublic (boolean isPublic) {
public void setPublic (Boolean isPublic) {
this.isPublic = isPublic;
}
public boolean getSnippetsEnabled () {
public Boolean getSnippetsEnabled () {
return this.snippetsEnabled;
}
public void setSnippetsEnabled (boolean snippetsEnabled) {
public void setSnippetsEnabled (Boolean snippetsEnabled) {
this.snippetsEnabled = snippetsEnabled;
}
......@@ -178,11 +178,11 @@ public class Project {
this.visibilityLevel = visibilityLevel;
}
public boolean getWallEnabled () {
public Boolean getWallEnabled () {
return this.wallEnabled;
}
public void setWallEnabled (boolean wallEnabled) {
public void setWallEnabled (Boolean wallEnabled) {
this.wallEnabled = wallEnabled;
}
......@@ -194,11 +194,11 @@ public class Project {
this.webUrl = webUrl;
}
public boolean getWikiEnabled () {
public Boolean getWikiEnabled () {
return this.wikiEnabled;
}
public void setWikiEnabled (boolean wikiEnabled) {
public void setWikiEnabled (Boolean wikiEnabled) {
this.wikiEnabled = wikiEnabled;
}
}
......@@ -11,15 +11,15 @@ import javax.xml.bind.annotation.XmlRootElement;
public class Session {
private String bio;
private boolean blocked;
private boolean canCreateGroup;
private boolean canCreateProject;
private boolean canCreateTeam;
private Boolean blocked;
private Boolean canCreateGroup;
private Boolean canCreateProject;
private Boolean canCreateTeam;
private Date createdAt;
private boolean darkScheme;
private Boolean darkScheme;
private String email;
private Integer id;
private boolean isAdmin;
private Boolean isAdmin;
private String linkedin;
private String name;
private String privateToken;
......@@ -37,35 +37,35 @@ public class Session {
this.bio = bio;
}
public boolean getBlocked () {
public Boolean getBlocked () {
return this.blocked;
}
public void setBlocked (boolean blocked) {
public void setBlocked (Boolean blocked) {
this.blocked = blocked;
}
public boolean getCanCreateGroup () {
public Boolean getCanCreateGroup () {
return this.canCreateGroup;
}
public void setCanCreateGroup (boolean canCreateGroup) {
public void setCanCreateGroup (Boolean canCreateGroup) {
this.canCreateGroup = canCreateGroup;
}
public boolean getCanCreateProject () {
public Boolean getCanCreateProject () {
return this.canCreateProject;
}
public void setCanCreateProject (boolean canCreateProject) {
public void setCanCreateProject (Boolean canCreateProject) {
this.canCreateProject = canCreateProject;
}
public boolean getCanCreateTeam () {
public Boolean getCanCreateTeam () {
return this.canCreateTeam;
}
public void setCanCreateTeam (boolean canCreateTeam) {
public void setCanCreateTeam (Boolean canCreateTeam) {
this.canCreateTeam = canCreateTeam;
}
......@@ -77,11 +77,11 @@ public class Session {
this.createdAt = createdAt;
}
public boolean getDarkScheme () {
public Boolean getDarkScheme () {
return this.darkScheme;
}
public void setDarkScheme (boolean darkScheme) {
public void setDarkScheme (Boolean darkScheme) {
this.darkScheme = darkScheme;
}
......@@ -101,11 +101,11 @@ public class Session {
this.id = id;
}
public boolean getIsAdmin () {
public Boolean getIsAdmin () {
return this.isAdmin;
}
public void setIsAdmin (boolean isAdmin) {
public void setIsAdmin (Boolean 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