001
014
015 package com.liferay.portal.monitoring.jmx;
016
017 import com.liferay.portal.kernel.monitoring.MonitoringException;
018 import com.liferay.portal.monitoring.statistics.portlet.PortletSummaryStatistics;
019
020
024 public interface PortletManagerMBean extends PortletSummaryStatistics {
025
026 public long[] getCompanyIds() throws MonitoringException;
027
028 public String[] getPortletIds() throws MonitoringException;
029
030 public String[] getWebIds() throws MonitoringException;
031
032 public void reset();
033
034 public void reset(long companyId);
035
036 public void reset(String webId);
037
038 }