Liferay 7.0-ce-m3

com.liferay.portlet.wiki.service
Class WikiNodeServiceUtil

java.lang.Object
  extended by com.liferay.portlet.wiki.service.WikiNodeServiceUtil

@ProviderType
public class WikiNodeServiceUtil
extends Object

Provides the remote service utility for WikiNode. This utility wraps WikiNodeServiceImpl and is the primary access point for service operations in application layer code running on a remote server. Methods of this service are expected to have security checks based on the propagated JAAS credentials because this service can be accessed remotely.

See Also:
WikiNodeService, WikiNodeServiceBaseImpl, WikiNodeServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Constructor Summary
WikiNodeServiceUtil()
           
 
Method Summary
static WikiNode addNode(String name, String description, ServiceContext serviceContext)
           
static void deleteNode(long nodeId)
           
static String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
static WikiNode getNode(long nodeId)
           
static WikiNode getNode(long groupId, String name)
           
static List<WikiNode> getNodes(long groupId)
           
static List<WikiNode> getNodes(long groupId, int status)
           
static List<WikiNode> getNodes(long groupId, int start, int end)
           
static List<WikiNode> getNodes(long groupId, int status, int start, int end)
           
static int getNodesCount(long groupId)
           
static int getNodesCount(long groupId, int status)
           
static WikiNodeService getService()
           
static void importPages(long nodeId, String importer, InputStream[] inputStreams, Map<String,String[]> options)
           
static WikiNode moveNodeToTrash(long nodeId)
           
static void restoreNodeFromTrash(long nodeId)
           
static void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void setService(WikiNodeService service)
          Deprecated. As of 6.2.0
static void subscribeNode(long nodeId)
           
static void unsubscribeNode(long nodeId)
           
static WikiNode updateNode(long nodeId, String name, String description, ServiceContext serviceContext)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

WikiNodeServiceUtil

public WikiNodeServiceUtil()
Method Detail

addNode

public static WikiNode addNode(String name,
                               String description,
                               ServiceContext serviceContext)
                        throws PortalException
Throws:
PortalException

deleteNode

public static void deleteNode(long nodeId)
                       throws PortalException
Throws:
PortalException

getBeanIdentifier

public static String getBeanIdentifier()
Returns the Spring bean ID for this bean.

Returns:
the Spring bean ID for this bean

getNode

public static WikiNode getNode(long groupId,
                               String name)
                        throws PortalException
Throws:
PortalException

getNode

public static WikiNode getNode(long nodeId)
                        throws PortalException
Throws:
PortalException

getNodes

public static List<WikiNode> getNodes(long groupId)
                               throws PortalException
Throws:
PortalException

getNodes

public static List<WikiNode> getNodes(long groupId,
                                      int start,
                                      int end)

getNodes

public static List<WikiNode> getNodes(long groupId,
                                      int status)
                               throws PortalException
Throws:
PortalException

getNodes

public static List<WikiNode> getNodes(long groupId,
                                      int status,
                                      int start,
                                      int end)

getNodesCount

public static int getNodesCount(long groupId)

getNodesCount

public static int getNodesCount(long groupId,
                                int status)

importPages

public static void importPages(long nodeId,
                               String importer,
                               InputStream[] inputStreams,
                               Map<String,String[]> options)
                        throws PortalException
Throws:
PortalException

moveNodeToTrash

public static WikiNode moveNodeToTrash(long nodeId)
                                throws PortalException
Throws:
PortalException

restoreNodeFromTrash

public static void restoreNodeFromTrash(long nodeId)
                                 throws PortalException
Throws:
PortalException

setBeanIdentifier

public static void setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean.

Parameters:
beanIdentifier - the Spring bean ID for this bean

subscribeNode

public static void subscribeNode(long nodeId)
                          throws PortalException
Throws:
PortalException

unsubscribeNode

public static void unsubscribeNode(long nodeId)
                            throws PortalException
Throws:
PortalException

updateNode

public static WikiNode updateNode(long nodeId,
                                  String name,
                                  String description,
                                  ServiceContext serviceContext)
                           throws PortalException
Throws:
PortalException

getService

public static WikiNodeService getService()

setService

@Deprecated
public void setService(WikiNodeService service)
Deprecated. As of 6.2.0


Liferay 7.0-ce-m3