private String getAttributeValue(AttributeInterface attribute, String attributeType) {
String attributeValue = null;
if(attributeType != null){
attributeType = attributeType.trim();
if(JpaddressbookSystemConstants.ATTRIBUTE_TYPE_DATE.equals(attributeType)){
DateAttribute dateAttribute = (DateAttribute) attribute;
attributeValue = dateAttribute.getFormattedDate("dd/MM/yyyy");
}
if(JpaddressbookSystemConstants.ATTRIBUTE_TYPE_ENUMERATOR.equals(attributeType)){
EnumeratorAttribute textAttribute = (EnumeratorAttribute) attribute;
attributeValue = textAttribute.getText();
}