1
22
23 package com.liferay.portlet.expando.service;
24
25
26
50 public interface ExpandoTableLocalService {
51 public com.liferay.portlet.expando.model.ExpandoTable addExpandoTable(
52 com.liferay.portlet.expando.model.ExpandoTable expandoTable)
53 throws com.liferay.portal.SystemException;
54
55 public com.liferay.portlet.expando.model.ExpandoTable createExpandoTable(
56 long tableId);
57
58 public void deleteExpandoTable(long tableId)
59 throws com.liferay.portal.SystemException,
60 com.liferay.portal.PortalException;
61
62 public void deleteExpandoTable(
63 com.liferay.portlet.expando.model.ExpandoTable expandoTable)
64 throws com.liferay.portal.SystemException;
65
66 public java.util.List<Object> dynamicQuery(
67 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
68 throws com.liferay.portal.SystemException;
69
70 public java.util.List<Object> dynamicQuery(
71 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
72 int end) throws com.liferay.portal.SystemException;
73
74 public com.liferay.portlet.expando.model.ExpandoTable getExpandoTable(
75 long tableId)
76 throws com.liferay.portal.SystemException,
77 com.liferay.portal.PortalException;
78
79 public java.util.List<com.liferay.portlet.expando.model.ExpandoTable> getExpandoTables(
80 int start, int end) throws com.liferay.portal.SystemException;
81
82 public int getExpandoTablesCount()
83 throws com.liferay.portal.SystemException;
84
85 public com.liferay.portlet.expando.model.ExpandoTable updateExpandoTable(
86 com.liferay.portlet.expando.model.ExpandoTable expandoTable)
87 throws com.liferay.portal.SystemException;
88
89 public com.liferay.portlet.expando.model.ExpandoTable addDefaultTable(
90 java.lang.String className)
91 throws com.liferay.portal.PortalException,
92 com.liferay.portal.SystemException;
93
94 public com.liferay.portlet.expando.model.ExpandoTable addDefaultTable(
95 long classNameId)
96 throws com.liferay.portal.PortalException,
97 com.liferay.portal.SystemException;
98
99 public com.liferay.portlet.expando.model.ExpandoTable addTable(
100 java.lang.String className, java.lang.String name)
101 throws com.liferay.portal.PortalException,
102 com.liferay.portal.SystemException;
103
104 public com.liferay.portlet.expando.model.ExpandoTable addTable(
105 long classNameId, java.lang.String name)
106 throws com.liferay.portal.PortalException,
107 com.liferay.portal.SystemException;
108
109 public void deleteTable(long tableId)
110 throws com.liferay.portal.PortalException,
111 com.liferay.portal.SystemException;
112
113 public void deleteTable(java.lang.String className, java.lang.String name)
114 throws com.liferay.portal.PortalException,
115 com.liferay.portal.SystemException;
116
117 public void deleteTable(long classNameId, java.lang.String name)
118 throws com.liferay.portal.PortalException,
119 com.liferay.portal.SystemException;
120
121 public void deleteTables(java.lang.String className)
122 throws com.liferay.portal.PortalException,
123 com.liferay.portal.SystemException;
124
125 public void deleteTables(long classNameId)
126 throws com.liferay.portal.PortalException,
127 com.liferay.portal.SystemException;
128
129 public com.liferay.portlet.expando.model.ExpandoTable getDefaultTable(
130 java.lang.String className)
131 throws com.liferay.portal.PortalException,
132 com.liferay.portal.SystemException;
133
134 public com.liferay.portlet.expando.model.ExpandoTable getDefaultTable(
135 long classNameId)
136 throws com.liferay.portal.PortalException,
137 com.liferay.portal.SystemException;
138
139 public com.liferay.portlet.expando.model.ExpandoTable getTable(long tableId)
140 throws com.liferay.portal.PortalException,
141 com.liferay.portal.SystemException;
142
143 public com.liferay.portlet.expando.model.ExpandoTable getTable(
144 java.lang.String className, java.lang.String name)
145 throws com.liferay.portal.PortalException,
146 com.liferay.portal.SystemException;
147
148 public com.liferay.portlet.expando.model.ExpandoTable getTable(
149 long classNameId, java.lang.String name)
150 throws com.liferay.portal.PortalException,
151 com.liferay.portal.SystemException;
152
153 public java.util.List<com.liferay.portlet.expando.model.ExpandoTable> getTables(
154 java.lang.String className) throws com.liferay.portal.SystemException;
155
156 public java.util.List<com.liferay.portlet.expando.model.ExpandoTable> getTables(
157 long classNameId) throws com.liferay.portal.SystemException;
158
159 public com.liferay.portlet.expando.model.ExpandoTable updateTable(
160 long tableId, java.lang.String name)
161 throws com.liferay.portal.PortalException,
162 com.liferay.portal.SystemException;
163 }