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