1
22
23 package com.liferay.portlet.expando.service;
24
25
26
51 public interface ExpandoRowService {
52 public com.liferay.portlet.expando.model.ExpandoRow addRow(long tableId)
53 throws java.rmi.RemoteException, com.liferay.portal.SystemException,
54 com.liferay.portal.PortalException;
55
56 public void deleteRow(long rowId)
57 throws java.rmi.RemoteException, com.liferay.portal.SystemException,
58 com.liferay.portal.PortalException;
59
60 public java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getDefaultTableRows(
61 java.lang.String className, int begin, int end)
62 throws java.rmi.RemoteException, com.liferay.portal.SystemException;
63
64 public java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getDefaultTableRows(
65 long classNameId, int begin, int end)
66 throws java.rmi.RemoteException, com.liferay.portal.SystemException;
67
68 public int getDefaultTableRowsCount(java.lang.String className)
69 throws java.rmi.RemoteException, com.liferay.portal.SystemException;
70
71 public int getDefaultTableRowsCount(long classNameId)
72 throws java.rmi.RemoteException, com.liferay.portal.SystemException;
73
74 public java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getRows(
75 long tableId, int begin, int end)
76 throws java.rmi.RemoteException, com.liferay.portal.SystemException;
77
78 public java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getRows(
79 java.lang.String className, java.lang.String tableName, int begin,
80 int end)
81 throws java.rmi.RemoteException, com.liferay.portal.SystemException;
82
83 public java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getRows(
84 long classNameId, java.lang.String tableName, int begin, int end)
85 throws java.rmi.RemoteException, com.liferay.portal.SystemException;
86
87 public int getRowsCount(long tableId)
88 throws java.rmi.RemoteException, com.liferay.portal.SystemException;
89
90 public int getRowsCount(java.lang.String className,
91 java.lang.String tableName)
92 throws java.rmi.RemoteException, com.liferay.portal.SystemException;
93
94 public int getRowsCount(long classNameId, java.lang.String tableName)
95 throws java.rmi.RemoteException, com.liferay.portal.SystemException;
96 }