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