if(JpaddressbookSystemConstants.ATTRIBUTE_TYPE_MONOTEXT.equals(attributeType)){
MonoTextAttribute mono = (MonoTextAttribute) attribute;
attributeValue = mono.getText();
}
if(JpaddressbookSystemConstants.ATTRIBUTE_TYPE_NUMBER.equals(attributeType)){
NumberAttribute numberattribute = (NumberAttribute) attribute;
attributeValue = numberattribute.getNumber();
}
if(JpaddressbookSystemConstants.ATTRIBUTE_TYPE_TEXT.equals(attributeType)){
TextAttribute textAttribute = (TextAttribute) attribute;
attributeValue = textAttribute.getText();
}