Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update User.java #323

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,78 +1,89 @@
/**
* Copyright (C) 2015 Fernando Cejas Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.fernandocejas.android10.sample.domain;

/**
* Class that represents a User in the domain layer.
*/
public class User {

private final int userId;
private final int userId;
private String coverUrl;
private String fullName;
private String email;
private String description;
private int followers;

private User(Builder builder) {
this.userId = builder.userId;
this.coverUrl = builder.coverUrl;
this.fullName = builder.fullName;
this.email = builder.email;
this.description = builder.description;
this.followers = builder.followers;
}

public int getUserId() {
return userId;
}

public User(int userId) {
this.userId = userId;
}
public String getCoverUrl() {
return coverUrl;
}

private String coverUrl;
private String fullName;
private String email;
private String description;
private int followers;
public String getFullName() {
return fullName;
}

public int getUserId() {
return userId;
}
public String getEmail() {
return email;
}

public String getCoverUrl() {
return coverUrl;
}
public String getDescription() {
return description;
}

public void setCoverUrl(String coverUrl) {
this.coverUrl = coverUrl;
}
public int getFollowers() {
return followers;
}

public String getFullName() {
return fullName;
}
public static class Builder {
private final int userId;
private String coverUrl;
private String fullName;
private String email;
private String description;
private int followers;

public void setFullName(String fullName) {
this.fullName = fullName;
}
public Builder(int userId) {
this.userId = userId;
}

public String getEmail() {
return email;
}
public Builder coverUrl(String coverUrl) {
this.coverUrl = coverUrl;
return this;
}

public void setEmail(String email) {
this.email = email;
}
public Builder fullName(String fullName) {
this.fullName = fullName;
return this;
}

public String getDescription() {
return description;
}
public Builder email(String email) {
this.email = email;
return this;
}

public void setDescription(String description) {
this.description = description;
}
public Builder description(String description) {
this.description = description;
return this;
}

public int getFollowers() {
return followers;
}
public Builder followers(int followers) {
this.followers = followers;
return this;
}

public void setFollowers(int followers) {
this.followers = followers;
}
public User build() {
return new User(this);
}
}
}