/modules/apps/wiki/wiki-api/src/main/java/com/liferay/wiki/model/WikiPageWrapper.java

http://github.com/liferay/liferay-portal · Java · 1210 lines · 615 code · 182 blank · 413 comment · 52 complexity · 062bb920636c15b1e69d9352c644d61c 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.wiki.model;
  15. import com.liferay.exportimport.kernel.lar.StagedModelType;
  16. import com.liferay.portal.kernel.model.ModelWrapper;
  17. import com.liferay.portal.kernel.model.wrapper.BaseModelWrapper;
  18. import java.util.Date;
  19. import java.util.HashMap;
  20. import java.util.Map;
  21. /**
  22. * <p>
  23. * This class is a wrapper for {@link WikiPage}.
  24. * </p>
  25. *
  26. * @author Brian Wing Shun Chan
  27. * @see WikiPage
  28. * @generated
  29. */
  30. public class WikiPageWrapper
  31. extends BaseModelWrapper<WikiPage>
  32. implements ModelWrapper<WikiPage>, WikiPage {
  33. public WikiPageWrapper(WikiPage wikiPage) {
  34. super(wikiPage);
  35. }
  36. @Override
  37. public Map<String, Object> getModelAttributes() {
  38. Map<String, Object> attributes = new HashMap<String, Object>();
  39. attributes.put("mvccVersion", getMvccVersion());
  40. attributes.put("uuid", getUuid());
  41. attributes.put("pageId", getPageId());
  42. attributes.put("resourcePrimKey", getResourcePrimKey());
  43. attributes.put("groupId", getGroupId());
  44. attributes.put("companyId", getCompanyId());
  45. attributes.put("userId", getUserId());
  46. attributes.put("userName", getUserName());
  47. attributes.put("createDate", getCreateDate());
  48. attributes.put("modifiedDate", getModifiedDate());
  49. attributes.put("externalReferenceCode", getExternalReferenceCode());
  50. attributes.put("nodeId", getNodeId());
  51. attributes.put("title", getTitle());
  52. attributes.put("version", getVersion());
  53. attributes.put("minorEdit", isMinorEdit());
  54. attributes.put("content", getContent());
  55. attributes.put("summary", getSummary());
  56. attributes.put("format", getFormat());
  57. attributes.put("head", isHead());
  58. attributes.put("parentTitle", getParentTitle());
  59. attributes.put("redirectTitle", getRedirectTitle());
  60. attributes.put("lastPublishDate", getLastPublishDate());
  61. attributes.put("status", getStatus());
  62. attributes.put("statusByUserId", getStatusByUserId());
  63. attributes.put("statusByUserName", getStatusByUserName());
  64. attributes.put("statusDate", getStatusDate());
  65. return attributes;
  66. }
  67. @Override
  68. public void setModelAttributes(Map<String, Object> attributes) {
  69. Long mvccVersion = (Long)attributes.get("mvccVersion");
  70. if (mvccVersion != null) {
  71. setMvccVersion(mvccVersion);
  72. }
  73. String uuid = (String)attributes.get("uuid");
  74. if (uuid != null) {
  75. setUuid(uuid);
  76. }
  77. Long pageId = (Long)attributes.get("pageId");
  78. if (pageId != null) {
  79. setPageId(pageId);
  80. }
  81. Long resourcePrimKey = (Long)attributes.get("resourcePrimKey");
  82. if (resourcePrimKey != null) {
  83. setResourcePrimKey(resourcePrimKey);
  84. }
  85. Long groupId = (Long)attributes.get("groupId");
  86. if (groupId != null) {
  87. setGroupId(groupId);
  88. }
  89. Long companyId = (Long)attributes.get("companyId");
  90. if (companyId != null) {
  91. setCompanyId(companyId);
  92. }
  93. Long userId = (Long)attributes.get("userId");
  94. if (userId != null) {
  95. setUserId(userId);
  96. }
  97. String userName = (String)attributes.get("userName");
  98. if (userName != null) {
  99. setUserName(userName);
  100. }
  101. Date createDate = (Date)attributes.get("createDate");
  102. if (createDate != null) {
  103. setCreateDate(createDate);
  104. }
  105. Date modifiedDate = (Date)attributes.get("modifiedDate");
  106. if (modifiedDate != null) {
  107. setModifiedDate(modifiedDate);
  108. }
  109. String externalReferenceCode = (String)attributes.get(
  110. "externalReferenceCode");
  111. if (externalReferenceCode != null) {
  112. setExternalReferenceCode(externalReferenceCode);
  113. }
  114. Long nodeId = (Long)attributes.get("nodeId");
  115. if (nodeId != null) {
  116. setNodeId(nodeId);
  117. }
  118. String title = (String)attributes.get("title");
  119. if (title != null) {
  120. setTitle(title);
  121. }
  122. Double version = (Double)attributes.get("version");
  123. if (version != null) {
  124. setVersion(version);
  125. }
  126. Boolean minorEdit = (Boolean)attributes.get("minorEdit");
  127. if (minorEdit != null) {
  128. setMinorEdit(minorEdit);
  129. }
  130. String content = (String)attributes.get("content");
  131. if (content != null) {
  132. setContent(content);
  133. }
  134. String summary = (String)attributes.get("summary");
  135. if (summary != null) {
  136. setSummary(summary);
  137. }
  138. String format = (String)attributes.get("format");
  139. if (format != null) {
  140. setFormat(format);
  141. }
  142. Boolean head = (Boolean)attributes.get("head");
  143. if (head != null) {
  144. setHead(head);
  145. }
  146. String parentTitle = (String)attributes.get("parentTitle");
  147. if (parentTitle != null) {
  148. setParentTitle(parentTitle);
  149. }
  150. String redirectTitle = (String)attributes.get("redirectTitle");
  151. if (redirectTitle != null) {
  152. setRedirectTitle(redirectTitle);
  153. }
  154. Date lastPublishDate = (Date)attributes.get("lastPublishDate");
  155. if (lastPublishDate != null) {
  156. setLastPublishDate(lastPublishDate);
  157. }
  158. Integer status = (Integer)attributes.get("status");
  159. if (status != null) {
  160. setStatus(status);
  161. }
  162. Long statusByUserId = (Long)attributes.get("statusByUserId");
  163. if (statusByUserId != null) {
  164. setStatusByUserId(statusByUserId);
  165. }
  166. String statusByUserName = (String)attributes.get("statusByUserName");
  167. if (statusByUserName != null) {
  168. setStatusByUserName(statusByUserName);
  169. }
  170. Date statusDate = (Date)attributes.get("statusDate");
  171. if (statusDate != null) {
  172. setStatusDate(statusDate);
  173. }
  174. }
  175. @Override
  176. public com.liferay.portal.kernel.repository.model.Folder
  177. addAttachmentsFolder()
  178. throws com.liferay.portal.kernel.exception.PortalException {
  179. return model.addAttachmentsFolder();
  180. }
  181. @Override
  182. public WikiPage cloneWithOriginalValues() {
  183. return wrap(model.cloneWithOriginalValues());
  184. }
  185. @Override
  186. public WikiPage fetchParentPage() {
  187. return model.fetchParentPage();
  188. }
  189. @Override
  190. public WikiPage fetchRedirectPage() {
  191. return model.fetchRedirectPage();
  192. }
  193. @Override
  194. public java.util.List<com.liferay.portal.kernel.repository.model.FileEntry>
  195. getAttachmentsFileEntries()
  196. throws com.liferay.portal.kernel.exception.PortalException {
  197. return model.getAttachmentsFileEntries();
  198. }
  199. @Override
  200. public java.util.List<com.liferay.portal.kernel.repository.model.FileEntry>
  201. getAttachmentsFileEntries(int start, int end)
  202. throws com.liferay.portal.kernel.exception.PortalException {
  203. return model.getAttachmentsFileEntries(start, end);
  204. }
  205. @Override
  206. public java.util.List<com.liferay.portal.kernel.repository.model.FileEntry>
  207. getAttachmentsFileEntries(
  208. int start, int end,
  209. com.liferay.portal.kernel.util.OrderByComparator
  210. <com.liferay.portal.kernel.repository.model.FileEntry>
  211. orderByComparator)
  212. throws com.liferay.portal.kernel.exception.PortalException {
  213. return model.getAttachmentsFileEntries(start, end, orderByComparator);
  214. }
  215. @Override
  216. public java.util.List<com.liferay.portal.kernel.repository.model.FileEntry>
  217. getAttachmentsFileEntries(
  218. String[] mimeTypes, int start, int end,
  219. com.liferay.portal.kernel.util.OrderByComparator
  220. <com.liferay.portal.kernel.repository.model.FileEntry>
  221. orderByComparator)
  222. throws com.liferay.portal.kernel.exception.PortalException {
  223. return model.getAttachmentsFileEntries(
  224. mimeTypes, start, end, orderByComparator);
  225. }
  226. @Override
  227. public int getAttachmentsFileEntriesCount()
  228. throws com.liferay.portal.kernel.exception.PortalException {
  229. return model.getAttachmentsFileEntriesCount();
  230. }
  231. @Override
  232. public int getAttachmentsFileEntriesCount(String[] mimeTypes)
  233. throws com.liferay.portal.kernel.exception.PortalException {
  234. return model.getAttachmentsFileEntriesCount(mimeTypes);
  235. }
  236. @Override
  237. public long getAttachmentsFolderId() {
  238. return model.getAttachmentsFolderId();
  239. }
  240. @Override
  241. public java.util.List<WikiPage> getChildPages() {
  242. return model.getChildPages();
  243. }
  244. /**
  245. * Returns the company ID of this wiki page.
  246. *
  247. * @return the company ID of this wiki page
  248. */
  249. @Override
  250. public long getCompanyId() {
  251. return model.getCompanyId();
  252. }
  253. /**
  254. * Returns the container model ID of this wiki page.
  255. *
  256. * @return the container model ID of this wiki page
  257. */
  258. @Override
  259. public long getContainerModelId() {
  260. return model.getContainerModelId();
  261. }
  262. /**
  263. * Returns the container name of this wiki page.
  264. *
  265. * @return the container name of this wiki page
  266. */
  267. @Override
  268. public String getContainerModelName() {
  269. return model.getContainerModelName();
  270. }
  271. /**
  272. * Returns the content of this wiki page.
  273. *
  274. * @return the content of this wiki page
  275. */
  276. @Override
  277. public String getContent() {
  278. return model.getContent();
  279. }
  280. /**
  281. * Returns the create date of this wiki page.
  282. *
  283. * @return the create date of this wiki page
  284. */
  285. @Override
  286. public Date getCreateDate() {
  287. return model.getCreateDate();
  288. }
  289. @Override
  290. public java.util.List<com.liferay.portal.kernel.repository.model.FileEntry>
  291. getDeletedAttachmentsFileEntries()
  292. throws com.liferay.portal.kernel.exception.PortalException {
  293. return model.getDeletedAttachmentsFileEntries();
  294. }
  295. @Override
  296. public java.util.List<com.liferay.portal.kernel.repository.model.FileEntry>
  297. getDeletedAttachmentsFileEntries(int start, int end)
  298. throws com.liferay.portal.kernel.exception.PortalException {
  299. return model.getDeletedAttachmentsFileEntries(start, end);
  300. }
  301. @Override
  302. public int getDeletedAttachmentsFileEntriesCount()
  303. throws com.liferay.portal.kernel.exception.PortalException {
  304. return model.getDeletedAttachmentsFileEntriesCount();
  305. }
  306. /**
  307. * Returns the external reference code of this wiki page.
  308. *
  309. * @return the external reference code of this wiki page
  310. */
  311. @Override
  312. public String getExternalReferenceCode() {
  313. return model.getExternalReferenceCode();
  314. }
  315. /**
  316. * Returns the format of this wiki page.
  317. *
  318. * @return the format of this wiki page
  319. */
  320. @Override
  321. public String getFormat() {
  322. return model.getFormat();
  323. }
  324. /**
  325. * Returns the group ID of this wiki page.
  326. *
  327. * @return the group ID of this wiki page
  328. */
  329. @Override
  330. public long getGroupId() {
  331. return model.getGroupId();
  332. }
  333. /**
  334. * Returns the head of this wiki page.
  335. *
  336. * @return the head of this wiki page
  337. */
  338. @Override
  339. public boolean getHead() {
  340. return model.getHead();
  341. }
  342. /**
  343. * Returns the last publish date of this wiki page.
  344. *
  345. * @return the last publish date of this wiki page
  346. */
  347. @Override
  348. public Date getLastPublishDate() {
  349. return model.getLastPublishDate();
  350. }
  351. /**
  352. * Returns the minor edit of this wiki page.
  353. *
  354. * @return the minor edit of this wiki page
  355. */
  356. @Override
  357. public boolean getMinorEdit() {
  358. return model.getMinorEdit();
  359. }
  360. /**
  361. * Returns the modified date of this wiki page.
  362. *
  363. * @return the modified date of this wiki page
  364. */
  365. @Override
  366. public Date getModifiedDate() {
  367. return model.getModifiedDate();
  368. }
  369. /**
  370. * Returns the mvcc version of this wiki page.
  371. *
  372. * @return the mvcc version of this wiki page
  373. */
  374. @Override
  375. public long getMvccVersion() {
  376. return model.getMvccVersion();
  377. }
  378. @Override
  379. public WikiNode getNode() {
  380. return model.getNode();
  381. }
  382. @Override
  383. public long getNodeAttachmentsFolderId() {
  384. return model.getNodeAttachmentsFolderId();
  385. }
  386. /**
  387. * Returns the node ID of this wiki page.
  388. *
  389. * @return the node ID of this wiki page
  390. */
  391. @Override
  392. public long getNodeId() {
  393. return model.getNodeId();
  394. }
  395. /**
  396. * Returns the page ID of this wiki page.
  397. *
  398. * @return the page ID of this wiki page
  399. */
  400. @Override
  401. public long getPageId() {
  402. return model.getPageId();
  403. }
  404. /**
  405. * Returns the parent container model ID of this wiki page.
  406. *
  407. * @return the parent container model ID of this wiki page
  408. */
  409. @Override
  410. public long getParentContainerModelId() {
  411. return model.getParentContainerModelId();
  412. }
  413. @Override
  414. public WikiPage getParentPage()
  415. throws com.liferay.portal.kernel.exception.PortalException {
  416. return model.getParentPage();
  417. }
  418. @Override
  419. public java.util.List<WikiPage> getParentPages() {
  420. return model.getParentPages();
  421. }
  422. /**
  423. * Returns the parent title of this wiki page.
  424. *
  425. * @return the parent title of this wiki page
  426. */
  427. @Override
  428. public String getParentTitle() {
  429. return model.getParentTitle();
  430. }
  431. /**
  432. * Returns the primary key of this wiki page.
  433. *
  434. * @return the primary key of this wiki page
  435. */
  436. @Override
  437. public long getPrimaryKey() {
  438. return model.getPrimaryKey();
  439. }
  440. @Override
  441. public WikiPage getRedirectPage()
  442. throws com.liferay.portal.kernel.exception.PortalException {
  443. return model.getRedirectPage();
  444. }
  445. /**
  446. * Returns the redirect title of this wiki page.
  447. *
  448. * @return the redirect title of this wiki page
  449. */
  450. @Override
  451. public String getRedirectTitle() {
  452. return model.getRedirectTitle();
  453. }
  454. /**
  455. * Returns the resource prim key of this wiki page.
  456. *
  457. * @return the resource prim key of this wiki page
  458. */
  459. @Override
  460. public long getResourcePrimKey() {
  461. return model.getResourcePrimKey();
  462. }
  463. /**
  464. * Returns the status of this wiki page.
  465. *
  466. * @return the status of this wiki page
  467. */
  468. @Override
  469. public int getStatus() {
  470. return model.getStatus();
  471. }
  472. /**
  473. * Returns the status by user ID of this wiki page.
  474. *
  475. * @return the status by user ID of this wiki page
  476. */
  477. @Override
  478. public long getStatusByUserId() {
  479. return model.getStatusByUserId();
  480. }
  481. /**
  482. * Returns the status by user name of this wiki page.
  483. *
  484. * @return the status by user name of this wiki page
  485. */
  486. @Override
  487. public String getStatusByUserName() {
  488. return model.getStatusByUserName();
  489. }
  490. /**
  491. * Returns the status by user uuid of this wiki page.
  492. *
  493. * @return the status by user uuid of this wiki page
  494. */
  495. @Override
  496. public String getStatusByUserUuid() {
  497. return model.getStatusByUserUuid();
  498. }
  499. /**
  500. * Returns the status date of this wiki page.
  501. *
  502. * @return the status date of this wiki page
  503. */
  504. @Override
  505. public Date getStatusDate() {
  506. return model.getStatusDate();
  507. }
  508. /**
  509. * Returns the summary of this wiki page.
  510. *
  511. * @return the summary of this wiki page
  512. */
  513. @Override
  514. public String getSummary() {
  515. return model.getSummary();
  516. }
  517. /**
  518. * Returns the title of this wiki page.
  519. *
  520. * @return the title of this wiki page
  521. */
  522. @Override
  523. public String getTitle() {
  524. return model.getTitle();
  525. }
  526. /**
  527. * Returns the trash entry created when this wiki page was moved to the Recycle Bin. The trash entry may belong to one of the ancestors of this wiki page.
  528. *
  529. * @return the trash entry created when this wiki page was moved to the Recycle Bin
  530. */
  531. @Override
  532. public com.liferay.trash.kernel.model.TrashEntry getTrashEntry()
  533. throws com.liferay.portal.kernel.exception.PortalException {
  534. return model.getTrashEntry();
  535. }
  536. /**
  537. * Returns the class primary key of the trash entry for this wiki page.
  538. *
  539. * @return the class primary key of the trash entry for this wiki page
  540. */
  541. @Override
  542. public long getTrashEntryClassPK() {
  543. return model.getTrashEntryClassPK();
  544. }
  545. /**
  546. * Returns the trash handler for this wiki page.
  547. *
  548. * @return the trash handler for this wiki page
  549. * @deprecated As of Judson (7.1.x), with no direct replacement
  550. */
  551. @Deprecated
  552. @Override
  553. public com.liferay.portal.kernel.trash.TrashHandler getTrashHandler() {
  554. return model.getTrashHandler();
  555. }
  556. /**
  557. * Returns the user ID of this wiki page.
  558. *
  559. * @return the user ID of this wiki page
  560. */
  561. @Override
  562. public long getUserId() {
  563. return model.getUserId();
  564. }
  565. /**
  566. * Returns the user name of this wiki page.
  567. *
  568. * @return the user name of this wiki page
  569. */
  570. @Override
  571. public String getUserName() {
  572. return model.getUserName();
  573. }
  574. /**
  575. * Returns the user uuid of this wiki page.
  576. *
  577. * @return the user uuid of this wiki page
  578. */
  579. @Override
  580. public String getUserUuid() {
  581. return model.getUserUuid();
  582. }
  583. /**
  584. * Returns the uuid of this wiki page.
  585. *
  586. * @return the uuid of this wiki page
  587. */
  588. @Override
  589. public String getUuid() {
  590. return model.getUuid();
  591. }
  592. /**
  593. * Returns the version of this wiki page.
  594. *
  595. * @return the version of this wiki page
  596. */
  597. @Override
  598. public double getVersion() {
  599. return model.getVersion();
  600. }
  601. @Override
  602. public java.util.List<WikiPage> getViewableChildPages() {
  603. return model.getViewableChildPages();
  604. }
  605. @Override
  606. public WikiPage getViewableParentPage() {
  607. return model.getViewableParentPage();
  608. }
  609. @Override
  610. public java.util.List<WikiPage> getViewableParentPages() {
  611. return model.getViewableParentPages();
  612. }
  613. /**
  614. * Returns <code>true</code> if this wiki page is approved.
  615. *
  616. * @return <code>true</code> if this wiki page is approved; <code>false</code> otherwise
  617. */
  618. @Override
  619. public boolean isApproved() {
  620. return model.isApproved();
  621. }
  622. /**
  623. * Returns <code>true</code> if this wiki page is denied.
  624. *
  625. * @return <code>true</code> if this wiki page is denied; <code>false</code> otherwise
  626. */
  627. @Override
  628. public boolean isDenied() {
  629. return model.isDenied();
  630. }
  631. /**
  632. * Returns <code>true</code> if this wiki page is a draft.
  633. *
  634. * @return <code>true</code> if this wiki page is a draft; <code>false</code> otherwise
  635. */
  636. @Override
  637. public boolean isDraft() {
  638. return model.isDraft();
  639. }
  640. /**
  641. * Returns <code>true</code> if this wiki page is expired.
  642. *
  643. * @return <code>true</code> if this wiki page is expired; <code>false</code> otherwise
  644. */
  645. @Override
  646. public boolean isExpired() {
  647. return model.isExpired();
  648. }
  649. /**
  650. * Returns <code>true</code> if this wiki page is head.
  651. *
  652. * @return <code>true</code> if this wiki page is head; <code>false</code> otherwise
  653. */
  654. @Override
  655. public boolean isHead() {
  656. return model.isHead();
  657. }
  658. /**
  659. * Returns <code>true</code> if this wiki page is inactive.
  660. *
  661. * @return <code>true</code> if this wiki page is inactive; <code>false</code> otherwise
  662. */
  663. @Override
  664. public boolean isInactive() {
  665. return model.isInactive();
  666. }
  667. /**
  668. * Returns <code>true</code> if this wiki page is incomplete.
  669. *
  670. * @return <code>true</code> if this wiki page is incomplete; <code>false</code> otherwise
  671. */
  672. @Override
  673. public boolean isIncomplete() {
  674. return model.isIncomplete();
  675. }
  676. /**
  677. * Returns <code>true</code> if this wiki page is in the Recycle Bin.
  678. *
  679. * @return <code>true</code> if this wiki page is in the Recycle Bin; <code>false</code> otherwise
  680. */
  681. @Override
  682. public boolean isInTrash() {
  683. return model.isInTrash();
  684. }
  685. /**
  686. * Returns <code>true</code> if the parent of this wiki page is in the Recycle Bin.
  687. *
  688. * @return <code>true</code> if the parent of this wiki page is in the Recycle Bin; <code>false</code> otherwise
  689. */
  690. @Override
  691. public boolean isInTrashContainer() {
  692. return model.isInTrashContainer();
  693. }
  694. @Override
  695. public boolean isInTrashExplicitly() {
  696. return model.isInTrashExplicitly();
  697. }
  698. @Override
  699. public boolean isInTrashImplicitly() {
  700. return model.isInTrashImplicitly();
  701. }
  702. /**
  703. * Returns <code>true</code> if this wiki page is minor edit.
  704. *
  705. * @return <code>true</code> if this wiki page is minor edit; <code>false</code> otherwise
  706. */
  707. @Override
  708. public boolean isMinorEdit() {
  709. return model.isMinorEdit();
  710. }
  711. /**
  712. * Returns <code>true</code> if this wiki page is pending.
  713. *
  714. * @return <code>true</code> if this wiki page is pending; <code>false</code> otherwise
  715. */
  716. @Override
  717. public boolean isPending() {
  718. return model.isPending();
  719. }
  720. @Override
  721. public boolean isResourceMain() {
  722. return model.isResourceMain();
  723. }
  724. /**
  725. * Returns <code>true</code> if this wiki page is scheduled.
  726. *
  727. * @return <code>true</code> if this wiki page is scheduled; <code>false</code> otherwise
  728. */
  729. @Override
  730. public boolean isScheduled() {
  731. return model.isScheduled();
  732. }
  733. @Override
  734. public void persist() {
  735. model.persist();
  736. }
  737. @Override
  738. public void setAttachmentsFolderId(long attachmentsFolderId) {
  739. model.setAttachmentsFolderId(attachmentsFolderId);
  740. }
  741. /**
  742. * Sets the company ID of this wiki page.
  743. *
  744. * @param companyId the company ID of this wiki page
  745. */
  746. @Override
  747. public void setCompanyId(long companyId) {
  748. model.setCompanyId(companyId);
  749. }
  750. /**
  751. * Sets the container model ID of this wiki page.
  752. *
  753. * @param containerModelId the container model ID of this wiki page
  754. */
  755. @Override
  756. public void setContainerModelId(long containerModelId) {
  757. model.setContainerModelId(containerModelId);
  758. }
  759. /**
  760. * Sets the content of this wiki page.
  761. *
  762. * @param content the content of this wiki page
  763. */
  764. @Override
  765. public void setContent(String content) {
  766. model.setContent(content);
  767. }
  768. /**
  769. * Sets the create date of this wiki page.
  770. *
  771. * @param createDate the create date of this wiki page
  772. */
  773. @Override
  774. public void setCreateDate(Date createDate) {
  775. model.setCreateDate(createDate);
  776. }
  777. /**
  778. * Sets the external reference code of this wiki page.
  779. *
  780. * @param externalReferenceCode the external reference code of this wiki page
  781. */
  782. @Override
  783. public void setExternalReferenceCode(String externalReferenceCode) {
  784. model.setExternalReferenceCode(externalReferenceCode);
  785. }
  786. /**
  787. * Sets the format of this wiki page.
  788. *
  789. * @param format the format of this wiki page
  790. */
  791. @Override
  792. public void setFormat(String format) {
  793. model.setFormat(format);
  794. }
  795. /**
  796. * Sets the group ID of this wiki page.
  797. *
  798. * @param groupId the group ID of this wiki page
  799. */
  800. @Override
  801. public void setGroupId(long groupId) {
  802. model.setGroupId(groupId);
  803. }
  804. /**
  805. * Sets whether this wiki page is head.
  806. *
  807. * @param head the head of this wiki page
  808. */
  809. @Override
  810. public void setHead(boolean head) {
  811. model.setHead(head);
  812. }
  813. /**
  814. * Sets the last publish date of this wiki page.
  815. *
  816. * @param lastPublishDate the last publish date of this wiki page
  817. */
  818. @Override
  819. public void setLastPublishDate(Date lastPublishDate) {
  820. model.setLastPublishDate(lastPublishDate);
  821. }
  822. /**
  823. * Sets whether this wiki page is minor edit.
  824. *
  825. * @param minorEdit the minor edit of this wiki page
  826. */
  827. @Override
  828. public void setMinorEdit(boolean minorEdit) {
  829. model.setMinorEdit(minorEdit);
  830. }
  831. /**
  832. * Sets the modified date of this wiki page.
  833. *
  834. * @param modifiedDate the modified date of this wiki page
  835. */
  836. @Override
  837. public void setModifiedDate(Date modifiedDate) {
  838. model.setModifiedDate(modifiedDate);
  839. }
  840. /**
  841. * Sets the mvcc version of this wiki page.
  842. *
  843. * @param mvccVersion the mvcc version of this wiki page
  844. */
  845. @Override
  846. public void setMvccVersion(long mvccVersion) {
  847. model.setMvccVersion(mvccVersion);
  848. }
  849. /**
  850. * Sets the node ID of this wiki page.
  851. *
  852. * @param nodeId the node ID of this wiki page
  853. */
  854. @Override
  855. public void setNodeId(long nodeId) {
  856. model.setNodeId(nodeId);
  857. }
  858. /**
  859. * Sets the page ID of this wiki page.
  860. *
  861. * @param pageId the page ID of this wiki page
  862. */
  863. @Override
  864. public void setPageId(long pageId) {
  865. model.setPageId(pageId);
  866. }
  867. /**
  868. * Sets the parent container model ID of this wiki page.
  869. *
  870. * @param parentContainerModelId the parent container model ID of this wiki page
  871. */
  872. @Override
  873. public void setParentContainerModelId(long parentContainerModelId) {
  874. model.setParentContainerModelId(parentContainerModelId);
  875. }
  876. /**
  877. * Sets the parent title of this wiki page.
  878. *
  879. * @param parentTitle the parent title of this wiki page
  880. */
  881. @Override
  882. public void setParentTitle(String parentTitle) {
  883. model.setParentTitle(parentTitle);
  884. }
  885. /**
  886. * Sets the primary key of this wiki page.
  887. *
  888. * @param primaryKey the primary key of this wiki page
  889. */
  890. @Override
  891. public void setPrimaryKey(long primaryKey) {
  892. model.setPrimaryKey(primaryKey);
  893. }
  894. /**
  895. * Sets the redirect title of this wiki page.
  896. *
  897. * @param redirectTitle the redirect title of this wiki page
  898. */
  899. @Override
  900. public void setRedirectTitle(String redirectTitle) {
  901. model.setRedirectTitle(redirectTitle);
  902. }
  903. /**
  904. * Sets the resource prim key of this wiki page.
  905. *
  906. * @param resourcePrimKey the resource prim key of this wiki page
  907. */
  908. @Override
  909. public void setResourcePrimKey(long resourcePrimKey) {
  910. model.setResourcePrimKey(resourcePrimKey);
  911. }
  912. /**
  913. * Sets the status of this wiki page.
  914. *
  915. * @param status the status of this wiki page
  916. */
  917. @Override
  918. public void setStatus(int status) {
  919. model.setStatus(status);
  920. }
  921. /**
  922. * Sets the status by user ID of this wiki page.
  923. *
  924. * @param statusByUserId the status by user ID of this wiki page
  925. */
  926. @Override
  927. public void setStatusByUserId(long statusByUserId) {
  928. model.setStatusByUserId(statusByUserId);
  929. }
  930. /**
  931. * Sets the status by user name of this wiki page.
  932. *
  933. * @param statusByUserName the status by user name of this wiki page
  934. */
  935. @Override
  936. public void setStatusByUserName(String statusByUserName) {
  937. model.setStatusByUserName(statusByUserName);
  938. }
  939. /**
  940. * Sets the status by user uuid of this wiki page.
  941. *
  942. * @param statusByUserUuid the status by user uuid of this wiki page
  943. */
  944. @Override
  945. public void setStatusByUserUuid(String statusByUserUuid) {
  946. model.setStatusByUserUuid(statusByUserUuid);
  947. }
  948. /**
  949. * Sets the status date of this wiki page.
  950. *
  951. * @param statusDate the status date of this wiki page
  952. */
  953. @Override
  954. public void setStatusDate(Date statusDate) {
  955. model.setStatusDate(statusDate);
  956. }
  957. /**
  958. * Sets the summary of this wiki page.
  959. *
  960. * @param summary the summary of this wiki page
  961. */
  962. @Override
  963. public void setSummary(String summary) {
  964. model.setSummary(summary);
  965. }
  966. /**
  967. * Sets the title of this wiki page.
  968. *
  969. * @param title the title of this wiki page
  970. */
  971. @Override
  972. public void setTitle(String title) {
  973. model.setTitle(title);
  974. }
  975. /**
  976. * Sets the user ID of this wiki page.
  977. *
  978. * @param userId the user ID of this wiki page
  979. */
  980. @Override
  981. public void setUserId(long userId) {
  982. model.setUserId(userId);
  983. }
  984. /**
  985. * Sets the user name of this wiki page.
  986. *
  987. * @param userName the user name of this wiki page
  988. */
  989. @Override
  990. public void setUserName(String userName) {
  991. model.setUserName(userName);
  992. }
  993. /**
  994. * Sets the user uuid of this wiki page.
  995. *
  996. * @param userUuid the user uuid of this wiki page
  997. */
  998. @Override
  999. public void setUserUuid(String userUuid) {
  1000. model.setUserUuid(userUuid);
  1001. }
  1002. /**
  1003. * Sets the uuid of this wiki page.
  1004. *
  1005. * @param uuid the uuid of this wiki page
  1006. */
  1007. @Override
  1008. public void setUuid(String uuid) {
  1009. model.setUuid(uuid);
  1010. }
  1011. /**
  1012. * Sets the version of this wiki page.
  1013. *
  1014. * @param version the version of this wiki page
  1015. */
  1016. @Override
  1017. public void setVersion(double version) {
  1018. model.setVersion(version);
  1019. }
  1020. @Override
  1021. public StagedModelType getStagedModelType() {
  1022. return model.getStagedModelType();
  1023. }
  1024. @Override
  1025. protected WikiPageWrapper wrap(WikiPage wikiPage) {
  1026. return new WikiPageWrapper(wikiPage);
  1027. }
  1028. }