com.liferay.portlet.tags.service
Interface TagsEntryLocalService


public interface TagsEntryLocalService

View Source

ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

This interface defines the service. The default implementation is com.liferay.portlet.tags.service.impl.TagsEntryLocalServiceImpl. Modify methods in that class and rerun ServiceBuilder to populate this class and all other generated classes.

This is a local service. Methods of this service will not have security checks based on the propagated JAAS credentials because this service can only be accessed from within the same VM.

Author:
Brian Wing Shun Chan
See Also:
TagsEntryLocalServiceFactory, TagsEntryLocalServiceUtil

Method Summary
 TagsEntry addEntry(long userId, java.lang.String name)
           
 TagsEntry addEntry(long userId, java.lang.String name, java.lang.String[] properties)
           
 TagsEntry addTagsEntry(TagsEntry model)
           
 void afterPropertiesSet()
           
 void checkEntries(long userId, java.lang.String[] names)
           
 void deleteEntry(long entryId)
           
 void deleteEntry(TagsEntry entry)
           
 java.util.List dynamicQuery(com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer)
           
 java.util.List dynamicQuery(com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer, int begin, int end)
           
 java.util.List getAssetEntries(long assetId)
           
 java.util.List getEntries()
           
 java.util.List getEntries(long classNameId, long classPK)
           
 java.util.List getEntries(java.lang.String className, long classPK)
           
 TagsEntry getEntry(long entryId)
           
 TagsEntry getEntry(long companyId, java.lang.String name)
           
 long[] getEntryIds(long companyId, java.lang.String[] names)
           
 java.lang.String[] getEntryNames()
           
 java.lang.String[] getEntryNames(long classNameId, long classPK)
           
 java.lang.String[] getEntryNames(java.lang.String className, long classPK)
           
 TagsAssetFinder getTagsAssetFinder()
           
 TagsAssetPersistence getTagsAssetPersistence()
           
 TagsEntryFinder getTagsEntryFinder()
           
 TagsEntryPersistence getTagsEntryPersistence()
           
 TagsPropertyFinder getTagsPropertyFinder()
           
 TagsPropertyKeyFinder getTagsPropertyKeyFinder()
           
 TagsPropertyPersistence getTagsPropertyPersistence()
           
 TagsSourcePersistence getTagsSourcePersistence()
           
 UserFinder getUserFinder()
           
 UserPersistence getUserPersistence()
           
 boolean hasEntry(long companyId, java.lang.String name)
           
 java.util.List search(long companyId, java.lang.String name, java.lang.String[] properties)
           
 java.util.List search(long companyId, java.lang.String name, java.lang.String[] properties, int begin, int end)
           
 com.liferay.portal.kernel.json.JSONArrayWrapper searchAutocomplete(long companyId, java.lang.String name, java.lang.String[] properties, int begin, int end)
           
 int searchCount(long companyId, java.lang.String name, java.lang.String[] properties)
           
 void setTagsAssetFinder(TagsAssetFinder tagsAssetFinder)
           
 void setTagsAssetPersistence(TagsAssetPersistence tagsAssetPersistence)
           
 void setTagsEntryFinder(TagsEntryFinder tagsEntryFinder)
           
 void setTagsEntryPersistence(TagsEntryPersistence tagsEntryPersistence)
           
 void setTagsPropertyFinder(TagsPropertyFinder tagsPropertyFinder)
           
 void setTagsPropertyKeyFinder(TagsPropertyKeyFinder tagsPropertyKeyFinder)
           
 void setTagsPropertyPersistence(TagsPropertyPersistence tagsPropertyPersistence)
           
 void setTagsSourcePersistence(TagsSourcePersistence tagsSourcePersistence)
           
 void setUserFinder(UserFinder userFinder)
           
 void setUserPersistence(UserPersistence userPersistence)
           
 TagsEntry updateEntry(long userId, long entryId, java.lang.String name, java.lang.String[] properties)
           
 TagsEntry updateEntry(long entryId, java.lang.String name)
           
 TagsEntry updateTagsEntry(TagsEntry model)
           
 

Method Detail

addTagsEntry

public TagsEntry addTagsEntry(TagsEntry model)
                       throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

dynamicQuery

public java.util.List dynamicQuery(com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer)
                            throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

dynamicQuery

public java.util.List dynamicQuery(com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer,
                                   int begin,
                                   int end)
                            throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

updateTagsEntry

public TagsEntry updateTagsEntry(TagsEntry model)
                          throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

getTagsAssetPersistence

public TagsAssetPersistence getTagsAssetPersistence()

setTagsAssetPersistence

public void setTagsAssetPersistence(TagsAssetPersistence tagsAssetPersistence)

getTagsAssetFinder

public TagsAssetFinder getTagsAssetFinder()

setTagsAssetFinder

public void setTagsAssetFinder(TagsAssetFinder tagsAssetFinder)

getTagsEntryPersistence

public TagsEntryPersistence getTagsEntryPersistence()

setTagsEntryPersistence

public void setTagsEntryPersistence(TagsEntryPersistence tagsEntryPersistence)

getTagsEntryFinder

public TagsEntryFinder getTagsEntryFinder()

setTagsEntryFinder

public void setTagsEntryFinder(TagsEntryFinder tagsEntryFinder)

getTagsPropertyPersistence

public TagsPropertyPersistence getTagsPropertyPersistence()

setTagsPropertyPersistence

public void setTagsPropertyPersistence(TagsPropertyPersistence tagsPropertyPersistence)

getTagsPropertyFinder

public TagsPropertyFinder getTagsPropertyFinder()

setTagsPropertyFinder

public void setTagsPropertyFinder(TagsPropertyFinder tagsPropertyFinder)

getTagsPropertyKeyFinder

public TagsPropertyKeyFinder getTagsPropertyKeyFinder()

setTagsPropertyKeyFinder

public void setTagsPropertyKeyFinder(TagsPropertyKeyFinder tagsPropertyKeyFinder)

getTagsSourcePersistence

public TagsSourcePersistence getTagsSourcePersistence()

setTagsSourcePersistence

public void setTagsSourcePersistence(TagsSourcePersistence tagsSourcePersistence)

getUserPersistence

public UserPersistence getUserPersistence()

setUserPersistence

public void setUserPersistence(UserPersistence userPersistence)

getUserFinder

public UserFinder getUserFinder()

setUserFinder

public void setUserFinder(UserFinder userFinder)

afterPropertiesSet

public void afterPropertiesSet()

addEntry

public TagsEntry addEntry(long userId,
                          java.lang.String name)
                   throws com.liferay.portal.SystemException,
                          com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

addEntry

public TagsEntry addEntry(long userId,
                          java.lang.String name,
                          java.lang.String[] properties)
                   throws com.liferay.portal.SystemException,
                          com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

checkEntries

public void checkEntries(long userId,
                         java.lang.String[] names)
                  throws com.liferay.portal.SystemException,
                         com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

deleteEntry

public void deleteEntry(long entryId)
                 throws com.liferay.portal.SystemException,
                        com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

deleteEntry

public void deleteEntry(TagsEntry entry)
                 throws com.liferay.portal.SystemException,
                        com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

hasEntry

public boolean hasEntry(long companyId,
                        java.lang.String name)
                 throws com.liferay.portal.SystemException,
                        com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

getAssetEntries

public java.util.List getAssetEntries(long assetId)
                               throws com.liferay.portal.SystemException,
                                      com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

getEntries

public java.util.List getEntries()
                          throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

getEntries

public java.util.List getEntries(java.lang.String className,
                                 long classPK)
                          throws com.liferay.portal.SystemException,
                                 com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

getEntries

public java.util.List getEntries(long classNameId,
                                 long classPK)
                          throws com.liferay.portal.SystemException,
                                 com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

getEntry

public TagsEntry getEntry(long entryId)
                   throws com.liferay.portal.SystemException,
                          com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

getEntry

public TagsEntry getEntry(long companyId,
                          java.lang.String name)
                   throws com.liferay.portal.SystemException,
                          com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

getEntryIds

public long[] getEntryIds(long companyId,
                          java.lang.String[] names)
                   throws com.liferay.portal.SystemException,
                          com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

getEntryNames

public java.lang.String[] getEntryNames()
                                 throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

getEntryNames

public java.lang.String[] getEntryNames(java.lang.String className,
                                        long classPK)
                                 throws com.liferay.portal.SystemException,
                                        com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

getEntryNames

public java.lang.String[] getEntryNames(long classNameId,
                                        long classPK)
                                 throws com.liferay.portal.SystemException,
                                        com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

search

public java.util.List search(long companyId,
                             java.lang.String name,
                             java.lang.String[] properties)
                      throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

search

public java.util.List search(long companyId,
                             java.lang.String name,
                             java.lang.String[] properties,
                             int begin,
                             int end)
                      throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

searchAutocomplete

public com.liferay.portal.kernel.json.JSONArrayWrapper searchAutocomplete(long companyId,
                                                                          java.lang.String name,
                                                                          java.lang.String[] properties,
                                                                          int begin,
                                                                          int end)
                                                                   throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

searchCount

public int searchCount(long companyId,
                       java.lang.String name,
                       java.lang.String[] properties)
                throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

updateEntry

public TagsEntry updateEntry(long entryId,
                             java.lang.String name)
                      throws com.liferay.portal.SystemException,
                             com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

updateEntry

public TagsEntry updateEntry(long userId,
                             long entryId,
                             java.lang.String name,
                             java.lang.String[] properties)
                      throws com.liferay.portal.SystemException,
                             com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException