1
14
15 package com.liferay.portal.service;
16
17 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
18
19
39 public class LayoutSetLocalServiceUtil {
40 public static com.liferay.portal.model.LayoutSet addLayoutSet(
41 com.liferay.portal.model.LayoutSet layoutSet)
42 throws com.liferay.portal.SystemException {
43 return getService().addLayoutSet(layoutSet);
44 }
45
46 public static com.liferay.portal.model.LayoutSet createLayoutSet(
47 long layoutSetId) {
48 return getService().createLayoutSet(layoutSetId);
49 }
50
51 public static void deleteLayoutSet(long layoutSetId)
52 throws com.liferay.portal.PortalException,
53 com.liferay.portal.SystemException {
54 getService().deleteLayoutSet(layoutSetId);
55 }
56
57 public static void deleteLayoutSet(
58 com.liferay.portal.model.LayoutSet layoutSet)
59 throws com.liferay.portal.SystemException {
60 getService().deleteLayoutSet(layoutSet);
61 }
62
63 public static java.util.List<Object> dynamicQuery(
64 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65 throws com.liferay.portal.SystemException {
66 return getService().dynamicQuery(dynamicQuery);
67 }
68
69 public static java.util.List<Object> dynamicQuery(
70 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
71 int end) throws com.liferay.portal.SystemException {
72 return getService().dynamicQuery(dynamicQuery, start, end);
73 }
74
75 public static com.liferay.portal.model.LayoutSet getLayoutSet(
76 long layoutSetId)
77 throws com.liferay.portal.PortalException,
78 com.liferay.portal.SystemException {
79 return getService().getLayoutSet(layoutSetId);
80 }
81
82 public static java.util.List<com.liferay.portal.model.LayoutSet> getLayoutSets(
83 int start, int end) throws com.liferay.portal.SystemException {
84 return getService().getLayoutSets(start, end);
85 }
86
87 public static int getLayoutSetsCount()
88 throws com.liferay.portal.SystemException {
89 return getService().getLayoutSetsCount();
90 }
91
92 public static com.liferay.portal.model.LayoutSet updateLayoutSet(
93 com.liferay.portal.model.LayoutSet layoutSet)
94 throws com.liferay.portal.SystemException {
95 return getService().updateLayoutSet(layoutSet);
96 }
97
98 public static com.liferay.portal.model.LayoutSet updateLayoutSet(
99 com.liferay.portal.model.LayoutSet layoutSet, boolean merge)
100 throws com.liferay.portal.SystemException {
101 return getService().updateLayoutSet(layoutSet, merge);
102 }
103
104 public static com.liferay.portal.model.LayoutSet addLayoutSet(
105 long groupId, boolean privateLayout)
106 throws com.liferay.portal.PortalException,
107 com.liferay.portal.SystemException {
108 return getService().addLayoutSet(groupId, privateLayout);
109 }
110
111 public static void deleteLayoutSet(long groupId, boolean privateLayout)
112 throws com.liferay.portal.PortalException,
113 com.liferay.portal.SystemException {
114 getService().deleteLayoutSet(groupId, privateLayout);
115 }
116
117 public static com.liferay.portal.model.LayoutSet getLayoutSet(
118 long groupId, boolean privateLayout)
119 throws com.liferay.portal.PortalException,
120 com.liferay.portal.SystemException {
121 return getService().getLayoutSet(groupId, privateLayout);
122 }
123
124 public static com.liferay.portal.model.LayoutSet getLayoutSet(
125 java.lang.String virtualHost)
126 throws com.liferay.portal.PortalException,
127 com.liferay.portal.SystemException {
128 return getService().getLayoutSet(virtualHost);
129 }
130
131 public static void updateLogo(long groupId, boolean privateLayout,
132 boolean logo, java.io.File file)
133 throws com.liferay.portal.PortalException,
134 com.liferay.portal.SystemException {
135 getService().updateLogo(groupId, privateLayout, logo, file);
136 }
137
138 public static void updateLogo(long groupId, boolean privateLayout,
139 boolean logo, java.io.InputStream is)
140 throws com.liferay.portal.PortalException,
141 com.liferay.portal.SystemException {
142 getService().updateLogo(groupId, privateLayout, logo, is);
143 }
144
145 public static com.liferay.portal.model.LayoutSet updateLookAndFeel(
146 long groupId, boolean privateLayout, java.lang.String themeId,
147 java.lang.String colorSchemeId, java.lang.String css, boolean wapTheme)
148 throws com.liferay.portal.PortalException,
149 com.liferay.portal.SystemException {
150 return getService()
151 .updateLookAndFeel(groupId, privateLayout, themeId,
152 colorSchemeId, css, wapTheme);
153 }
154
155 public static com.liferay.portal.model.LayoutSet updatePageCount(
156 long groupId, boolean privateLayout)
157 throws com.liferay.portal.PortalException,
158 com.liferay.portal.SystemException {
159 return getService().updatePageCount(groupId, privateLayout);
160 }
161
162 public static com.liferay.portal.model.LayoutSet updateVirtualHost(
163 long groupId, boolean privateLayout, java.lang.String virtualHost)
164 throws com.liferay.portal.PortalException,
165 com.liferay.portal.SystemException {
166 return getService()
167 .updateVirtualHost(groupId, privateLayout, virtualHost);
168 }
169
170 public static LayoutSetLocalService getService() {
171 if (_service == null) {
172 _service = (LayoutSetLocalService)PortalBeanLocatorUtil.locate(LayoutSetLocalService.class.getName());
173 }
174
175 return _service;
176 }
177
178 public void setService(LayoutSetLocalService service) {
179 _service = service;
180 }
181
182 private static LayoutSetLocalService _service;
183 }