1
22
23 package com.liferay.portlet.tags.service;
24
25
26
50 public interface TagsPropertyLocalService {
51 public com.liferay.portlet.tags.model.TagsProperty addTagsProperty(
52 com.liferay.portlet.tags.model.TagsProperty tagsProperty)
53 throws com.liferay.portal.SystemException;
54
55 public void deleteTagsProperty(long propertyId)
56 throws com.liferay.portal.SystemException,
57 com.liferay.portal.PortalException;
58
59 public void deleteTagsProperty(
60 com.liferay.portlet.tags.model.TagsProperty tagsProperty)
61 throws com.liferay.portal.SystemException;
62
63 public java.util.List<Object> dynamicQuery(
64 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65 throws com.liferay.portal.SystemException;
66
67 public java.util.List<Object> dynamicQuery(
68 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
69 int end) throws com.liferay.portal.SystemException;
70
71 public com.liferay.portlet.tags.model.TagsProperty getTagsProperty(
72 long propertyId)
73 throws com.liferay.portal.SystemException,
74 com.liferay.portal.PortalException;
75
76 public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getTagsProperties(
77 int start, int end) throws com.liferay.portal.SystemException;
78
79 public int getTagsPropertiesCount()
80 throws com.liferay.portal.SystemException;
81
82 public com.liferay.portlet.tags.model.TagsProperty updateTagsProperty(
83 com.liferay.portlet.tags.model.TagsProperty tagsProperty)
84 throws com.liferay.portal.SystemException;
85
86 public com.liferay.portlet.tags.model.TagsProperty addProperty(
87 long userId, long entryId, java.lang.String key, java.lang.String value)
88 throws com.liferay.portal.PortalException,
89 com.liferay.portal.SystemException;
90
91 public com.liferay.portlet.tags.model.TagsProperty addProperty(
92 long userId, java.lang.String entryName, java.lang.String key,
93 java.lang.String value)
94 throws com.liferay.portal.PortalException,
95 com.liferay.portal.SystemException;
96
97 public void deleteProperties(long entryId)
98 throws com.liferay.portal.PortalException,
99 com.liferay.portal.SystemException;
100
101 public void deleteProperty(long propertyId)
102 throws com.liferay.portal.PortalException,
103 com.liferay.portal.SystemException;
104
105 public void deleteProperty(
106 com.liferay.portlet.tags.model.TagsProperty property)
107 throws com.liferay.portal.PortalException,
108 com.liferay.portal.SystemException;
109
110 public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getProperties()
111 throws com.liferay.portal.SystemException;
112
113 public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getProperties(
114 long entryId) throws com.liferay.portal.SystemException;
115
116 public com.liferay.portlet.tags.model.TagsProperty getProperty(
117 long propertyId)
118 throws com.liferay.portal.PortalException,
119 com.liferay.portal.SystemException;
120
121 public com.liferay.portlet.tags.model.TagsProperty getProperty(
122 long entryId, java.lang.String key)
123 throws com.liferay.portal.PortalException,
124 com.liferay.portal.SystemException;
125
126 public java.lang.String[] getPropertyKeys(long companyId)
127 throws com.liferay.portal.SystemException;
128
129 public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getPropertyValues(
130 long companyId, java.lang.String key)
131 throws com.liferay.portal.SystemException;
132
133 public com.liferay.portlet.tags.model.TagsProperty updateProperty(
134 long propertyId, java.lang.String key, java.lang.String value)
135 throws com.liferay.portal.PortalException,
136 com.liferay.portal.SystemException;
137 }