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

org.qas.qtest.api.services.user.model.UserProfile Maven / Gradle / Ivy

The newest version!
package org.qas.qtest.api.services.user.model;

import com.fasterxml.jackson.annotation.JsonProperty;
import org.qas.qtest.api.internal.model.QTestBaseModel;

import java.util.List;

/**
 * @author trongle
 * @version $Id 5/5/2017 5:17 PM
 */
public class UserProfile extends QTestBaseModel{
  @JsonProperty("total_user_profiles")
  private int totalUserProfiles;

  @JsonProperty("total_admin_profiles")
  private int totalAdminProfiles;

  @JsonProperty("user_profiles")
  private List userProfiles;

  @JsonProperty("admin_profiles")
  private List adminProfiles;

  public int getTotalUserProfiles() {
    return totalUserProfiles;
  }

  public UserProfile setTotalUserProfiles(int totalUserProfiles) {
    this.totalUserProfiles = totalUserProfiles;
    return this;
  }

  public int getTotalAdminProfiles() {
    return totalAdminProfiles;
  }

  public UserProfile setTotalAdminProfiles(int totalAdminProfiles) {
    this.totalAdminProfiles = totalAdminProfiles;
    return this;
  }

  public List getUserProfiles() {
    return userProfiles;
  }

  public UserProfile setUserProfiles(List userProfiles) {
    this.userProfiles = userProfiles;
    return this;
  }

  public List getAdminProfiles() {
    return adminProfiles;
  }

  public UserProfile setAdminProfiles(List adminProfiles) {
    this.adminProfiles = adminProfiles;
    return this;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy