PageRenderTime 41ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/webs/kaleo-web/docroot/WEB-INF/service/com/liferay/portal/workflow/kaleo/model/KaleoNotificationRecipientWrapper.java

https://github.com/l15k4/liferay-plugins
Java | 407 lines | 175 code | 56 blank | 176 comment | 0 complexity | 68bd44e6050a5a40872b1ec7b0343954 MD5 | raw file
  1. /**
  2. * Copyright (c) 2000-2011 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 com.liferay.portal.model.ModelWrapper;
  16. /**
  17. * <p>
  18. * This class is a wrapper for {@link KaleoNotificationRecipient}.
  19. * </p>
  20. *
  21. * @author Brian Wing Shun Chan
  22. * @see KaleoNotificationRecipient
  23. * @generated
  24. */
  25. public class KaleoNotificationRecipientWrapper
  26. implements KaleoNotificationRecipient,
  27. ModelWrapper<KaleoNotificationRecipient> {
  28. public KaleoNotificationRecipientWrapper(
  29. KaleoNotificationRecipient kaleoNotificationRecipient) {
  30. _kaleoNotificationRecipient = kaleoNotificationRecipient;
  31. }
  32. public Class<?> getModelClass() {
  33. return KaleoNotificationRecipient.class;
  34. }
  35. public String getModelClassName() {
  36. return KaleoNotificationRecipient.class.getName();
  37. }
  38. /**
  39. * Returns the primary key of this kaleo notification recipient.
  40. *
  41. * @return the primary key of this kaleo notification recipient
  42. */
  43. public long getPrimaryKey() {
  44. return _kaleoNotificationRecipient.getPrimaryKey();
  45. }
  46. /**
  47. * Sets the primary key of this kaleo notification recipient.
  48. *
  49. * @param primaryKey the primary key of this kaleo notification recipient
  50. */
  51. public void setPrimaryKey(long primaryKey) {
  52. _kaleoNotificationRecipient.setPrimaryKey(primaryKey);
  53. }
  54. /**
  55. * Returns the kaleo notification recipient ID of this kaleo notification recipient.
  56. *
  57. * @return the kaleo notification recipient ID of this kaleo notification recipient
  58. */
  59. public long getKaleoNotificationRecipientId() {
  60. return _kaleoNotificationRecipient.getKaleoNotificationRecipientId();
  61. }
  62. /**
  63. * Sets the kaleo notification recipient ID of this kaleo notification recipient.
  64. *
  65. * @param kaleoNotificationRecipientId the kaleo notification recipient ID of this kaleo notification recipient
  66. */
  67. public void setKaleoNotificationRecipientId(
  68. long kaleoNotificationRecipientId) {
  69. _kaleoNotificationRecipient.setKaleoNotificationRecipientId(kaleoNotificationRecipientId);
  70. }
  71. /**
  72. * Returns the group ID of this kaleo notification recipient.
  73. *
  74. * @return the group ID of this kaleo notification recipient
  75. */
  76. public long getGroupId() {
  77. return _kaleoNotificationRecipient.getGroupId();
  78. }
  79. /**
  80. * Sets the group ID of this kaleo notification recipient.
  81. *
  82. * @param groupId the group ID of this kaleo notification recipient
  83. */
  84. public void setGroupId(long groupId) {
  85. _kaleoNotificationRecipient.setGroupId(groupId);
  86. }
  87. /**
  88. * Returns the company ID of this kaleo notification recipient.
  89. *
  90. * @return the company ID of this kaleo notification recipient
  91. */
  92. public long getCompanyId() {
  93. return _kaleoNotificationRecipient.getCompanyId();
  94. }
  95. /**
  96. * Sets the company ID of this kaleo notification recipient.
  97. *
  98. * @param companyId the company ID of this kaleo notification recipient
  99. */
  100. public void setCompanyId(long companyId) {
  101. _kaleoNotificationRecipient.setCompanyId(companyId);
  102. }
  103. /**
  104. * Returns the user ID of this kaleo notification recipient.
  105. *
  106. * @return the user ID of this kaleo notification recipient
  107. */
  108. public long getUserId() {
  109. return _kaleoNotificationRecipient.getUserId();
  110. }
  111. /**
  112. * Sets the user ID of this kaleo notification recipient.
  113. *
  114. * @param userId the user ID of this kaleo notification recipient
  115. */
  116. public void setUserId(long userId) {
  117. _kaleoNotificationRecipient.setUserId(userId);
  118. }
  119. /**
  120. * Returns the user uuid of this kaleo notification recipient.
  121. *
  122. * @return the user uuid of this kaleo notification recipient
  123. * @throws SystemException if a system exception occurred
  124. */
  125. public java.lang.String getUserUuid()
  126. throws com.liferay.portal.kernel.exception.SystemException {
  127. return _kaleoNotificationRecipient.getUserUuid();
  128. }
  129. /**
  130. * Sets the user uuid of this kaleo notification recipient.
  131. *
  132. * @param userUuid the user uuid of this kaleo notification recipient
  133. */
  134. public void setUserUuid(java.lang.String userUuid) {
  135. _kaleoNotificationRecipient.setUserUuid(userUuid);
  136. }
  137. /**
  138. * Returns the user name of this kaleo notification recipient.
  139. *
  140. * @return the user name of this kaleo notification recipient
  141. */
  142. public java.lang.String getUserName() {
  143. return _kaleoNotificationRecipient.getUserName();
  144. }
  145. /**
  146. * Sets the user name of this kaleo notification recipient.
  147. *
  148. * @param userName the user name of this kaleo notification recipient
  149. */
  150. public void setUserName(java.lang.String userName) {
  151. _kaleoNotificationRecipient.setUserName(userName);
  152. }
  153. /**
  154. * Returns the create date of this kaleo notification recipient.
  155. *
  156. * @return the create date of this kaleo notification recipient
  157. */
  158. public java.util.Date getCreateDate() {
  159. return _kaleoNotificationRecipient.getCreateDate();
  160. }
  161. /**
  162. * Sets the create date of this kaleo notification recipient.
  163. *
  164. * @param createDate the create date of this kaleo notification recipient
  165. */
  166. public void setCreateDate(java.util.Date createDate) {
  167. _kaleoNotificationRecipient.setCreateDate(createDate);
  168. }
  169. /**
  170. * Returns the modified date of this kaleo notification recipient.
  171. *
  172. * @return the modified date of this kaleo notification recipient
  173. */
  174. public java.util.Date getModifiedDate() {
  175. return _kaleoNotificationRecipient.getModifiedDate();
  176. }
  177. /**
  178. * Sets the modified date of this kaleo notification recipient.
  179. *
  180. * @param modifiedDate the modified date of this kaleo notification recipient
  181. */
  182. public void setModifiedDate(java.util.Date modifiedDate) {
  183. _kaleoNotificationRecipient.setModifiedDate(modifiedDate);
  184. }
  185. /**
  186. * Returns the kaleo definition ID of this kaleo notification recipient.
  187. *
  188. * @return the kaleo definition ID of this kaleo notification recipient
  189. */
  190. public long getKaleoDefinitionId() {
  191. return _kaleoNotificationRecipient.getKaleoDefinitionId();
  192. }
  193. /**
  194. * Sets the kaleo definition ID of this kaleo notification recipient.
  195. *
  196. * @param kaleoDefinitionId the kaleo definition ID of this kaleo notification recipient
  197. */
  198. public void setKaleoDefinitionId(long kaleoDefinitionId) {
  199. _kaleoNotificationRecipient.setKaleoDefinitionId(kaleoDefinitionId);
  200. }
  201. /**
  202. * Returns the kaleo notification ID of this kaleo notification recipient.
  203. *
  204. * @return the kaleo notification ID of this kaleo notification recipient
  205. */
  206. public long getKaleoNotificationId() {
  207. return _kaleoNotificationRecipient.getKaleoNotificationId();
  208. }
  209. /**
  210. * Sets the kaleo notification ID of this kaleo notification recipient.
  211. *
  212. * @param kaleoNotificationId the kaleo notification ID of this kaleo notification recipient
  213. */
  214. public void setKaleoNotificationId(long kaleoNotificationId) {
  215. _kaleoNotificationRecipient.setKaleoNotificationId(kaleoNotificationId);
  216. }
  217. /**
  218. * Returns the recipient class name of this kaleo notification recipient.
  219. *
  220. * @return the recipient class name of this kaleo notification recipient
  221. */
  222. public java.lang.String getRecipientClassName() {
  223. return _kaleoNotificationRecipient.getRecipientClassName();
  224. }
  225. /**
  226. * Sets the recipient class name of this kaleo notification recipient.
  227. *
  228. * @param recipientClassName the recipient class name of this kaleo notification recipient
  229. */
  230. public void setRecipientClassName(java.lang.String recipientClassName) {
  231. _kaleoNotificationRecipient.setRecipientClassName(recipientClassName);
  232. }
  233. /**
  234. * Returns the recipient class p k of this kaleo notification recipient.
  235. *
  236. * @return the recipient class p k of this kaleo notification recipient
  237. */
  238. public long getRecipientClassPK() {
  239. return _kaleoNotificationRecipient.getRecipientClassPK();
  240. }
  241. /**
  242. * Sets the recipient class p k of this kaleo notification recipient.
  243. *
  244. * @param recipientClassPK the recipient class p k of this kaleo notification recipient
  245. */
  246. public void setRecipientClassPK(long recipientClassPK) {
  247. _kaleoNotificationRecipient.setRecipientClassPK(recipientClassPK);
  248. }
  249. /**
  250. * Returns the recipient role type of this kaleo notification recipient.
  251. *
  252. * @return the recipient role type of this kaleo notification recipient
  253. */
  254. public int getRecipientRoleType() {
  255. return _kaleoNotificationRecipient.getRecipientRoleType();
  256. }
  257. /**
  258. * Sets the recipient role type of this kaleo notification recipient.
  259. *
  260. * @param recipientRoleType the recipient role type of this kaleo notification recipient
  261. */
  262. public void setRecipientRoleType(int recipientRoleType) {
  263. _kaleoNotificationRecipient.setRecipientRoleType(recipientRoleType);
  264. }
  265. /**
  266. * Returns the address of this kaleo notification recipient.
  267. *
  268. * @return the address of this kaleo notification recipient
  269. */
  270. public java.lang.String getAddress() {
  271. return _kaleoNotificationRecipient.getAddress();
  272. }
  273. /**
  274. * Sets the address of this kaleo notification recipient.
  275. *
  276. * @param address the address of this kaleo notification recipient
  277. */
  278. public void setAddress(java.lang.String address) {
  279. _kaleoNotificationRecipient.setAddress(address);
  280. }
  281. public boolean isNew() {
  282. return _kaleoNotificationRecipient.isNew();
  283. }
  284. public void setNew(boolean n) {
  285. _kaleoNotificationRecipient.setNew(n);
  286. }
  287. public boolean isCachedModel() {
  288. return _kaleoNotificationRecipient.isCachedModel();
  289. }
  290. public void setCachedModel(boolean cachedModel) {
  291. _kaleoNotificationRecipient.setCachedModel(cachedModel);
  292. }
  293. public boolean isEscapedModel() {
  294. return _kaleoNotificationRecipient.isEscapedModel();
  295. }
  296. public java.io.Serializable getPrimaryKeyObj() {
  297. return _kaleoNotificationRecipient.getPrimaryKeyObj();
  298. }
  299. public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
  300. _kaleoNotificationRecipient.setPrimaryKeyObj(primaryKeyObj);
  301. }
  302. public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
  303. return _kaleoNotificationRecipient.getExpandoBridge();
  304. }
  305. public void setExpandoBridgeAttributes(
  306. com.liferay.portal.service.ServiceContext serviceContext) {
  307. _kaleoNotificationRecipient.setExpandoBridgeAttributes(serviceContext);
  308. }
  309. @Override
  310. public java.lang.Object clone() {
  311. return new KaleoNotificationRecipientWrapper((KaleoNotificationRecipient)_kaleoNotificationRecipient.clone());
  312. }
  313. public int compareTo(
  314. com.liferay.portal.workflow.kaleo.model.KaleoNotificationRecipient kaleoNotificationRecipient) {
  315. return _kaleoNotificationRecipient.compareTo(kaleoNotificationRecipient);
  316. }
  317. @Override
  318. public int hashCode() {
  319. return _kaleoNotificationRecipient.hashCode();
  320. }
  321. public com.liferay.portal.model.CacheModel<com.liferay.portal.workflow.kaleo.model.KaleoNotificationRecipient> toCacheModel() {
  322. return _kaleoNotificationRecipient.toCacheModel();
  323. }
  324. public com.liferay.portal.workflow.kaleo.model.KaleoNotificationRecipient toEscapedModel() {
  325. return new KaleoNotificationRecipientWrapper(_kaleoNotificationRecipient.toEscapedModel());
  326. }
  327. @Override
  328. public java.lang.String toString() {
  329. return _kaleoNotificationRecipient.toString();
  330. }
  331. public java.lang.String toXmlString() {
  332. return _kaleoNotificationRecipient.toXmlString();
  333. }
  334. public void persist()
  335. throws com.liferay.portal.kernel.exception.SystemException {
  336. _kaleoNotificationRecipient.persist();
  337. }
  338. /**
  339. * @deprecated Renamed to {@link #getWrappedModel}
  340. */
  341. public KaleoNotificationRecipient getWrappedKaleoNotificationRecipient() {
  342. return _kaleoNotificationRecipient;
  343. }
  344. public KaleoNotificationRecipient getWrappedModel() {
  345. return _kaleoNotificationRecipient;
  346. }
  347. public void resetOriginalValues() {
  348. _kaleoNotificationRecipient.resetOriginalValues();
  349. }
  350. private KaleoNotificationRecipient _kaleoNotificationRecipient;
  351. }