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