1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.calendar.model;
16  
17  import com.liferay.portal.kernel.annotation.AutoEscape;
18  import com.liferay.portal.kernel.exception.SystemException;
19  import com.liferay.portal.model.BaseModel;
20  import com.liferay.portal.service.ServiceContext;
21  
22  import com.liferay.portlet.expando.model.ExpandoBridge;
23  
24  import java.io.Serializable;
25  
26  import java.util.Date;
27  
28  /**
29   * <a href="CalEventModel.java.html"><b><i>View Source</i></b></a>
30   *
31   * <p>
32   * ServiceBuilder generated this class. Modifications in this class will be
33   * overwritten the next time is generated.
34   * </p>
35   *
36   * <p>
37   * This interface is a model that represents the CalEvent table in the
38   * database.
39   * </p>
40   *
41   * @author    Brian Wing Shun Chan
42   * @see       CalEvent
43   * @see       com.liferay.portlet.calendar.model.impl.CalEventImpl
44   * @see       com.liferay.portlet.calendar.model.impl.CalEventModelImpl
45   * @generated
46   */
47  public interface CalEventModel extends BaseModel<CalEvent> {
48      public long getPrimaryKey();
49  
50      public void setPrimaryKey(long pk);
51  
52      @AutoEscape
53      public String getUuid();
54  
55      public void setUuid(String uuid);
56  
57      public long getEventId();
58  
59      public void setEventId(long eventId);
60  
61      public long getGroupId();
62  
63      public void setGroupId(long groupId);
64  
65      public long getCompanyId();
66  
67      public void setCompanyId(long companyId);
68  
69      public long getUserId();
70  
71      public void setUserId(long userId);
72  
73      public String getUserUuid() throws SystemException;
74  
75      public void setUserUuid(String userUuid);
76  
77      @AutoEscape
78      public String getUserName();
79  
80      public void setUserName(String userName);
81  
82      public Date getCreateDate();
83  
84      public void setCreateDate(Date createDate);
85  
86      public Date getModifiedDate();
87  
88      public void setModifiedDate(Date modifiedDate);
89  
90      @AutoEscape
91      public String getTitle();
92  
93      public void setTitle(String title);
94  
95      @AutoEscape
96      public String getDescription();
97  
98      public void setDescription(String description);
99  
100     public Date getStartDate();
101 
102     public void setStartDate(Date startDate);
103 
104     public Date getEndDate();
105 
106     public void setEndDate(Date endDate);
107 
108     public int getDurationHour();
109 
110     public void setDurationHour(int durationHour);
111 
112     public int getDurationMinute();
113 
114     public void setDurationMinute(int durationMinute);
115 
116     public boolean getAllDay();
117 
118     public boolean isAllDay();
119 
120     public void setAllDay(boolean allDay);
121 
122     public boolean getTimeZoneSensitive();
123 
124     public boolean isTimeZoneSensitive();
125 
126     public void setTimeZoneSensitive(boolean timeZoneSensitive);
127 
128     @AutoEscape
129     public String getType();
130 
131     public void setType(String type);
132 
133     public boolean getRepeating();
134 
135     public boolean isRepeating();
136 
137     public void setRepeating(boolean repeating);
138 
139     public String getRecurrence();
140 
141     public void setRecurrence(String recurrence);
142 
143     public int getRemindBy();
144 
145     public void setRemindBy(int remindBy);
146 
147     public int getFirstReminder();
148 
149     public void setFirstReminder(int firstReminder);
150 
151     public int getSecondReminder();
152 
153     public void setSecondReminder(int secondReminder);
154 
155     public CalEvent toEscapedModel();
156 
157     public boolean isNew();
158 
159     public boolean setNew(boolean n);
160 
161     public boolean isCachedModel();
162 
163     public void setCachedModel(boolean cachedModel);
164 
165     public boolean isEscapedModel();
166 
167     public void setEscapedModel(boolean escapedModel);
168 
169     public Serializable getPrimaryKeyObj();
170 
171     public ExpandoBridge getExpandoBridge();
172 
173     public void setExpandoBridgeAttributes(ServiceContext serviceContext);
174 
175     public Object clone();
176 
177     public int compareTo(CalEvent calEvent);
178 
179     public int hashCode();
180 
181     public String toString();
182 
183     public String toXmlString();
184 }