@Override
 public com.liferay.portal.model.PersistedModel getPersistedModel(
     java.io.Serializable primaryKeyObj)
     throws com.liferay.portal.kernel.exception.PortalException,
         com.liferay.portal.kernel.exception.SystemException {
   return _proposalRatingTypeLocalService.getPersistedModel(primaryKeyObj);
 }
 /**
  * Returns the number of rows that match the dynamic query.
  *
  * @param dynamicQuery the dynamic query
  * @param projection the projection to apply to the query
  * @return the number of rows that match the dynamic query
  * @throws SystemException if a system exception occurred
  */
 @Override
 public long dynamicQueryCount(
     com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
     com.liferay.portal.kernel.dao.orm.Projection projection)
     throws com.liferay.portal.kernel.exception.SystemException {
   return _proposalRatingTypeLocalService.dynamicQueryCount(dynamicQuery, projection);
 }
 /**
  * Performs a dynamic query on the database and returns a range of the matching rows.
  *
  * <p>Useful when paginating results. Returns a maximum of <code>end - start</code> instances.
  * <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result
  * set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start
  * </code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}
  * will return the full result set. If <code>orderByComparator</code> is specified, then the query
  * will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and
  * pagination is required (<code>start</code> and <code>end</code> are not {@link
  * com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default
  * ORDER BY logic from {@link com.ext.portlet.model.impl.ProposalRatingTypeModelImpl}. If both
  * <code>orderByComparator</code> and pagination are absent, for performance reasons, the query
  * will not have an ORDER BY clause and the returned result set will be sorted on by the primary
  * key in an ascending order.
  *
  * @param dynamicQuery the dynamic query
  * @param start the lower bound of the range of model instances
  * @param end the upper bound of the range of model instances (not inclusive)
  * @return the range of matching rows
  * @throws SystemException if a system exception occurred
  */
 @Override
 @SuppressWarnings("rawtypes")
 public java.util.List dynamicQuery(
     com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end)
     throws com.liferay.portal.kernel.exception.SystemException {
   return _proposalRatingTypeLocalService.dynamicQuery(dynamicQuery, start, end);
 }
 @Override
 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
   return _proposalRatingTypeLocalService.dynamicQuery();
 }
 /**
  * Deletes the proposal rating type from the database. Also notifies the appropriate model
  * listeners.
  *
  * @param proposalRatingType the proposal rating type
  * @return the proposal rating type that was removed
  * @throws SystemException if a system exception occurred
  */
 @Override
 public com.ext.portlet.model.ProposalRatingType deleteProposalRatingType(
     com.ext.portlet.model.ProposalRatingType proposalRatingType)
     throws com.liferay.portal.kernel.exception.SystemException {
   return _proposalRatingTypeLocalService.deleteProposalRatingType(proposalRatingType);
 }
 /**
  * Creates a new proposal rating type with the primary key. Does not add the proposal rating type
  * to the database.
  *
  * @param id the primary key for the new proposal rating type
  * @return the new proposal rating type
  */
 @Override
 public com.ext.portlet.model.ProposalRatingType createProposalRatingType(long id) {
   return _proposalRatingTypeLocalService.createProposalRatingType(id);
 }
 @Override
 public java.lang.Object invokeMethod(
     java.lang.String name, java.lang.String[] parameterTypes, java.lang.Object[] arguments)
     throws java.lang.Throwable {
   return _proposalRatingTypeLocalService.invokeMethod(name, parameterTypes, arguments);
 }
 /**
  * Sets the Spring bean ID for this bean.
  *
  * @param beanIdentifier the Spring bean ID for this bean
  */
 @Override
 public void setBeanIdentifier(java.lang.String beanIdentifier) {
   _proposalRatingTypeLocalService.setBeanIdentifier(beanIdentifier);
 }
 /**
  * Returns the Spring bean ID for this bean.
  *
  * @return the Spring bean ID for this bean
  */
 @Override
 public java.lang.String getBeanIdentifier() {
   return _proposalRatingTypeLocalService.getBeanIdentifier();
 }
 /**
  * Returns the number of proposal rating types.
  *
  * @return the number of proposal rating types
  * @throws SystemException if a system exception occurred
  */
 @Override
 public int getProposalRatingTypesCount()
     throws com.liferay.portal.kernel.exception.SystemException {
   return _proposalRatingTypeLocalService.getProposalRatingTypesCount();
 }
 /**
  * Returns a range of all the proposal rating types.
  *
  * <p>Useful when paginating results. Returns a maximum of <code>end - start</code> instances.
  * <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result
  * set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start
  * </code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}
  * will return the full result set. If <code>orderByComparator</code> is specified, then the query
  * will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and
  * pagination is required (<code>start</code> and <code>end</code> are not {@link
  * com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default
  * ORDER BY logic from {@link com.ext.portlet.model.impl.ProposalRatingTypeModelImpl}. If both
  * <code>orderByComparator</code> and pagination are absent, for performance reasons, the query
  * will not have an ORDER BY clause and the returned result set will be sorted on by the primary
  * key in an ascending order.
  *
  * @param start the lower bound of the range of proposal rating types
  * @param end the upper bound of the range of proposal rating types (not inclusive)
  * @return the range of proposal rating types
  * @throws SystemException if a system exception occurred
  */
 @Override
 public java.util.List<com.ext.portlet.model.ProposalRatingType> getProposalRatingTypes(
     int start, int end) throws com.liferay.portal.kernel.exception.SystemException {
   return _proposalRatingTypeLocalService.getProposalRatingTypes(start, end);
 }
 /**
  * Returns the proposal rating type with the primary key.
  *
  * @param id the primary key of the proposal rating type
  * @return the proposal rating type
  * @throws PortalException if a proposal rating type with the primary key could not be found
  * @throws SystemException if a system exception occurred
  */
 @Override
 public com.ext.portlet.model.ProposalRatingType getProposalRatingType(long id)
     throws com.liferay.portal.kernel.exception.PortalException,
         com.liferay.portal.kernel.exception.SystemException {
   return _proposalRatingTypeLocalService.getProposalRatingType(id);
 }