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

com.mycomm.IProtocol.beans.AutorizedUserBean Maven / Gradle / Ivy

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.mycomm.IProtocol.beans;

import java.io.Serializable;

/**
 *
 * @author bigdog
 */
public class AutorizedUserBean implements Serializable{
    private String userEmail;
    private String userRealName;
    private String userTelePhone;

    public AutorizedUserBean() {
    }

    public AutorizedUserBean(String userEmail, String userRealName, String userTelePhone) {
        this.userEmail = userEmail;
        this.userRealName = userRealName;
        this.userTelePhone = userTelePhone;
    }
    
    
    

    public String getUserEmail() {
        return userEmail;
    }

    public void setUserEmail(String userEmail) {
        this.userEmail = userEmail;
    }

    public String getUserRealName() {
        return userRealName;
    }

    public void setUserRealName(String userRealName) {
        this.userRealName = userRealName;
    }

    public String getUserTelePhone() {
        return userTelePhone;
    }

    public void setUserTelePhone(String userTelePhone) {
        this.userTelePhone = userTelePhone;
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy