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

com.bitcoin.blockchain.api.domain.RegUser Maven / Gradle / Ivy

package com.bitcoin.blockchain.api.domain;

import java.util.List;

/**
 * Created by Jesion on 2015-06-02.
 */
public class RegUser extends User {

    public String regCode;

    public RegUser(String userName,
                   String password,
                   List roles,
                   String organization,
                   String email,
                   String regCode,
                   String phone,
                   String countryCode,
                   String firstName,
                   String lastName) {
        super(userName, password, roles, organization, email);
        this.regCode = regCode;
        this.phone = phone;
        this.countryCode = countryCode;
        this.firstName = firstName;
        this.lastName = lastName;
    }

    public RegUser() {

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy