1
7
8 package com.liferay.client.portlet.wiki.service.http;
9
10 public class Portlet_Wiki_WikiNodeServiceSoapBindingImpl implements com.liferay.client.portlet.wiki.service.http.WikiNodeServiceSoap{
11 public com.liferay.client.portlet.wiki.model.WikiNodeSoap addNode(long plid, java.lang.String name, java.lang.String description, boolean addCommunityPermissions, boolean addGuestPermissions) throws java.rmi.RemoteException {
12 return null;
13 }
14
15 public com.liferay.client.portlet.wiki.model.WikiNodeSoap addNode(long plid, java.lang.String name, java.lang.String description, java.lang.String[] communityPermissions, java.lang.String[] guestPermissions) throws java.rmi.RemoteException {
16 return null;
17 }
18
19 public void deleteNode(long nodeId) throws java.rmi.RemoteException {
20 }
21
22 public void subscribeNode(long nodeId) throws java.rmi.RemoteException {
23 }
24
25 public void unsubscribeNode(long nodeId) throws java.rmi.RemoteException {
26 }
27
28 public com.liferay.client.portlet.wiki.model.WikiNodeSoap updateNode(long nodeId, java.lang.String name, java.lang.String description) throws java.rmi.RemoteException {
29 return null;
30 }
31
32 public com.liferay.client.portlet.wiki.model.WikiNodeSoap getNode(long groupId, java.lang.String name) throws java.rmi.RemoteException {
33 return null;
34 }
35
36 public com.liferay.client.portlet.wiki.model.WikiNodeSoap getNode(long nodeId) throws java.rmi.RemoteException {
37 return null;
38 }
39
40 }
41