/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.portal.security.service.access.quota.persistence; import com.liferay.portal.security.service.access.quota.metric.SAQContextMatcher; import com.liferay.portal.security.service.access.quota.metric.SAQMetricMatcher; /** * @author Stian Sigvartsen */ public abstract class BaseIndexedSAQImpressionProvider implements SAQImpressionProvider { @Override public abstract int getSAQImpressionsCount( long companyId, long expiryIntervalMillis); @Override public void populateSAQImpressions( long companyId, final SAQContextMatcher saqContextMatcher, SAQImpressionConsumer saqImpressionConsumer) { for (final String metricName : saqContextMatcher.getMetricNames()) { populateSAQImpressionsMatchingMetric( companyId, metricName, new SAQMetricMatcher() { @Override public boolean matches(String metricValue) { return saqContextMatcher.matches( metricName, metricValue); } }, saqImpressionConsumer); } } @Override public abstract void populateSAQImpressions( long companyId, SAQImpressionConsumer saqImpressionConsumer); public abstract void populateSAQImpressionsMatchingMetric( long companyId, String metric, SAQMetricMatcher saqMetricMatcher, SAQImpressionConsumer saqImpressionConsumer); }