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

http://github.com/liferay/liferay-portal · Java · 576 lines · 320 code · 94 blank · 162 comment · 28 complexity · 64d399763a114ee2ee400db46a6f2c28 MD5 · raw file

  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.model.ModelWrapper;
  18. import com.liferay.portal.kernel.service.ServiceContext;
  19. import java.io.Serializable;
  20. import java.util.Date;
  21. import java.util.HashMap;
  22. import java.util.Map;
  23. import java.util.Objects;
  24. /**
  25. * <p>
  26. * This class is a wrapper for {@link KaleoCondition}.
  27. * </p>
  28. *
  29. * @author Brian Wing Shun Chan
  30. * @see KaleoCondition
  31. * @generated
  32. */
  33. @ProviderType
  34. public class KaleoConditionWrapper implements KaleoCondition,
  35. ModelWrapper<KaleoCondition> {
  36. public KaleoConditionWrapper(KaleoCondition kaleoCondition) {
  37. _kaleoCondition = kaleoCondition;
  38. }
  39. @Override
  40. public Class<?> getModelClass() {
  41. return KaleoCondition.class;
  42. }
  43. @Override
  44. public String getModelClassName() {
  45. return KaleoCondition.class.getName();
  46. }
  47. @Override
  48. public Map<String, Object> getModelAttributes() {
  49. Map<String, Object> attributes = new HashMap<String, Object>();
  50. attributes.put("kaleoConditionId", getKaleoConditionId());
  51. attributes.put("groupId", getGroupId());
  52. attributes.put("companyId", getCompanyId());
  53. attributes.put("userId", getUserId());
  54. attributes.put("userName", getUserName());
  55. attributes.put("createDate", getCreateDate());
  56. attributes.put("modifiedDate", getModifiedDate());
  57. attributes.put("kaleoDefinitionId", getKaleoDefinitionId());
  58. attributes.put("kaleoNodeId", getKaleoNodeId());
  59. attributes.put("script", getScript());
  60. attributes.put("scriptLanguage", getScriptLanguage());
  61. attributes.put("scriptRequiredContexts", getScriptRequiredContexts());
  62. return attributes;
  63. }
  64. @Override
  65. public void setModelAttributes(Map<String, Object> attributes) {
  66. Long kaleoConditionId = (Long)attributes.get("kaleoConditionId");
  67. if (kaleoConditionId != null) {
  68. setKaleoConditionId(kaleoConditionId);
  69. }
  70. Long groupId = (Long)attributes.get("groupId");
  71. if (groupId != null) {
  72. setGroupId(groupId);
  73. }
  74. Long companyId = (Long)attributes.get("companyId");
  75. if (companyId != null) {
  76. setCompanyId(companyId);
  77. }
  78. Long userId = (Long)attributes.get("userId");
  79. if (userId != null) {
  80. setUserId(userId);
  81. }
  82. String userName = (String)attributes.get("userName");
  83. if (userName != null) {
  84. setUserName(userName);
  85. }
  86. Date createDate = (Date)attributes.get("createDate");
  87. if (createDate != null) {
  88. setCreateDate(createDate);
  89. }
  90. Date modifiedDate = (Date)attributes.get("modifiedDate");
  91. if (modifiedDate != null) {
  92. setModifiedDate(modifiedDate);
  93. }
  94. Long kaleoDefinitionId = (Long)attributes.get("kaleoDefinitionId");
  95. if (kaleoDefinitionId != null) {
  96. setKaleoDefinitionId(kaleoDefinitionId);
  97. }
  98. Long kaleoNodeId = (Long)attributes.get("kaleoNodeId");
  99. if (kaleoNodeId != null) {
  100. setKaleoNodeId(kaleoNodeId);
  101. }
  102. String script = (String)attributes.get("script");
  103. if (script != null) {
  104. setScript(script);
  105. }
  106. String scriptLanguage = (String)attributes.get("scriptLanguage");
  107. if (scriptLanguage != null) {
  108. setScriptLanguage(scriptLanguage);
  109. }
  110. String scriptRequiredContexts = (String)attributes.get(
  111. "scriptRequiredContexts");
  112. if (scriptRequiredContexts != null) {
  113. setScriptRequiredContexts(scriptRequiredContexts);
  114. }
  115. }
  116. @Override
  117. public KaleoCondition toEscapedModel() {
  118. return new KaleoConditionWrapper(_kaleoCondition.toEscapedModel());
  119. }
  120. @Override
  121. public KaleoCondition toUnescapedModel() {
  122. return new KaleoConditionWrapper(_kaleoCondition.toUnescapedModel());
  123. }
  124. @Override
  125. public boolean isCachedModel() {
  126. return _kaleoCondition.isCachedModel();
  127. }
  128. @Override
  129. public boolean isEscapedModel() {
  130. return _kaleoCondition.isEscapedModel();
  131. }
  132. @Override
  133. public boolean isNew() {
  134. return _kaleoCondition.isNew();
  135. }
  136. @Override
  137. public ExpandoBridge getExpandoBridge() {
  138. return _kaleoCondition.getExpandoBridge();
  139. }
  140. @Override
  141. public com.liferay.portal.kernel.model.CacheModel<KaleoCondition> toCacheModel() {
  142. return _kaleoCondition.toCacheModel();
  143. }
  144. @Override
  145. public int compareTo(KaleoCondition kaleoCondition) {
  146. return _kaleoCondition.compareTo(kaleoCondition);
  147. }
  148. @Override
  149. public int hashCode() {
  150. return _kaleoCondition.hashCode();
  151. }
  152. @Override
  153. public Serializable getPrimaryKeyObj() {
  154. return _kaleoCondition.getPrimaryKeyObj();
  155. }
  156. @Override
  157. public java.lang.Object clone() {
  158. return new KaleoConditionWrapper((KaleoCondition)_kaleoCondition.clone());
  159. }
  160. /**
  161. * Returns the script of this kaleo condition.
  162. *
  163. * @return the script of this kaleo condition
  164. */
  165. @Override
  166. public java.lang.String getScript() {
  167. return _kaleoCondition.getScript();
  168. }
  169. /**
  170. * Returns the script language of this kaleo condition.
  171. *
  172. * @return the script language of this kaleo condition
  173. */
  174. @Override
  175. public java.lang.String getScriptLanguage() {
  176. return _kaleoCondition.getScriptLanguage();
  177. }
  178. /**
  179. * Returns the script required contexts of this kaleo condition.
  180. *
  181. * @return the script required contexts of this kaleo condition
  182. */
  183. @Override
  184. public java.lang.String getScriptRequiredContexts() {
  185. return _kaleoCondition.getScriptRequiredContexts();
  186. }
  187. /**
  188. * Returns the user name of this kaleo condition.
  189. *
  190. * @return the user name of this kaleo condition
  191. */
  192. @Override
  193. public java.lang.String getUserName() {
  194. return _kaleoCondition.getUserName();
  195. }
  196. /**
  197. * Returns the user uuid of this kaleo condition.
  198. *
  199. * @return the user uuid of this kaleo condition
  200. */
  201. @Override
  202. public java.lang.String getUserUuid() {
  203. return _kaleoCondition.getUserUuid();
  204. }
  205. @Override
  206. public java.lang.String toString() {
  207. return _kaleoCondition.toString();
  208. }
  209. @Override
  210. public java.lang.String toXmlString() {
  211. return _kaleoCondition.toXmlString();
  212. }
  213. /**
  214. * Returns the create date of this kaleo condition.
  215. *
  216. * @return the create date of this kaleo condition
  217. */
  218. @Override
  219. public Date getCreateDate() {
  220. return _kaleoCondition.getCreateDate();
  221. }
  222. /**
  223. * Returns the modified date of this kaleo condition.
  224. *
  225. * @return the modified date of this kaleo condition
  226. */
  227. @Override
  228. public Date getModifiedDate() {
  229. return _kaleoCondition.getModifiedDate();
  230. }
  231. /**
  232. * Returns the company ID of this kaleo condition.
  233. *
  234. * @return the company ID of this kaleo condition
  235. */
  236. @Override
  237. public long getCompanyId() {
  238. return _kaleoCondition.getCompanyId();
  239. }
  240. /**
  241. * Returns the group ID of this kaleo condition.
  242. *
  243. * @return the group ID of this kaleo condition
  244. */
  245. @Override
  246. public long getGroupId() {
  247. return _kaleoCondition.getGroupId();
  248. }
  249. /**
  250. * Returns the kaleo condition ID of this kaleo condition.
  251. *
  252. * @return the kaleo condition ID of this kaleo condition
  253. */
  254. @Override
  255. public long getKaleoConditionId() {
  256. return _kaleoCondition.getKaleoConditionId();
  257. }
  258. /**
  259. * Returns the kaleo definition ID of this kaleo condition.
  260. *
  261. * @return the kaleo definition ID of this kaleo condition
  262. */
  263. @Override
  264. public long getKaleoDefinitionId() {
  265. return _kaleoCondition.getKaleoDefinitionId();
  266. }
  267. /**
  268. * Returns the kaleo node ID of this kaleo condition.
  269. *
  270. * @return the kaleo node ID of this kaleo condition
  271. */
  272. @Override
  273. public long getKaleoNodeId() {
  274. return _kaleoCondition.getKaleoNodeId();
  275. }
  276. /**
  277. * Returns the primary key of this kaleo condition.
  278. *
  279. * @return the primary key of this kaleo condition
  280. */
  281. @Override
  282. public long getPrimaryKey() {
  283. return _kaleoCondition.getPrimaryKey();
  284. }
  285. /**
  286. * Returns the user ID of this kaleo condition.
  287. *
  288. * @return the user ID of this kaleo condition
  289. */
  290. @Override
  291. public long getUserId() {
  292. return _kaleoCondition.getUserId();
  293. }
  294. @Override
  295. public void persist() {
  296. _kaleoCondition.persist();
  297. }
  298. @Override
  299. public void setCachedModel(boolean cachedModel) {
  300. _kaleoCondition.setCachedModel(cachedModel);
  301. }
  302. /**
  303. * Sets the company ID of this kaleo condition.
  304. *
  305. * @param companyId the company ID of this kaleo condition
  306. */
  307. @Override
  308. public void setCompanyId(long companyId) {
  309. _kaleoCondition.setCompanyId(companyId);
  310. }
  311. /**
  312. * Sets the create date of this kaleo condition.
  313. *
  314. * @param createDate the create date of this kaleo condition
  315. */
  316. @Override
  317. public void setCreateDate(Date createDate) {
  318. _kaleoCondition.setCreateDate(createDate);
  319. }
  320. @Override
  321. public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge) {
  322. _kaleoCondition.setExpandoBridgeAttributes(expandoBridge);
  323. }
  324. @Override
  325. public void setExpandoBridgeAttributes(
  326. com.liferay.portal.kernel.model.BaseModel<?> baseModel) {
  327. _kaleoCondition.setExpandoBridgeAttributes(baseModel);
  328. }
  329. @Override
  330. public void setExpandoBridgeAttributes(ServiceContext serviceContext) {
  331. _kaleoCondition.setExpandoBridgeAttributes(serviceContext);
  332. }
  333. /**
  334. * Sets the group ID of this kaleo condition.
  335. *
  336. * @param groupId the group ID of this kaleo condition
  337. */
  338. @Override
  339. public void setGroupId(long groupId) {
  340. _kaleoCondition.setGroupId(groupId);
  341. }
  342. /**
  343. * Sets the kaleo condition ID of this kaleo condition.
  344. *
  345. * @param kaleoConditionId the kaleo condition ID of this kaleo condition
  346. */
  347. @Override
  348. public void setKaleoConditionId(long kaleoConditionId) {
  349. _kaleoCondition.setKaleoConditionId(kaleoConditionId);
  350. }
  351. /**
  352. * Sets the kaleo definition ID of this kaleo condition.
  353. *
  354. * @param kaleoDefinitionId the kaleo definition ID of this kaleo condition
  355. */
  356. @Override
  357. public void setKaleoDefinitionId(long kaleoDefinitionId) {
  358. _kaleoCondition.setKaleoDefinitionId(kaleoDefinitionId);
  359. }
  360. /**
  361. * Sets the kaleo node ID of this kaleo condition.
  362. *
  363. * @param kaleoNodeId the kaleo node ID of this kaleo condition
  364. */
  365. @Override
  366. public void setKaleoNodeId(long kaleoNodeId) {
  367. _kaleoCondition.setKaleoNodeId(kaleoNodeId);
  368. }
  369. /**
  370. * Sets the modified date of this kaleo condition.
  371. *
  372. * @param modifiedDate the modified date of this kaleo condition
  373. */
  374. @Override
  375. public void setModifiedDate(Date modifiedDate) {
  376. _kaleoCondition.setModifiedDate(modifiedDate);
  377. }
  378. @Override
  379. public void setNew(boolean n) {
  380. _kaleoCondition.setNew(n);
  381. }
  382. /**
  383. * Sets the primary key of this kaleo condition.
  384. *
  385. * @param primaryKey the primary key of this kaleo condition
  386. */
  387. @Override
  388. public void setPrimaryKey(long primaryKey) {
  389. _kaleoCondition.setPrimaryKey(primaryKey);
  390. }
  391. @Override
  392. public void setPrimaryKeyObj(Serializable primaryKeyObj) {
  393. _kaleoCondition.setPrimaryKeyObj(primaryKeyObj);
  394. }
  395. /**
  396. * Sets the script of this kaleo condition.
  397. *
  398. * @param script the script of this kaleo condition
  399. */
  400. @Override
  401. public void setScript(java.lang.String script) {
  402. _kaleoCondition.setScript(script);
  403. }
  404. /**
  405. * Sets the script language of this kaleo condition.
  406. *
  407. * @param scriptLanguage the script language of this kaleo condition
  408. */
  409. @Override
  410. public void setScriptLanguage(java.lang.String scriptLanguage) {
  411. _kaleoCondition.setScriptLanguage(scriptLanguage);
  412. }
  413. /**
  414. * Sets the script required contexts of this kaleo condition.
  415. *
  416. * @param scriptRequiredContexts the script required contexts of this kaleo condition
  417. */
  418. @Override
  419. public void setScriptRequiredContexts(
  420. java.lang.String scriptRequiredContexts) {
  421. _kaleoCondition.setScriptRequiredContexts(scriptRequiredContexts);
  422. }
  423. /**
  424. * Sets the user ID of this kaleo condition.
  425. *
  426. * @param userId the user ID of this kaleo condition
  427. */
  428. @Override
  429. public void setUserId(long userId) {
  430. _kaleoCondition.setUserId(userId);
  431. }
  432. /**
  433. * Sets the user name of this kaleo condition.
  434. *
  435. * @param userName the user name of this kaleo condition
  436. */
  437. @Override
  438. public void setUserName(java.lang.String userName) {
  439. _kaleoCondition.setUserName(userName);
  440. }
  441. /**
  442. * Sets the user uuid of this kaleo condition.
  443. *
  444. * @param userUuid the user uuid of this kaleo condition
  445. */
  446. @Override
  447. public void setUserUuid(java.lang.String userUuid) {
  448. _kaleoCondition.setUserUuid(userUuid);
  449. }
  450. @Override
  451. public boolean equals(Object obj) {
  452. if (this == obj) {
  453. return true;
  454. }
  455. if (!(obj instanceof KaleoConditionWrapper)) {
  456. return false;
  457. }
  458. KaleoConditionWrapper kaleoConditionWrapper = (KaleoConditionWrapper)obj;
  459. if (Objects.equals(_kaleoCondition,
  460. kaleoConditionWrapper._kaleoCondition)) {
  461. return true;
  462. }
  463. return false;
  464. }
  465. @Override
  466. public KaleoCondition getWrappedModel() {
  467. return _kaleoCondition;
  468. }
  469. @Override
  470. public boolean isEntityCacheEnabled() {
  471. return _kaleoCondition.isEntityCacheEnabled();
  472. }
  473. @Override
  474. public boolean isFinderCacheEnabled() {
  475. return _kaleoCondition.isFinderCacheEnabled();
  476. }
  477. @Override
  478. public void resetOriginalValues() {
  479. _kaleoCondition.resetOriginalValues();
  480. }
  481. private final KaleoCondition _kaleoCondition;
  482. }