ParameterInfoDto.java
// Created on Feb 1, 2015
// $Id$
package com.mycim.apis.eap.dto;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
public class ParameterInfoDto implements Serializable {
private Long parameterRrn;
private String parameterId;
private Integer parameterSequence;
private String parameterDesc;
private String collectionLevel;
private String measureType;
private String dataType;
private List<SampleInfoDto> samplePrompts = new ArrayList<>();
/**
* @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 measureType
*/
public String getMeasureType() {
return measureType;
}
/**
* @param measureType the measureType to set
*/
public void setMeasureType(String measureType) {
this.measureType = measureType;
}
/**
* @return the dataType
*/
public String getDataType() {
return dataType;
}
/**
* @param dataType the dataType to set
*/
public void setDataType(String dataType) {
this.dataType = dataType;
}
/**
* @return the samplePrompts
*/
public List<SampleInfoDto> getSamplePrompts() {
return samplePrompts;
}
/**
* @param samplePrompts the samplePrompts to set
*/
public void setSamplePrompts(List<SampleInfoDto> samplePrompts) {
this.samplePrompts = samplePrompts;
}
}