1
22
23 package com.liferay.portlet.expando.service.impl;
24
25 import com.liferay.portal.PortalException;
26 import com.liferay.portal.SystemException;
27 import com.liferay.portlet.expando.model.ExpandoRow;
28 import com.liferay.portlet.expando.service.base.ExpandoRowServiceBaseImpl;
29
30 import java.util.List;
31
32
38 public class ExpandoRowServiceImpl extends ExpandoRowServiceBaseImpl {
39
40 public ExpandoRow addRow(long tableId)
41 throws PortalException, SystemException {
42
43 return expandoRowLocalService.addRow(tableId);
44 }
45
46 public void deleteRow(long rowId)
47 throws PortalException, SystemException {
48
49 expandoRowLocalService.deleteRow(rowId);
50 }
51
52 public List<ExpandoRow> getDefaultTableRows(
53 String className, int begin, int end)
54 throws SystemException {
55
56 return expandoRowLocalService.getDefaultTableRows(
57 className, begin, end);
58 }
59
60 public List<ExpandoRow> getDefaultTableRows(
61 long classNameId, int begin, int end)
62 throws SystemException {
63
64 return expandoRowLocalService.getDefaultTableRows(
65 classNameId, begin, end);
66 }
67
68 public int getDefaultTableRowsCount(String className)
69 throws SystemException {
70
71 return expandoRowLocalService.getDefaultTableRowsCount(className);
72 }
73
74 public int getDefaultTableRowsCount(long classNameId)
75 throws SystemException {
76
77 return expandoRowLocalService.getDefaultTableRowsCount(classNameId);
78 }
79
80 public List<ExpandoRow> getRows(long tableId, int begin, int end)
81 throws SystemException {
82
83 return expandoRowLocalService.getRows(tableId, begin, end);
84 }
85
86 public List<ExpandoRow> getRows(
87 String className, String tableName, int begin, int end)
88 throws SystemException {
89
90 return expandoRowLocalService.getRows(className, tableName, begin, end);
91 }
92
93 public List<ExpandoRow> getRows(
94 long classNameId, String tableName, int begin, int end)
95 throws SystemException {
96
97 return expandoRowLocalService.getRows(
98 classNameId, tableName, begin, end);
99 }
100
101 public int getRowsCount(long tableId) throws SystemException {
102 return expandoRowLocalService.getRowsCount(tableId);
103 }
104
105 public int getRowsCount(String className, String tableName)
106 throws SystemException {
107
108 return expandoRowLocalService.getRowsCount(className, tableName);
109 }
110
111 public int getRowsCount(long classNameId, String tableName)
112 throws SystemException {
113
114 return expandoRowLocalService.getRowsCount(classNameId, tableName);
115 }
116
117 }