1
22
23 package com.liferay.portal.service.persistence;
24
25
26
39 public interface BrowserTrackerPersistence extends BasePersistence {
40 public void cacheResult(
41 com.liferay.portal.model.BrowserTracker browserTracker);
42
43 public void cacheResult(
44 java.util.List<com.liferay.portal.model.BrowserTracker> browserTrackers);
45
46 public void clearCache();
47
48 public com.liferay.portal.model.BrowserTracker create(long browserTrackerId);
49
50 public com.liferay.portal.model.BrowserTracker remove(long browserTrackerId)
51 throws com.liferay.portal.NoSuchBrowserTrackerException,
52 com.liferay.portal.SystemException;
53
54 public com.liferay.portal.model.BrowserTracker remove(
55 com.liferay.portal.model.BrowserTracker browserTracker)
56 throws com.liferay.portal.SystemException;
57
58
61 public com.liferay.portal.model.BrowserTracker update(
62 com.liferay.portal.model.BrowserTracker browserTracker)
63 throws com.liferay.portal.SystemException;
64
65
77 public com.liferay.portal.model.BrowserTracker update(
78 com.liferay.portal.model.BrowserTracker browserTracker, boolean merge)
79 throws com.liferay.portal.SystemException;
80
81 public com.liferay.portal.model.BrowserTracker updateImpl(
82 com.liferay.portal.model.BrowserTracker browserTracker, boolean merge)
83 throws com.liferay.portal.SystemException;
84
85 public com.liferay.portal.model.BrowserTracker findByPrimaryKey(
86 long browserTrackerId)
87 throws com.liferay.portal.NoSuchBrowserTrackerException,
88 com.liferay.portal.SystemException;
89
90 public com.liferay.portal.model.BrowserTracker fetchByPrimaryKey(
91 long browserTrackerId) throws com.liferay.portal.SystemException;
92
93 public com.liferay.portal.model.BrowserTracker findByUserId(long userId)
94 throws com.liferay.portal.NoSuchBrowserTrackerException,
95 com.liferay.portal.SystemException;
96
97 public com.liferay.portal.model.BrowserTracker fetchByUserId(long userId)
98 throws com.liferay.portal.SystemException;
99
100 public com.liferay.portal.model.BrowserTracker fetchByUserId(long userId,
101 boolean retrieveFromCache) throws com.liferay.portal.SystemException;
102
103 public java.util.List<Object> findWithDynamicQuery(
104 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
105 throws com.liferay.portal.SystemException;
106
107 public java.util.List<Object> findWithDynamicQuery(
108 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
109 int end) throws com.liferay.portal.SystemException;
110
111 public java.util.List<com.liferay.portal.model.BrowserTracker> findAll()
112 throws com.liferay.portal.SystemException;
113
114 public java.util.List<com.liferay.portal.model.BrowserTracker> findAll(
115 int start, int end) throws com.liferay.portal.SystemException;
116
117 public java.util.List<com.liferay.portal.model.BrowserTracker> findAll(
118 int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
119 throws com.liferay.portal.SystemException;
120
121 public void removeByUserId(long userId)
122 throws com.liferay.portal.NoSuchBrowserTrackerException,
123 com.liferay.portal.SystemException;
124
125 public void removeAll() throws com.liferay.portal.SystemException;
126
127 public int countByUserId(long userId)
128 throws com.liferay.portal.SystemException;
129
130 public int countAll() throws com.liferay.portal.SystemException;
131 }