@Override
 public List<AttributeMaster> getSearchedData(String attributeId, String attributeName) {
   List<AttributeMaster> attributeList = null;
   try {
     attributeList = attributeMasterFacade.find(attributeId, attributeName);
   } catch (Exception e) {
     e.printStackTrace();
   }
   return attributeList;
 }