1
7
8 package com.liferay.client.portlet.expando.service.http;
9
10 public interface ExpandoValueServiceSoap extends java.rmi.Remote {
11 public void deleteValues(java.lang.String className, long classPK) throws java.rmi.RemoteException;
12 public void deleteValues(long classNameId, long classPK) throws java.rmi.RemoteException;
13 public void deleteColumnValues(long columnId) throws java.rmi.RemoteException;
14 public void deleteRowValues(long rowId) throws java.rmi.RemoteException;
15 public void deleteTableValues(long tableId) throws java.rmi.RemoteException;
16 public com.liferay.client.portlet.expando.model.ExpandoValueSoap addValue(long columnId, long rowId, long classPK, java.lang.String data) throws java.rmi.RemoteException;
17 public void deleteValue(long valueId) throws java.rmi.RemoteException;
18 public com.liferay.client.portlet.expando.model.ExpandoValueSoap[] getColumnValues(long columnId, int begin, int end) throws java.rmi.RemoteException;
19 public com.liferay.client.portlet.expando.model.ExpandoValueSoap[] getColumnValues(long classNameId, java.lang.String tableName, java.lang.String columnName, int begin, int end) throws java.rmi.RemoteException;
20 public com.liferay.client.portlet.expando.model.ExpandoValueSoap[] getColumnValues(java.lang.String className, java.lang.String tableName, java.lang.String columnName, int begin, int end) throws java.rmi.RemoteException;
21 public int getColumnValuesCount(long classNameId, java.lang.String tableName, java.lang.String columnName) throws java.rmi.RemoteException;
22 public int getColumnValuesCount(java.lang.String className, java.lang.String tableName, java.lang.String columnName) throws java.rmi.RemoteException;
23 public int getColumnValuesCount(long columnId) throws java.rmi.RemoteException;
24 public com.liferay.client.portlet.expando.model.ExpandoValueSoap[] getDefaultTableColumnValues(java.lang.String className, java.lang.String columnName, int begin, int end) throws java.rmi.RemoteException;
25 public com.liferay.client.portlet.expando.model.ExpandoValueSoap[] getDefaultTableColumnValues(long classNameId, java.lang.String columnName, int begin, int end) throws java.rmi.RemoteException;
26 public int getDefaultTableColumnValuesCount(long classNameId, java.lang.String columnName) throws java.rmi.RemoteException;
27 public int getDefaultTableColumnValuesCount(java.lang.String className, java.lang.String columnName) throws java.rmi.RemoteException;
28 public com.liferay.client.portlet.expando.model.ExpandoValueSoap[] getRowValues(long rowId) throws java.rmi.RemoteException;
29 public com.liferay.client.portlet.expando.model.ExpandoValueSoap[] getRowValues(long rowId, int begin, int end) throws java.rmi.RemoteException;
30 public int getRowValuesCount(long rowId) throws java.rmi.RemoteException;
31 public com.liferay.client.portlet.expando.model.ExpandoValueSoap getValue(long columnId, long rowId) throws java.rmi.RemoteException;
32 public com.liferay.client.portlet.expando.model.ExpandoValueSoap getValue(java.lang.String className, java.lang.String tableName, java.lang.String name, long rowId) throws java.rmi.RemoteException;
33 public com.liferay.client.portlet.expando.model.ExpandoValueSoap getValue(long classNameId, java.lang.String tableName, java.lang.String name, long rowId) throws java.rmi.RemoteException;
34 public com.liferay.client.portlet.expando.model.ExpandoValueSoap getValue(long valueId) throws java.rmi.RemoteException;
35 }
36