1
14
15 package com.liferay.portlet.tags.service.persistence;
16
17 import com.liferay.portal.service.persistence.BasePersistence;
18
19 import com.liferay.portlet.tags.model.TagsSource;
20
21
34 public interface TagsSourcePersistence extends BasePersistence<TagsSource> {
35 public void cacheResult(
36 com.liferay.portlet.tags.model.TagsSource tagsSource);
37
38 public void cacheResult(
39 java.util.List<com.liferay.portlet.tags.model.TagsSource> tagsSources);
40
41 public com.liferay.portlet.tags.model.TagsSource create(long sourceId);
42
43 public com.liferay.portlet.tags.model.TagsSource remove(long sourceId)
44 throws com.liferay.portal.SystemException,
45 com.liferay.portlet.tags.NoSuchSourceException;
46
47
50 public com.liferay.portlet.tags.model.TagsSource update(
51 com.liferay.portlet.tags.model.TagsSource tagsSource)
52 throws com.liferay.portal.SystemException;
53
54 public com.liferay.portlet.tags.model.TagsSource updateImpl(
55 com.liferay.portlet.tags.model.TagsSource tagsSource, boolean merge)
56 throws com.liferay.portal.SystemException;
57
58 public com.liferay.portlet.tags.model.TagsSource findByPrimaryKey(
59 long sourceId)
60 throws com.liferay.portal.SystemException,
61 com.liferay.portlet.tags.NoSuchSourceException;
62
63 public com.liferay.portlet.tags.model.TagsSource fetchByPrimaryKey(
64 long sourceId) throws com.liferay.portal.SystemException;
65
66 public java.util.List<com.liferay.portlet.tags.model.TagsSource> findAll()
67 throws com.liferay.portal.SystemException;
68
69 public java.util.List<com.liferay.portlet.tags.model.TagsSource> findAll(
70 int start, int end) throws com.liferay.portal.SystemException;
71
72 public java.util.List<com.liferay.portlet.tags.model.TagsSource> findAll(
73 int start, int end,
74 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
75 throws com.liferay.portal.SystemException;
76
77 public void removeAll() throws com.liferay.portal.SystemException;
78
79 public int countAll() throws com.liferay.portal.SystemException;
80 }