String companyId, String type, OrderByComparator obc)
throws NoSuchConfigException, SystemException {
List list = findByC_T(companyId, type, 0, 1, obc);
if (list.size() == 0) {
throw new NoSuchConfigException();
}
else {
return (com.liferay.portlet.admin.model.AdminConfig)list.get(0);
}
}