@Override
 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
     throws PortalException, SystemException {
   return ilmioPersistence.findByPrimaryKey(primaryKeyObj);
 }
 /**
  * Returns the ilmio with the primary key.
  *
  * @param ilmio_id the primary key of the ilmio
  * @return the ilmio
  * @throws PortalException if a ilmio with the primary key could not be found
  * @throws SystemException if a system exception occurred
  */
 @Override
 public Ilmio getIlmio(int ilmio_id) throws PortalException, SystemException {
   return ilmioPersistence.findByPrimaryKey(ilmio_id);
 }