ParameterDTO.java

package com.mycim.valueobject.automonitor.dto;

import java.util.List;

public class ParameterDTO {

    private Long parameterRrn;

    private String parameterId;

    private String parameterDesc;

    private Integer parameterSequence;

    private String collectionLevel;

    private String dataType;

    private String measureType;

    private Integer samplePromptSize;

    private List<SamplePromptDTO> samplePrompts;

    /**
     * @return the parameterRrn
     */
    public Long getParameterRrn() {
        return parameterRrn;
    }

    /**
     * @param parameterRrn the parameterRrn to set
     */
    public void setParameterRrn(Long parameterRrn) {
        this.parameterRrn = parameterRrn;
    }

    /**
     * @return the parameterId
     */
    public String getParameterId() {
        return parameterId;
    }

    /**
     * @param parameterId the parameterId to set
     */
    public void setParameterId(String parameterId) {
        this.parameterId = parameterId;
    }

    /**
     * @return the parameterDesc
     */
    public String getParameterDesc() {
        return parameterDesc;
    }

    /**
     * @param parameterDesc the parameterDesc to set
     */
    public void setParameterDesc(String parameterDesc) {
        this.parameterDesc = parameterDesc;
    }

    /**
     * @return the parameterSequence
     */
    public Integer getParameterSequence() {
        return parameterSequence;
    }

    /**
     * @param parameterSequence the parameterSequence to set
     */
    public void setParameterSequence(Integer parameterSequence) {
        this.parameterSequence = parameterSequence;
    }

    /**
     * @return the collectionLevel
     */
    public String getCollectionLevel() {
        return collectionLevel;
    }

    /**
     * @param collectionLevel the collectionLevel to set
     */
    public void setCollectionLevel(String collectionLevel) {
        this.collectionLevel = collectionLevel;
    }

    /**
     * @return the dataType
     */
    public String getDataType() {
        return dataType;
    }

    /**
     * @param dataType the dataType to set
     */
    public void setDataType(String dataType) {
        this.dataType = dataType;
    }

    /**
     * @return the measureType
     */
    public String getMeasureType() {
        return measureType;
    }

    /**
     * @param measureType the measureType to set
     */
    public void setMeasureType(String measureType) {
        this.measureType = measureType;
    }

    /**
     * @return the samplePromptSize
     */
    public Integer getSamplePromptSize() {
        return samplePromptSize;
    }

    /**
     * @param samplePromptSize the samplePromptSize to set
     */
    public void setSamplePromptSize(Integer samplePromptSize) {
        this.samplePromptSize = samplePromptSize;
    }

    /**
     * @return the samplePrompts
     */
    public List<SamplePromptDTO> getSamplePrompts() {
        return samplePrompts;
    }

    /**
     * @param samplePrompts the samplePrompts to set
     */
    public void setSamplePrompts(List<SamplePromptDTO> samplePrompts) {
        this.samplePrompts = samplePrompts;
    }

}