package org.ohdsi.webapi.report; public class CDMAttribute { private String attributeName; private String attributeValue; /** * @return the attributeName */ public String getAttributeName() { return attributeName; } /** * @param attributeName the attributeName to set */ public void setAttributeName(String attributeName) { this.attributeName = attributeName; } /** * @return the attributeValue */ public String getAttributeValue() { return attributeValue; } /** * @param attributeValue the attributeValue to set */ public void setAttributeValue(String attributeValue) { this.attributeValue = attributeValue; } }