001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link OrgLabor}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       OrgLabor
024     * @generated
025     */
026    public class OrgLaborWrapper implements OrgLabor {
027            public OrgLaborWrapper(OrgLabor orgLabor) {
028                    _orgLabor = orgLabor;
029            }
030    
031            /**
032            * Gets the primary key of this org labor.
033            *
034            * @return the primary key of this org labor
035            */
036            public long getPrimaryKey() {
037                    return _orgLabor.getPrimaryKey();
038            }
039    
040            /**
041            * Sets the primary key of this org labor
042            *
043            * @param pk the primary key of this org labor
044            */
045            public void setPrimaryKey(long pk) {
046                    _orgLabor.setPrimaryKey(pk);
047            }
048    
049            /**
050            * Gets the org labor id of this org labor.
051            *
052            * @return the org labor id of this org labor
053            */
054            public long getOrgLaborId() {
055                    return _orgLabor.getOrgLaborId();
056            }
057    
058            /**
059            * Sets the org labor id of this org labor.
060            *
061            * @param orgLaborId the org labor id of this org labor
062            */
063            public void setOrgLaborId(long orgLaborId) {
064                    _orgLabor.setOrgLaborId(orgLaborId);
065            }
066    
067            /**
068            * Gets the organization id of this org labor.
069            *
070            * @return the organization id of this org labor
071            */
072            public long getOrganizationId() {
073                    return _orgLabor.getOrganizationId();
074            }
075    
076            /**
077            * Sets the organization id of this org labor.
078            *
079            * @param organizationId the organization id of this org labor
080            */
081            public void setOrganizationId(long organizationId) {
082                    _orgLabor.setOrganizationId(organizationId);
083            }
084    
085            /**
086            * Gets the type id of this org labor.
087            *
088            * @return the type id of this org labor
089            */
090            public int getTypeId() {
091                    return _orgLabor.getTypeId();
092            }
093    
094            /**
095            * Sets the type id of this org labor.
096            *
097            * @param typeId the type id of this org labor
098            */
099            public void setTypeId(int typeId) {
100                    _orgLabor.setTypeId(typeId);
101            }
102    
103            /**
104            * Gets the sun open of this org labor.
105            *
106            * @return the sun open of this org labor
107            */
108            public int getSunOpen() {
109                    return _orgLabor.getSunOpen();
110            }
111    
112            /**
113            * Sets the sun open of this org labor.
114            *
115            * @param sunOpen the sun open of this org labor
116            */
117            public void setSunOpen(int sunOpen) {
118                    _orgLabor.setSunOpen(sunOpen);
119            }
120    
121            /**
122            * Gets the sun close of this org labor.
123            *
124            * @return the sun close of this org labor
125            */
126            public int getSunClose() {
127                    return _orgLabor.getSunClose();
128            }
129    
130            /**
131            * Sets the sun close of this org labor.
132            *
133            * @param sunClose the sun close of this org labor
134            */
135            public void setSunClose(int sunClose) {
136                    _orgLabor.setSunClose(sunClose);
137            }
138    
139            /**
140            * Gets the mon open of this org labor.
141            *
142            * @return the mon open of this org labor
143            */
144            public int getMonOpen() {
145                    return _orgLabor.getMonOpen();
146            }
147    
148            /**
149            * Sets the mon open of this org labor.
150            *
151            * @param monOpen the mon open of this org labor
152            */
153            public void setMonOpen(int monOpen) {
154                    _orgLabor.setMonOpen(monOpen);
155            }
156    
157            /**
158            * Gets the mon close of this org labor.
159            *
160            * @return the mon close of this org labor
161            */
162            public int getMonClose() {
163                    return _orgLabor.getMonClose();
164            }
165    
166            /**
167            * Sets the mon close of this org labor.
168            *
169            * @param monClose the mon close of this org labor
170            */
171            public void setMonClose(int monClose) {
172                    _orgLabor.setMonClose(monClose);
173            }
174    
175            /**
176            * Gets the tue open of this org labor.
177            *
178            * @return the tue open of this org labor
179            */
180            public int getTueOpen() {
181                    return _orgLabor.getTueOpen();
182            }
183    
184            /**
185            * Sets the tue open of this org labor.
186            *
187            * @param tueOpen the tue open of this org labor
188            */
189            public void setTueOpen(int tueOpen) {
190                    _orgLabor.setTueOpen(tueOpen);
191            }
192    
193            /**
194            * Gets the tue close of this org labor.
195            *
196            * @return the tue close of this org labor
197            */
198            public int getTueClose() {
199                    return _orgLabor.getTueClose();
200            }
201    
202            /**
203            * Sets the tue close of this org labor.
204            *
205            * @param tueClose the tue close of this org labor
206            */
207            public void setTueClose(int tueClose) {
208                    _orgLabor.setTueClose(tueClose);
209            }
210    
211            /**
212            * Gets the wed open of this org labor.
213            *
214            * @return the wed open of this org labor
215            */
216            public int getWedOpen() {
217                    return _orgLabor.getWedOpen();
218            }
219    
220            /**
221            * Sets the wed open of this org labor.
222            *
223            * @param wedOpen the wed open of this org labor
224            */
225            public void setWedOpen(int wedOpen) {
226                    _orgLabor.setWedOpen(wedOpen);
227            }
228    
229            /**
230            * Gets the wed close of this org labor.
231            *
232            * @return the wed close of this org labor
233            */
234            public int getWedClose() {
235                    return _orgLabor.getWedClose();
236            }
237    
238            /**
239            * Sets the wed close of this org labor.
240            *
241            * @param wedClose the wed close of this org labor
242            */
243            public void setWedClose(int wedClose) {
244                    _orgLabor.setWedClose(wedClose);
245            }
246    
247            /**
248            * Gets the thu open of this org labor.
249            *
250            * @return the thu open of this org labor
251            */
252            public int getThuOpen() {
253                    return _orgLabor.getThuOpen();
254            }
255    
256            /**
257            * Sets the thu open of this org labor.
258            *
259            * @param thuOpen the thu open of this org labor
260            */
261            public void setThuOpen(int thuOpen) {
262                    _orgLabor.setThuOpen(thuOpen);
263            }
264    
265            /**
266            * Gets the thu close of this org labor.
267            *
268            * @return the thu close of this org labor
269            */
270            public int getThuClose() {
271                    return _orgLabor.getThuClose();
272            }
273    
274            /**
275            * Sets the thu close of this org labor.
276            *
277            * @param thuClose the thu close of this org labor
278            */
279            public void setThuClose(int thuClose) {
280                    _orgLabor.setThuClose(thuClose);
281            }
282    
283            /**
284            * Gets the fri open of this org labor.
285            *
286            * @return the fri open of this org labor
287            */
288            public int getFriOpen() {
289                    return _orgLabor.getFriOpen();
290            }
291    
292            /**
293            * Sets the fri open of this org labor.
294            *
295            * @param friOpen the fri open of this org labor
296            */
297            public void setFriOpen(int friOpen) {
298                    _orgLabor.setFriOpen(friOpen);
299            }
300    
301            /**
302            * Gets the fri close of this org labor.
303            *
304            * @return the fri close of this org labor
305            */
306            public int getFriClose() {
307                    return _orgLabor.getFriClose();
308            }
309    
310            /**
311            * Sets the fri close of this org labor.
312            *
313            * @param friClose the fri close of this org labor
314            */
315            public void setFriClose(int friClose) {
316                    _orgLabor.setFriClose(friClose);
317            }
318    
319            /**
320            * Gets the sat open of this org labor.
321            *
322            * @return the sat open of this org labor
323            */
324            public int getSatOpen() {
325                    return _orgLabor.getSatOpen();
326            }
327    
328            /**
329            * Sets the sat open of this org labor.
330            *
331            * @param satOpen the sat open of this org labor
332            */
333            public void setSatOpen(int satOpen) {
334                    _orgLabor.setSatOpen(satOpen);
335            }
336    
337            /**
338            * Gets the sat close of this org labor.
339            *
340            * @return the sat close of this org labor
341            */
342            public int getSatClose() {
343                    return _orgLabor.getSatClose();
344            }
345    
346            /**
347            * Sets the sat close of this org labor.
348            *
349            * @param satClose the sat close of this org labor
350            */
351            public void setSatClose(int satClose) {
352                    _orgLabor.setSatClose(satClose);
353            }
354    
355            public boolean isNew() {
356                    return _orgLabor.isNew();
357            }
358    
359            public void setNew(boolean n) {
360                    _orgLabor.setNew(n);
361            }
362    
363            public boolean isCachedModel() {
364                    return _orgLabor.isCachedModel();
365            }
366    
367            public void setCachedModel(boolean cachedModel) {
368                    _orgLabor.setCachedModel(cachedModel);
369            }
370    
371            public boolean isEscapedModel() {
372                    return _orgLabor.isEscapedModel();
373            }
374    
375            public void setEscapedModel(boolean escapedModel) {
376                    _orgLabor.setEscapedModel(escapedModel);
377            }
378    
379            public java.io.Serializable getPrimaryKeyObj() {
380                    return _orgLabor.getPrimaryKeyObj();
381            }
382    
383            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
384                    return _orgLabor.getExpandoBridge();
385            }
386    
387            public void setExpandoBridgeAttributes(
388                    com.liferay.portal.service.ServiceContext serviceContext) {
389                    _orgLabor.setExpandoBridgeAttributes(serviceContext);
390            }
391    
392            public java.lang.Object clone() {
393                    return _orgLabor.clone();
394            }
395    
396            public int compareTo(com.liferay.portal.model.OrgLabor orgLabor) {
397                    return _orgLabor.compareTo(orgLabor);
398            }
399    
400            public int hashCode() {
401                    return _orgLabor.hashCode();
402            }
403    
404            public com.liferay.portal.model.OrgLabor toEscapedModel() {
405                    return _orgLabor.toEscapedModel();
406            }
407    
408            public java.lang.String toString() {
409                    return _orgLabor.toString();
410            }
411    
412            public java.lang.String toXmlString() {
413                    return _orgLabor.toXmlString();
414            }
415    
416            public com.liferay.portal.model.ListType getType()
417                    throws com.liferay.portal.kernel.exception.PortalException,
418                            com.liferay.portal.kernel.exception.SystemException {
419                    return _orgLabor.getType();
420            }
421    
422            public OrgLabor getWrappedOrgLabor() {
423                    return _orgLabor;
424            }
425    
426            private OrgLabor _orgLabor;
427    }