All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.stepniak.android.picheese.api.rest.auth.RestAuthUser Maven / Gradle / Ivy

The newest version!
package net.stepniak.android.picheese.api.rest.auth;

import net.stepniak.picheese.pojos.v1.User;

public class RestAuthUser extends User {
  private static final String TAG = RestAuthUser.class.getName();
  private String email = "";

  public RestAuthUser(User user) {
    super(user.getId(), user.getName());
  }

  public RestAuthUser(User user, String email) {
    super(user.getId(), user.getName());
    this.email = email;
  }

  public String getEmail() {
    return email;
  }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy