1
7
8 package com.liferay.client.portlet.expando.service.http;
9
10 public interface ExpandoTableServiceSoap extends java.rmi.Remote {
11 public com.liferay.client.portlet.expando.model.ExpandoTableSoap updateTable(long tableId, java.lang.String name) throws java.rmi.RemoteException;
12 public com.liferay.client.portlet.expando.model.ExpandoTableSoap addDefaultTable(java.lang.String className) throws java.rmi.RemoteException;
13 public com.liferay.client.portlet.expando.model.ExpandoTableSoap addDefaultTable(long classNameId) throws java.rmi.RemoteException;
14 public void deleteTable(long tableId) throws java.rmi.RemoteException;
15 public void deleteTable(long classNameId, java.lang.String name) throws java.rmi.RemoteException;
16 public void deleteTable(java.lang.String className, java.lang.String name) throws java.rmi.RemoteException;
17 public void deleteTables(java.lang.String className) throws java.rmi.RemoteException;
18 public void deleteTables(long classNameId) throws java.rmi.RemoteException;
19 public com.liferay.client.portlet.expando.model.ExpandoTableSoap getTable(long classNameId, java.lang.String name) throws java.rmi.RemoteException;
20 public com.liferay.client.portlet.expando.model.ExpandoTableSoap getTable(java.lang.String className, java.lang.String name) throws java.rmi.RemoteException;
21 public com.liferay.client.portlet.expando.model.ExpandoTableSoap getTable(long tableId) throws java.rmi.RemoteException;
22 public com.liferay.client.portlet.expando.model.ExpandoTableSoap getDefaultTable(java.lang.String className) throws java.rmi.RemoteException;
23 public com.liferay.client.portlet.expando.model.ExpandoTableSoap getDefaultTable(long classNameId) throws java.rmi.RemoteException;
24 public com.liferay.client.portlet.expando.model.ExpandoTableSoap[] getTables(java.lang.String className) throws java.rmi.RemoteException;
25 public com.liferay.client.portlet.expando.model.ExpandoTableSoap[] getTables(long classNameId) throws java.rmi.RemoteException;
26 public com.liferay.client.portlet.expando.model.ExpandoTableSoap addTable(long classNameId, java.lang.String name) throws java.rmi.RemoteException;
27 public com.liferay.client.portlet.expando.model.ExpandoTableSoap addTable(java.lang.String className, java.lang.String name) throws java.rmi.RemoteException;
28 }
29