1
14
15 package com.liferay.counter.service.persistence;
16
17
22 public interface CounterFinder {
23 public java.util.List<java.lang.String> getNames()
24 throws com.liferay.portal.kernel.exception.SystemException;
25
26 public long increment()
27 throws com.liferay.portal.kernel.exception.SystemException;
28
29 public long increment(java.lang.String name)
30 throws com.liferay.portal.kernel.exception.SystemException;
31
32 public long increment(java.lang.String name, int size)
33 throws com.liferay.portal.kernel.exception.SystemException;
34
35 public void rename(java.lang.String oldName, java.lang.String newName)
36 throws com.liferay.portal.kernel.exception.SystemException;
37
38 public void reset(java.lang.String name)
39 throws com.liferay.portal.kernel.exception.SystemException;
40
41 public void reset(java.lang.String name, long size)
42 throws com.liferay.portal.kernel.exception.SystemException;
43 }