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

io.connectedhealth_idaas.eventbuilder.dataobjects.general.Telecomm Maven / Gradle / Ivy

package io.connectedhealth_idaas.eventbuilder.dataobjects.general;

import org.apache.commons.lang3.builder.ReflectionToStringBuilder;

public class Telecomm {

    private String useValue;
    private String displayValue;
    private String telecommType;

    public String getUseValue() {
        return useValue;
    }

    public void setUseValue(String useValue) {
        this.useValue = useValue;
    }

    public String getDisplayValue() {
        return displayValue;
    }

    public void setDisplayValue(String displayValue) {
        this.displayValue = displayValue;
    }

    public String getTelecommType() {
        return telecommType;
    }

    public void setTelecommType(String telecommType) {
        this.telecommType = telecommType;
    }

    //toString
    public String toString()
    {
        return ReflectionToStringBuilder.toString(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy