001
014
015 package com.liferay.portlet.mobiledevicerules.service.persistence;
016
017
020 public interface MDRRuleGroupFinder {
021 public int countByG_N(long groupId, java.lang.String name)
022 throws com.liferay.portal.kernel.exception.SystemException;
023
024 public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> findByG_N(
025 long groupId, java.lang.String name)
026 throws com.liferay.portal.kernel.exception.SystemException;
027
028 public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> findByG_N(
029 long groupId, java.lang.String name, int start, int end)
030 throws com.liferay.portal.kernel.exception.SystemException;
031 }