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