001: /**
002: * Copyright (c) 2000-2008 Liferay, Inc. All rights reserved.
003: *
004: * Permission is hereby granted, free of charge, to any person obtaining a copy
005: * of this software and associated documentation files (the "Software"), to deal
006: * in the Software without restriction, including without limitation the rights
007: * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
008: * copies of the Software, and to permit persons to whom the Software is
009: * furnished to do so, subject to the following conditions:
010: *
011: * The above copyright notice and this permission notice shall be included in
012: * all copies or substantial portions of the Software.
013: *
014: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
015: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
016: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
017: * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
018: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
019: * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
020: * SOFTWARE.
021: */package com.liferay.portal.model;
022:
023: /**
024: * <a href="OrgLaborModel.java.html"><b><i>View Source</i></b></a>
025: *
026: * <p>
027: * ServiceBuilder generated this class. Modifications in this class will be
028: * overwritten the next time is generated.
029: * </p>
030: *
031: * <p>
032: * This interface is a model that represents the <code>OrgLabor</code>
033: * table in the database.
034: * </p>
035: *
036: * @author Brian Wing Shun Chan
037: *
038: * @see com.liferay.portal.service.model.OrgLabor
039: * @see com.liferay.portal.service.model.impl.OrgLaborImpl
040: * @see com.liferay.portal.service.model.impl.OrgLaborModelImpl
041: *
042: */
043: public interface OrgLaborModel extends BaseModel {
044: public long getPrimaryKey();
045:
046: public void setPrimaryKey(long pk);
047:
048: public long getOrgLaborId();
049:
050: public void setOrgLaborId(long orgLaborId);
051:
052: public long getOrganizationId();
053:
054: public void setOrganizationId(long organizationId);
055:
056: public int getTypeId();
057:
058: public void setTypeId(int typeId);
059:
060: public int getSunOpen();
061:
062: public void setSunOpen(int sunOpen);
063:
064: public int getSunClose();
065:
066: public void setSunClose(int sunClose);
067:
068: public int getMonOpen();
069:
070: public void setMonOpen(int monOpen);
071:
072: public int getMonClose();
073:
074: public void setMonClose(int monClose);
075:
076: public int getTueOpen();
077:
078: public void setTueOpen(int tueOpen);
079:
080: public int getTueClose();
081:
082: public void setTueClose(int tueClose);
083:
084: public int getWedOpen();
085:
086: public void setWedOpen(int wedOpen);
087:
088: public int getWedClose();
089:
090: public void setWedClose(int wedClose);
091:
092: public int getThuOpen();
093:
094: public void setThuOpen(int thuOpen);
095:
096: public int getThuClose();
097:
098: public void setThuClose(int thuClose);
099:
100: public int getFriOpen();
101:
102: public void setFriOpen(int friOpen);
103:
104: public int getFriClose();
105:
106: public void setFriClose(int friClose);
107:
108: public int getSatOpen();
109:
110: public void setSatOpen(int satOpen);
111:
112: public int getSatClose();
113:
114: public void setSatClose(int satClose);
115:
116: public OrgLabor toEscapedModel();
117: }
|