1
14
15 package com.liferay.portal.service;
16
17
18
34 public class LayoutSetPrototypeLocalServiceWrapper
35 implements LayoutSetPrototypeLocalService {
36 public LayoutSetPrototypeLocalServiceWrapper(
37 LayoutSetPrototypeLocalService layoutSetPrototypeLocalService) {
38 _layoutSetPrototypeLocalService = layoutSetPrototypeLocalService;
39 }
40
41 public com.liferay.portal.model.LayoutSetPrototype addLayoutSetPrototype(
42 com.liferay.portal.model.LayoutSetPrototype layoutSetPrototype)
43 throws com.liferay.portal.kernel.exception.SystemException {
44 return _layoutSetPrototypeLocalService.addLayoutSetPrototype(layoutSetPrototype);
45 }
46
47 public com.liferay.portal.model.LayoutSetPrototype createLayoutSetPrototype(
48 long layoutSetPrototypeId) {
49 return _layoutSetPrototypeLocalService.createLayoutSetPrototype(layoutSetPrototypeId);
50 }
51
52 public void deleteLayoutSetPrototype(long layoutSetPrototypeId)
53 throws com.liferay.portal.kernel.exception.PortalException,
54 com.liferay.portal.kernel.exception.SystemException {
55 _layoutSetPrototypeLocalService.deleteLayoutSetPrototype(layoutSetPrototypeId);
56 }
57
58 public void deleteLayoutSetPrototype(
59 com.liferay.portal.model.LayoutSetPrototype layoutSetPrototype)
60 throws com.liferay.portal.kernel.exception.SystemException {
61 _layoutSetPrototypeLocalService.deleteLayoutSetPrototype(layoutSetPrototype);
62 }
63
64 public java.util.List<Object> dynamicQuery(
65 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
66 throws com.liferay.portal.kernel.exception.SystemException {
67 return _layoutSetPrototypeLocalService.dynamicQuery(dynamicQuery);
68 }
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.kernel.exception.SystemException {
73 return _layoutSetPrototypeLocalService.dynamicQuery(dynamicQuery,
74 start, end);
75 }
76
77 public java.util.List<Object> dynamicQuery(
78 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
79 int end,
80 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
81 throws com.liferay.portal.kernel.exception.SystemException {
82 return _layoutSetPrototypeLocalService.dynamicQuery(dynamicQuery,
83 start, end, orderByComparator);
84 }
85
86 public int dynamicQueryCount(
87 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
88 throws com.liferay.portal.kernel.exception.SystemException {
89 return _layoutSetPrototypeLocalService.dynamicQueryCount(dynamicQuery);
90 }
91
92 public com.liferay.portal.model.LayoutSetPrototype getLayoutSetPrototype(
93 long layoutSetPrototypeId)
94 throws com.liferay.portal.kernel.exception.PortalException,
95 com.liferay.portal.kernel.exception.SystemException {
96 return _layoutSetPrototypeLocalService.getLayoutSetPrototype(layoutSetPrototypeId);
97 }
98
99 public java.util.List<com.liferay.portal.model.LayoutSetPrototype> getLayoutSetPrototypes(
100 int start, int end)
101 throws com.liferay.portal.kernel.exception.SystemException {
102 return _layoutSetPrototypeLocalService.getLayoutSetPrototypes(start, end);
103 }
104
105 public int getLayoutSetPrototypesCount()
106 throws com.liferay.portal.kernel.exception.SystemException {
107 return _layoutSetPrototypeLocalService.getLayoutSetPrototypesCount();
108 }
109
110 public com.liferay.portal.model.LayoutSetPrototype updateLayoutSetPrototype(
111 com.liferay.portal.model.LayoutSetPrototype layoutSetPrototype)
112 throws com.liferay.portal.kernel.exception.SystemException {
113 return _layoutSetPrototypeLocalService.updateLayoutSetPrototype(layoutSetPrototype);
114 }
115
116 public com.liferay.portal.model.LayoutSetPrototype updateLayoutSetPrototype(
117 com.liferay.portal.model.LayoutSetPrototype layoutSetPrototype,
118 boolean merge)
119 throws com.liferay.portal.kernel.exception.SystemException {
120 return _layoutSetPrototypeLocalService.updateLayoutSetPrototype(layoutSetPrototype,
121 merge);
122 }
123
124 public com.liferay.portal.model.LayoutSetPrototype addLayoutSetPrototype(
125 long userId, long companyId,
126 java.util.Map<java.util.Locale, String> nameMap,
127 java.lang.String description, boolean active)
128 throws com.liferay.portal.kernel.exception.PortalException,
129 com.liferay.portal.kernel.exception.SystemException {
130 return _layoutSetPrototypeLocalService.addLayoutSetPrototype(userId,
131 companyId, nameMap, description, active);
132 }
133
134 public java.util.List<com.liferay.portal.model.LayoutSetPrototype> search(
135 long companyId, java.lang.Boolean active, int start, int end,
136 com.liferay.portal.kernel.util.OrderByComparator obc)
137 throws com.liferay.portal.kernel.exception.SystemException {
138 return _layoutSetPrototypeLocalService.search(companyId, active, start,
139 end, obc);
140 }
141
142 public int searchCount(long companyId, java.lang.Boolean active)
143 throws com.liferay.portal.kernel.exception.SystemException {
144 return _layoutSetPrototypeLocalService.searchCount(companyId, active);
145 }
146
147 public com.liferay.portal.model.LayoutSetPrototype updateLayoutSetPrototype(
148 long layoutSetPrototypeId,
149 java.util.Map<java.util.Locale, String> nameMap,
150 java.lang.String description, boolean active)
151 throws com.liferay.portal.kernel.exception.PortalException,
152 com.liferay.portal.kernel.exception.SystemException {
153 return _layoutSetPrototypeLocalService.updateLayoutSetPrototype(layoutSetPrototypeId,
154 nameMap, description, active);
155 }
156
157 public LayoutSetPrototypeLocalService getWrappedLayoutSetPrototypeLocalService() {
158 return _layoutSetPrototypeLocalService;
159 }
160
161 private LayoutSetPrototypeLocalService _layoutSetPrototypeLocalService;
162 }