PageRenderTime 25ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/modules/apps/forms-and-workflow/portal-workflow/portal-workflow-kaleo-api/src/main/java/com/liferay/portal/workflow/kaleo/model/KaleoTaskModel.java

http://github.com/liferay/liferay-portal
Java | 309 lines | 96 code | 52 blank | 161 comment | 0 complexity | 5a9d798f9e5f9fa9220081299de68c5c MD5 | raw file
Possible License(s): LGPL-2.0
  1. /**
  2. * Copyright (c) 2000-present 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. package com.liferay.portal.workflow.kaleo.model;
  15. import aQute.bnd.annotation.ProviderType;
  16. import com.liferay.expando.kernel.model.ExpandoBridge;
  17. import com.liferay.portal.kernel.bean.AutoEscape;
  18. import com.liferay.portal.kernel.model.BaseModel;
  19. import com.liferay.portal.kernel.model.CacheModel;
  20. import com.liferay.portal.kernel.model.GroupedModel;
  21. import com.liferay.portal.kernel.model.ShardedModel;
  22. import com.liferay.portal.kernel.service.ServiceContext;
  23. import java.io.Serializable;
  24. import java.util.Date;
  25. /**
  26. * The base model interface for the KaleoTask service. Represents a row in the "KaleoTask" database table, with each column mapped to a property of this class.
  27. *
  28. * <p>
  29. * This interface and its corresponding implementation {@link com.liferay.portal.workflow.kaleo.model.impl.KaleoTaskModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link com.liferay.portal.workflow.kaleo.model.impl.KaleoTaskImpl}.
  30. * </p>
  31. *
  32. * @author Brian Wing Shun Chan
  33. * @see KaleoTask
  34. * @see com.liferay.portal.workflow.kaleo.model.impl.KaleoTaskImpl
  35. * @see com.liferay.portal.workflow.kaleo.model.impl.KaleoTaskModelImpl
  36. * @generated
  37. */
  38. @ProviderType
  39. public interface KaleoTaskModel extends BaseModel<KaleoTask>, GroupedModel,
  40. ShardedModel {
  41. /*
  42. * NOTE FOR DEVELOPERS:
  43. *
  44. * Never modify or reference this interface directly. All methods that expect a kaleo task model instance should use the {@link KaleoTask} interface instead.
  45. */
  46. /**
  47. * Returns the primary key of this kaleo task.
  48. *
  49. * @return the primary key of this kaleo task
  50. */
  51. public long getPrimaryKey();
  52. /**
  53. * Sets the primary key of this kaleo task.
  54. *
  55. * @param primaryKey the primary key of this kaleo task
  56. */
  57. public void setPrimaryKey(long primaryKey);
  58. /**
  59. * Returns the kaleo task ID of this kaleo task.
  60. *
  61. * @return the kaleo task ID of this kaleo task
  62. */
  63. public long getKaleoTaskId();
  64. /**
  65. * Sets the kaleo task ID of this kaleo task.
  66. *
  67. * @param kaleoTaskId the kaleo task ID of this kaleo task
  68. */
  69. public void setKaleoTaskId(long kaleoTaskId);
  70. /**
  71. * Returns the group ID of this kaleo task.
  72. *
  73. * @return the group ID of this kaleo task
  74. */
  75. @Override
  76. public long getGroupId();
  77. /**
  78. * Sets the group ID of this kaleo task.
  79. *
  80. * @param groupId the group ID of this kaleo task
  81. */
  82. @Override
  83. public void setGroupId(long groupId);
  84. /**
  85. * Returns the company ID of this kaleo task.
  86. *
  87. * @return the company ID of this kaleo task
  88. */
  89. @Override
  90. public long getCompanyId();
  91. /**
  92. * Sets the company ID of this kaleo task.
  93. *
  94. * @param companyId the company ID of this kaleo task
  95. */
  96. @Override
  97. public void setCompanyId(long companyId);
  98. /**
  99. * Returns the user ID of this kaleo task.
  100. *
  101. * @return the user ID of this kaleo task
  102. */
  103. @Override
  104. public long getUserId();
  105. /**
  106. * Sets the user ID of this kaleo task.
  107. *
  108. * @param userId the user ID of this kaleo task
  109. */
  110. @Override
  111. public void setUserId(long userId);
  112. /**
  113. * Returns the user uuid of this kaleo task.
  114. *
  115. * @return the user uuid of this kaleo task
  116. */
  117. @Override
  118. public String getUserUuid();
  119. /**
  120. * Sets the user uuid of this kaleo task.
  121. *
  122. * @param userUuid the user uuid of this kaleo task
  123. */
  124. @Override
  125. public void setUserUuid(String userUuid);
  126. /**
  127. * Returns the user name of this kaleo task.
  128. *
  129. * @return the user name of this kaleo task
  130. */
  131. @AutoEscape
  132. @Override
  133. public String getUserName();
  134. /**
  135. * Sets the user name of this kaleo task.
  136. *
  137. * @param userName the user name of this kaleo task
  138. */
  139. @Override
  140. public void setUserName(String userName);
  141. /**
  142. * Returns the create date of this kaleo task.
  143. *
  144. * @return the create date of this kaleo task
  145. */
  146. @Override
  147. public Date getCreateDate();
  148. /**
  149. * Sets the create date of this kaleo task.
  150. *
  151. * @param createDate the create date of this kaleo task
  152. */
  153. @Override
  154. public void setCreateDate(Date createDate);
  155. /**
  156. * Returns the modified date of this kaleo task.
  157. *
  158. * @return the modified date of this kaleo task
  159. */
  160. @Override
  161. public Date getModifiedDate();
  162. /**
  163. * Sets the modified date of this kaleo task.
  164. *
  165. * @param modifiedDate the modified date of this kaleo task
  166. */
  167. @Override
  168. public void setModifiedDate(Date modifiedDate);
  169. /**
  170. * Returns the kaleo definition ID of this kaleo task.
  171. *
  172. * @return the kaleo definition ID of this kaleo task
  173. */
  174. public long getKaleoDefinitionId();
  175. /**
  176. * Sets the kaleo definition ID of this kaleo task.
  177. *
  178. * @param kaleoDefinitionId the kaleo definition ID of this kaleo task
  179. */
  180. public void setKaleoDefinitionId(long kaleoDefinitionId);
  181. /**
  182. * Returns the kaleo node ID of this kaleo task.
  183. *
  184. * @return the kaleo node ID of this kaleo task
  185. */
  186. public long getKaleoNodeId();
  187. /**
  188. * Sets the kaleo node ID of this kaleo task.
  189. *
  190. * @param kaleoNodeId the kaleo node ID of this kaleo task
  191. */
  192. public void setKaleoNodeId(long kaleoNodeId);
  193. /**
  194. * Returns the name of this kaleo task.
  195. *
  196. * @return the name of this kaleo task
  197. */
  198. @AutoEscape
  199. public String getName();
  200. /**
  201. * Sets the name of this kaleo task.
  202. *
  203. * @param name the name of this kaleo task
  204. */
  205. public void setName(String name);
  206. /**
  207. * Returns the description of this kaleo task.
  208. *
  209. * @return the description of this kaleo task
  210. */
  211. @AutoEscape
  212. public String getDescription();
  213. /**
  214. * Sets the description of this kaleo task.
  215. *
  216. * @param description the description of this kaleo task
  217. */
  218. public void setDescription(String description);
  219. @Override
  220. public boolean isNew();
  221. @Override
  222. public void setNew(boolean n);
  223. @Override
  224. public boolean isCachedModel();
  225. @Override
  226. public void setCachedModel(boolean cachedModel);
  227. @Override
  228. public boolean isEscapedModel();
  229. @Override
  230. public Serializable getPrimaryKeyObj();
  231. @Override
  232. public void setPrimaryKeyObj(Serializable primaryKeyObj);
  233. @Override
  234. public ExpandoBridge getExpandoBridge();
  235. @Override
  236. public void setExpandoBridgeAttributes(BaseModel<?> baseModel);
  237. @Override
  238. public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
  239. @Override
  240. public void setExpandoBridgeAttributes(ServiceContext serviceContext);
  241. @Override
  242. public Object clone();
  243. @Override
  244. public int compareTo(KaleoTask kaleoTask);
  245. @Override
  246. public int hashCode();
  247. @Override
  248. public CacheModel<KaleoTask> toCacheModel();
  249. @Override
  250. public KaleoTask toEscapedModel();
  251. @Override
  252. public KaleoTask toUnescapedModel();
  253. @Override
  254. public String toString();
  255. @Override
  256. public String toXmlString();
  257. }