/modules/dxp/apps/portal-workflow/portal-workflow-metrics-api/src/main/java/com/liferay/portal/workflow/metrics/model/WorkflowMetricsSLADefinitionVersionWrapper.java

http://github.com/liferay/liferay-portal · Java · 918 lines · 439 code · 132 blank · 347 comment · 50 complexity · 6d16bee73c924c604a76ee4bed815f5a MD5 · raw file

  1. /**
  2. * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
  3. *
  4. * The contents of this file are subject to the terms of the Liferay Enterprise
  5. * Subscription License ("License"). You may not use this file except in
  6. * compliance with the License. You can obtain a copy of the License by
  7. * contacting Liferay, Inc. See the License for the specific language governing
  8. * permissions and limitations under the License, including but not limited to
  9. * distribution rights of the Software.
  10. *
  11. *
  12. *
  13. */
  14. package com.liferay.portal.workflow.metrics.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 WorkflowMetricsSLADefinitionVersion}.
  24. * </p>
  25. *
  26. * @author Brian Wing Shun Chan
  27. * @see WorkflowMetricsSLADefinitionVersion
  28. * @generated
  29. */
  30. public class WorkflowMetricsSLADefinitionVersionWrapper
  31. extends BaseModelWrapper<WorkflowMetricsSLADefinitionVersion>
  32. implements ModelWrapper<WorkflowMetricsSLADefinitionVersion>,
  33. WorkflowMetricsSLADefinitionVersion {
  34. public WorkflowMetricsSLADefinitionVersionWrapper(
  35. WorkflowMetricsSLADefinitionVersion
  36. workflowMetricsSLADefinitionVersion) {
  37. super(workflowMetricsSLADefinitionVersion);
  38. }
  39. @Override
  40. public Map<String, Object> getModelAttributes() {
  41. Map<String, Object> attributes = new HashMap<String, Object>();
  42. attributes.put("mvccVersion", getMvccVersion());
  43. attributes.put("uuid", getUuid());
  44. attributes.put(
  45. "workflowMetricsSLADefinitionVersionId",
  46. getWorkflowMetricsSLADefinitionVersionId());
  47. attributes.put("groupId", getGroupId());
  48. attributes.put("companyId", getCompanyId());
  49. attributes.put("userId", getUserId());
  50. attributes.put("userName", getUserName());
  51. attributes.put("createDate", getCreateDate());
  52. attributes.put("modifiedDate", getModifiedDate());
  53. attributes.put("active", isActive());
  54. attributes.put("calendarKey", getCalendarKey());
  55. attributes.put("description", getDescription());
  56. attributes.put("duration", getDuration());
  57. attributes.put("name", getName());
  58. attributes.put("pauseNodeKeys", getPauseNodeKeys());
  59. attributes.put("processId", getProcessId());
  60. attributes.put("processVersion", getProcessVersion());
  61. attributes.put("startNodeKeys", getStartNodeKeys());
  62. attributes.put("stopNodeKeys", getStopNodeKeys());
  63. attributes.put("version", getVersion());
  64. attributes.put(
  65. "workflowMetricsSLADefinitionId",
  66. getWorkflowMetricsSLADefinitionId());
  67. attributes.put("status", getStatus());
  68. attributes.put("statusByUserId", getStatusByUserId());
  69. attributes.put("statusByUserName", getStatusByUserName());
  70. attributes.put("statusDate", getStatusDate());
  71. return attributes;
  72. }
  73. @Override
  74. public void setModelAttributes(Map<String, Object> attributes) {
  75. Long mvccVersion = (Long)attributes.get("mvccVersion");
  76. if (mvccVersion != null) {
  77. setMvccVersion(mvccVersion);
  78. }
  79. String uuid = (String)attributes.get("uuid");
  80. if (uuid != null) {
  81. setUuid(uuid);
  82. }
  83. Long workflowMetricsSLADefinitionVersionId = (Long)attributes.get(
  84. "workflowMetricsSLADefinitionVersionId");
  85. if (workflowMetricsSLADefinitionVersionId != null) {
  86. setWorkflowMetricsSLADefinitionVersionId(
  87. workflowMetricsSLADefinitionVersionId);
  88. }
  89. Long groupId = (Long)attributes.get("groupId");
  90. if (groupId != null) {
  91. setGroupId(groupId);
  92. }
  93. Long companyId = (Long)attributes.get("companyId");
  94. if (companyId != null) {
  95. setCompanyId(companyId);
  96. }
  97. Long userId = (Long)attributes.get("userId");
  98. if (userId != null) {
  99. setUserId(userId);
  100. }
  101. String userName = (String)attributes.get("userName");
  102. if (userName != null) {
  103. setUserName(userName);
  104. }
  105. Date createDate = (Date)attributes.get("createDate");
  106. if (createDate != null) {
  107. setCreateDate(createDate);
  108. }
  109. Date modifiedDate = (Date)attributes.get("modifiedDate");
  110. if (modifiedDate != null) {
  111. setModifiedDate(modifiedDate);
  112. }
  113. Boolean active = (Boolean)attributes.get("active");
  114. if (active != null) {
  115. setActive(active);
  116. }
  117. String calendarKey = (String)attributes.get("calendarKey");
  118. if (calendarKey != null) {
  119. setCalendarKey(calendarKey);
  120. }
  121. String description = (String)attributes.get("description");
  122. if (description != null) {
  123. setDescription(description);
  124. }
  125. Long duration = (Long)attributes.get("duration");
  126. if (duration != null) {
  127. setDuration(duration);
  128. }
  129. String name = (String)attributes.get("name");
  130. if (name != null) {
  131. setName(name);
  132. }
  133. String pauseNodeKeys = (String)attributes.get("pauseNodeKeys");
  134. if (pauseNodeKeys != null) {
  135. setPauseNodeKeys(pauseNodeKeys);
  136. }
  137. Long processId = (Long)attributes.get("processId");
  138. if (processId != null) {
  139. setProcessId(processId);
  140. }
  141. String processVersion = (String)attributes.get("processVersion");
  142. if (processVersion != null) {
  143. setProcessVersion(processVersion);
  144. }
  145. String startNodeKeys = (String)attributes.get("startNodeKeys");
  146. if (startNodeKeys != null) {
  147. setStartNodeKeys(startNodeKeys);
  148. }
  149. String stopNodeKeys = (String)attributes.get("stopNodeKeys");
  150. if (stopNodeKeys != null) {
  151. setStopNodeKeys(stopNodeKeys);
  152. }
  153. String version = (String)attributes.get("version");
  154. if (version != null) {
  155. setVersion(version);
  156. }
  157. Long workflowMetricsSLADefinitionId = (Long)attributes.get(
  158. "workflowMetricsSLADefinitionId");
  159. if (workflowMetricsSLADefinitionId != null) {
  160. setWorkflowMetricsSLADefinitionId(workflowMetricsSLADefinitionId);
  161. }
  162. Integer status = (Integer)attributes.get("status");
  163. if (status != null) {
  164. setStatus(status);
  165. }
  166. Long statusByUserId = (Long)attributes.get("statusByUserId");
  167. if (statusByUserId != null) {
  168. setStatusByUserId(statusByUserId);
  169. }
  170. String statusByUserName = (String)attributes.get("statusByUserName");
  171. if (statusByUserName != null) {
  172. setStatusByUserName(statusByUserName);
  173. }
  174. Date statusDate = (Date)attributes.get("statusDate");
  175. if (statusDate != null) {
  176. setStatusDate(statusDate);
  177. }
  178. }
  179. @Override
  180. public WorkflowMetricsSLADefinitionVersion cloneWithOriginalValues() {
  181. return wrap(model.cloneWithOriginalValues());
  182. }
  183. /**
  184. * Returns the active of this workflow metrics sla definition version.
  185. *
  186. * @return the active of this workflow metrics sla definition version
  187. */
  188. @Override
  189. public boolean getActive() {
  190. return model.getActive();
  191. }
  192. /**
  193. * Returns the calendar key of this workflow metrics sla definition version.
  194. *
  195. * @return the calendar key of this workflow metrics sla definition version
  196. */
  197. @Override
  198. public String getCalendarKey() {
  199. return model.getCalendarKey();
  200. }
  201. /**
  202. * Returns the company ID of this workflow metrics sla definition version.
  203. *
  204. * @return the company ID of this workflow metrics sla definition version
  205. */
  206. @Override
  207. public long getCompanyId() {
  208. return model.getCompanyId();
  209. }
  210. /**
  211. * Returns the create date of this workflow metrics sla definition version.
  212. *
  213. * @return the create date of this workflow metrics sla definition version
  214. */
  215. @Override
  216. public Date getCreateDate() {
  217. return model.getCreateDate();
  218. }
  219. /**
  220. * Returns the description of this workflow metrics sla definition version.
  221. *
  222. * @return the description of this workflow metrics sla definition version
  223. */
  224. @Override
  225. public String getDescription() {
  226. return model.getDescription();
  227. }
  228. /**
  229. * Returns the duration of this workflow metrics sla definition version.
  230. *
  231. * @return the duration of this workflow metrics sla definition version
  232. */
  233. @Override
  234. public long getDuration() {
  235. return model.getDuration();
  236. }
  237. /**
  238. * Returns the group ID of this workflow metrics sla definition version.
  239. *
  240. * @return the group ID of this workflow metrics sla definition version
  241. */
  242. @Override
  243. public long getGroupId() {
  244. return model.getGroupId();
  245. }
  246. /**
  247. * Returns the modified date of this workflow metrics sla definition version.
  248. *
  249. * @return the modified date of this workflow metrics sla definition version
  250. */
  251. @Override
  252. public Date getModifiedDate() {
  253. return model.getModifiedDate();
  254. }
  255. /**
  256. * Returns the mvcc version of this workflow metrics sla definition version.
  257. *
  258. * @return the mvcc version of this workflow metrics sla definition version
  259. */
  260. @Override
  261. public long getMvccVersion() {
  262. return model.getMvccVersion();
  263. }
  264. /**
  265. * Returns the name of this workflow metrics sla definition version.
  266. *
  267. * @return the name of this workflow metrics sla definition version
  268. */
  269. @Override
  270. public String getName() {
  271. return model.getName();
  272. }
  273. /**
  274. * Returns the pause node keys of this workflow metrics sla definition version.
  275. *
  276. * @return the pause node keys of this workflow metrics sla definition version
  277. */
  278. @Override
  279. public String getPauseNodeKeys() {
  280. return model.getPauseNodeKeys();
  281. }
  282. /**
  283. * Returns the primary key of this workflow metrics sla definition version.
  284. *
  285. * @return the primary key of this workflow metrics sla definition version
  286. */
  287. @Override
  288. public long getPrimaryKey() {
  289. return model.getPrimaryKey();
  290. }
  291. /**
  292. * Returns the process ID of this workflow metrics sla definition version.
  293. *
  294. * @return the process ID of this workflow metrics sla definition version
  295. */
  296. @Override
  297. public long getProcessId() {
  298. return model.getProcessId();
  299. }
  300. /**
  301. * Returns the process version of this workflow metrics sla definition version.
  302. *
  303. * @return the process version of this workflow metrics sla definition version
  304. */
  305. @Override
  306. public String getProcessVersion() {
  307. return model.getProcessVersion();
  308. }
  309. /**
  310. * Returns the start node keys of this workflow metrics sla definition version.
  311. *
  312. * @return the start node keys of this workflow metrics sla definition version
  313. */
  314. @Override
  315. public String getStartNodeKeys() {
  316. return model.getStartNodeKeys();
  317. }
  318. /**
  319. * Returns the status of this workflow metrics sla definition version.
  320. *
  321. * @return the status of this workflow metrics sla definition version
  322. */
  323. @Override
  324. public int getStatus() {
  325. return model.getStatus();
  326. }
  327. /**
  328. * Returns the status by user ID of this workflow metrics sla definition version.
  329. *
  330. * @return the status by user ID of this workflow metrics sla definition version
  331. */
  332. @Override
  333. public long getStatusByUserId() {
  334. return model.getStatusByUserId();
  335. }
  336. /**
  337. * Returns the status by user name of this workflow metrics sla definition version.
  338. *
  339. * @return the status by user name of this workflow metrics sla definition version
  340. */
  341. @Override
  342. public String getStatusByUserName() {
  343. return model.getStatusByUserName();
  344. }
  345. /**
  346. * Returns the status by user uuid of this workflow metrics sla definition version.
  347. *
  348. * @return the status by user uuid of this workflow metrics sla definition version
  349. */
  350. @Override
  351. public String getStatusByUserUuid() {
  352. return model.getStatusByUserUuid();
  353. }
  354. /**
  355. * Returns the status date of this workflow metrics sla definition version.
  356. *
  357. * @return the status date of this workflow metrics sla definition version
  358. */
  359. @Override
  360. public Date getStatusDate() {
  361. return model.getStatusDate();
  362. }
  363. /**
  364. * Returns the stop node keys of this workflow metrics sla definition version.
  365. *
  366. * @return the stop node keys of this workflow metrics sla definition version
  367. */
  368. @Override
  369. public String getStopNodeKeys() {
  370. return model.getStopNodeKeys();
  371. }
  372. /**
  373. * Returns the user ID of this workflow metrics sla definition version.
  374. *
  375. * @return the user ID of this workflow metrics sla definition version
  376. */
  377. @Override
  378. public long getUserId() {
  379. return model.getUserId();
  380. }
  381. /**
  382. * Returns the user name of this workflow metrics sla definition version.
  383. *
  384. * @return the user name of this workflow metrics sla definition version
  385. */
  386. @Override
  387. public String getUserName() {
  388. return model.getUserName();
  389. }
  390. /**
  391. * Returns the user uuid of this workflow metrics sla definition version.
  392. *
  393. * @return the user uuid of this workflow metrics sla definition version
  394. */
  395. @Override
  396. public String getUserUuid() {
  397. return model.getUserUuid();
  398. }
  399. /**
  400. * Returns the uuid of this workflow metrics sla definition version.
  401. *
  402. * @return the uuid of this workflow metrics sla definition version
  403. */
  404. @Override
  405. public String getUuid() {
  406. return model.getUuid();
  407. }
  408. /**
  409. * Returns the version of this workflow metrics sla definition version.
  410. *
  411. * @return the version of this workflow metrics sla definition version
  412. */
  413. @Override
  414. public String getVersion() {
  415. return model.getVersion();
  416. }
  417. /**
  418. * Returns the workflow metrics sla definition ID of this workflow metrics sla definition version.
  419. *
  420. * @return the workflow metrics sla definition ID of this workflow metrics sla definition version
  421. */
  422. @Override
  423. public long getWorkflowMetricsSLADefinitionId() {
  424. return model.getWorkflowMetricsSLADefinitionId();
  425. }
  426. /**
  427. * Returns the workflow metrics sla definition version ID of this workflow metrics sla definition version.
  428. *
  429. * @return the workflow metrics sla definition version ID of this workflow metrics sla definition version
  430. */
  431. @Override
  432. public long getWorkflowMetricsSLADefinitionVersionId() {
  433. return model.getWorkflowMetricsSLADefinitionVersionId();
  434. }
  435. /**
  436. * Returns <code>true</code> if this workflow metrics sla definition version is active.
  437. *
  438. * @return <code>true</code> if this workflow metrics sla definition version is active; <code>false</code> otherwise
  439. */
  440. @Override
  441. public boolean isActive() {
  442. return model.isActive();
  443. }
  444. /**
  445. * Returns <code>true</code> if this workflow metrics sla definition version is approved.
  446. *
  447. * @return <code>true</code> if this workflow metrics sla definition version is approved; <code>false</code> otherwise
  448. */
  449. @Override
  450. public boolean isApproved() {
  451. return model.isApproved();
  452. }
  453. /**
  454. * Returns <code>true</code> if this workflow metrics sla definition version is denied.
  455. *
  456. * @return <code>true</code> if this workflow metrics sla definition version is denied; <code>false</code> otherwise
  457. */
  458. @Override
  459. public boolean isDenied() {
  460. return model.isDenied();
  461. }
  462. /**
  463. * Returns <code>true</code> if this workflow metrics sla definition version is a draft.
  464. *
  465. * @return <code>true</code> if this workflow metrics sla definition version is a draft; <code>false</code> otherwise
  466. */
  467. @Override
  468. public boolean isDraft() {
  469. return model.isDraft();
  470. }
  471. /**
  472. * Returns <code>true</code> if this workflow metrics sla definition version is expired.
  473. *
  474. * @return <code>true</code> if this workflow metrics sla definition version is expired; <code>false</code> otherwise
  475. */
  476. @Override
  477. public boolean isExpired() {
  478. return model.isExpired();
  479. }
  480. /**
  481. * Returns <code>true</code> if this workflow metrics sla definition version is inactive.
  482. *
  483. * @return <code>true</code> if this workflow metrics sla definition version is inactive; <code>false</code> otherwise
  484. */
  485. @Override
  486. public boolean isInactive() {
  487. return model.isInactive();
  488. }
  489. /**
  490. * Returns <code>true</code> if this workflow metrics sla definition version is incomplete.
  491. *
  492. * @return <code>true</code> if this workflow metrics sla definition version is incomplete; <code>false</code> otherwise
  493. */
  494. @Override
  495. public boolean isIncomplete() {
  496. return model.isIncomplete();
  497. }
  498. /**
  499. * Returns <code>true</code> if this workflow metrics sla definition version is pending.
  500. *
  501. * @return <code>true</code> if this workflow metrics sla definition version is pending; <code>false</code> otherwise
  502. */
  503. @Override
  504. public boolean isPending() {
  505. return model.isPending();
  506. }
  507. /**
  508. * Returns <code>true</code> if this workflow metrics sla definition version is scheduled.
  509. *
  510. * @return <code>true</code> if this workflow metrics sla definition version is scheduled; <code>false</code> otherwise
  511. */
  512. @Override
  513. public boolean isScheduled() {
  514. return model.isScheduled();
  515. }
  516. @Override
  517. public void persist() {
  518. model.persist();
  519. }
  520. /**
  521. * Sets whether this workflow metrics sla definition version is active.
  522. *
  523. * @param active the active of this workflow metrics sla definition version
  524. */
  525. @Override
  526. public void setActive(boolean active) {
  527. model.setActive(active);
  528. }
  529. /**
  530. * Sets the calendar key of this workflow metrics sla definition version.
  531. *
  532. * @param calendarKey the calendar key of this workflow metrics sla definition version
  533. */
  534. @Override
  535. public void setCalendarKey(String calendarKey) {
  536. model.setCalendarKey(calendarKey);
  537. }
  538. /**
  539. * Sets the company ID of this workflow metrics sla definition version.
  540. *
  541. * @param companyId the company ID of this workflow metrics sla definition version
  542. */
  543. @Override
  544. public void setCompanyId(long companyId) {
  545. model.setCompanyId(companyId);
  546. }
  547. /**
  548. * Sets the create date of this workflow metrics sla definition version.
  549. *
  550. * @param createDate the create date of this workflow metrics sla definition version
  551. */
  552. @Override
  553. public void setCreateDate(Date createDate) {
  554. model.setCreateDate(createDate);
  555. }
  556. /**
  557. * Sets the description of this workflow metrics sla definition version.
  558. *
  559. * @param description the description of this workflow metrics sla definition version
  560. */
  561. @Override
  562. public void setDescription(String description) {
  563. model.setDescription(description);
  564. }
  565. /**
  566. * Sets the duration of this workflow metrics sla definition version.
  567. *
  568. * @param duration the duration of this workflow metrics sla definition version
  569. */
  570. @Override
  571. public void setDuration(long duration) {
  572. model.setDuration(duration);
  573. }
  574. /**
  575. * Sets the group ID of this workflow metrics sla definition version.
  576. *
  577. * @param groupId the group ID of this workflow metrics sla definition version
  578. */
  579. @Override
  580. public void setGroupId(long groupId) {
  581. model.setGroupId(groupId);
  582. }
  583. /**
  584. * Sets the modified date of this workflow metrics sla definition version.
  585. *
  586. * @param modifiedDate the modified date of this workflow metrics sla definition version
  587. */
  588. @Override
  589. public void setModifiedDate(Date modifiedDate) {
  590. model.setModifiedDate(modifiedDate);
  591. }
  592. /**
  593. * Sets the mvcc version of this workflow metrics sla definition version.
  594. *
  595. * @param mvccVersion the mvcc version of this workflow metrics sla definition version
  596. */
  597. @Override
  598. public void setMvccVersion(long mvccVersion) {
  599. model.setMvccVersion(mvccVersion);
  600. }
  601. /**
  602. * Sets the name of this workflow metrics sla definition version.
  603. *
  604. * @param name the name of this workflow metrics sla definition version
  605. */
  606. @Override
  607. public void setName(String name) {
  608. model.setName(name);
  609. }
  610. /**
  611. * Sets the pause node keys of this workflow metrics sla definition version.
  612. *
  613. * @param pauseNodeKeys the pause node keys of this workflow metrics sla definition version
  614. */
  615. @Override
  616. public void setPauseNodeKeys(String pauseNodeKeys) {
  617. model.setPauseNodeKeys(pauseNodeKeys);
  618. }
  619. /**
  620. * Sets the primary key of this workflow metrics sla definition version.
  621. *
  622. * @param primaryKey the primary key of this workflow metrics sla definition version
  623. */
  624. @Override
  625. public void setPrimaryKey(long primaryKey) {
  626. model.setPrimaryKey(primaryKey);
  627. }
  628. /**
  629. * Sets the process ID of this workflow metrics sla definition version.
  630. *
  631. * @param processId the process ID of this workflow metrics sla definition version
  632. */
  633. @Override
  634. public void setProcessId(long processId) {
  635. model.setProcessId(processId);
  636. }
  637. /**
  638. * Sets the process version of this workflow metrics sla definition version.
  639. *
  640. * @param processVersion the process version of this workflow metrics sla definition version
  641. */
  642. @Override
  643. public void setProcessVersion(String processVersion) {
  644. model.setProcessVersion(processVersion);
  645. }
  646. /**
  647. * Sets the start node keys of this workflow metrics sla definition version.
  648. *
  649. * @param startNodeKeys the start node keys of this workflow metrics sla definition version
  650. */
  651. @Override
  652. public void setStartNodeKeys(String startNodeKeys) {
  653. model.setStartNodeKeys(startNodeKeys);
  654. }
  655. /**
  656. * Sets the status of this workflow metrics sla definition version.
  657. *
  658. * @param status the status of this workflow metrics sla definition version
  659. */
  660. @Override
  661. public void setStatus(int status) {
  662. model.setStatus(status);
  663. }
  664. /**
  665. * Sets the status by user ID of this workflow metrics sla definition version.
  666. *
  667. * @param statusByUserId the status by user ID of this workflow metrics sla definition version
  668. */
  669. @Override
  670. public void setStatusByUserId(long statusByUserId) {
  671. model.setStatusByUserId(statusByUserId);
  672. }
  673. /**
  674. * Sets the status by user name of this workflow metrics sla definition version.
  675. *
  676. * @param statusByUserName the status by user name of this workflow metrics sla definition version
  677. */
  678. @Override
  679. public void setStatusByUserName(String statusByUserName) {
  680. model.setStatusByUserName(statusByUserName);
  681. }
  682. /**
  683. * Sets the status by user uuid of this workflow metrics sla definition version.
  684. *
  685. * @param statusByUserUuid the status by user uuid of this workflow metrics sla definition version
  686. */
  687. @Override
  688. public void setStatusByUserUuid(String statusByUserUuid) {
  689. model.setStatusByUserUuid(statusByUserUuid);
  690. }
  691. /**
  692. * Sets the status date of this workflow metrics sla definition version.
  693. *
  694. * @param statusDate the status date of this workflow metrics sla definition version
  695. */
  696. @Override
  697. public void setStatusDate(Date statusDate) {
  698. model.setStatusDate(statusDate);
  699. }
  700. /**
  701. * Sets the stop node keys of this workflow metrics sla definition version.
  702. *
  703. * @param stopNodeKeys the stop node keys of this workflow metrics sla definition version
  704. */
  705. @Override
  706. public void setStopNodeKeys(String stopNodeKeys) {
  707. model.setStopNodeKeys(stopNodeKeys);
  708. }
  709. /**
  710. * Sets the user ID of this workflow metrics sla definition version.
  711. *
  712. * @param userId the user ID of this workflow metrics sla definition version
  713. */
  714. @Override
  715. public void setUserId(long userId) {
  716. model.setUserId(userId);
  717. }
  718. /**
  719. * Sets the user name of this workflow metrics sla definition version.
  720. *
  721. * @param userName the user name of this workflow metrics sla definition version
  722. */
  723. @Override
  724. public void setUserName(String userName) {
  725. model.setUserName(userName);
  726. }
  727. /**
  728. * Sets the user uuid of this workflow metrics sla definition version.
  729. *
  730. * @param userUuid the user uuid of this workflow metrics sla definition version
  731. */
  732. @Override
  733. public void setUserUuid(String userUuid) {
  734. model.setUserUuid(userUuid);
  735. }
  736. /**
  737. * Sets the uuid of this workflow metrics sla definition version.
  738. *
  739. * @param uuid the uuid of this workflow metrics sla definition version
  740. */
  741. @Override
  742. public void setUuid(String uuid) {
  743. model.setUuid(uuid);
  744. }
  745. /**
  746. * Sets the version of this workflow metrics sla definition version.
  747. *
  748. * @param version the version of this workflow metrics sla definition version
  749. */
  750. @Override
  751. public void setVersion(String version) {
  752. model.setVersion(version);
  753. }
  754. /**
  755. * Sets the workflow metrics sla definition ID of this workflow metrics sla definition version.
  756. *
  757. * @param workflowMetricsSLADefinitionId the workflow metrics sla definition ID of this workflow metrics sla definition version
  758. */
  759. @Override
  760. public void setWorkflowMetricsSLADefinitionId(
  761. long workflowMetricsSLADefinitionId) {
  762. model.setWorkflowMetricsSLADefinitionId(workflowMetricsSLADefinitionId);
  763. }
  764. /**
  765. * Sets the workflow metrics sla definition version ID of this workflow metrics sla definition version.
  766. *
  767. * @param workflowMetricsSLADefinitionVersionId the workflow metrics sla definition version ID of this workflow metrics sla definition version
  768. */
  769. @Override
  770. public void setWorkflowMetricsSLADefinitionVersionId(
  771. long workflowMetricsSLADefinitionVersionId) {
  772. model.setWorkflowMetricsSLADefinitionVersionId(
  773. workflowMetricsSLADefinitionVersionId);
  774. }
  775. @Override
  776. public StagedModelType getStagedModelType() {
  777. return model.getStagedModelType();
  778. }
  779. @Override
  780. protected WorkflowMetricsSLADefinitionVersionWrapper wrap(
  781. WorkflowMetricsSLADefinitionVersion
  782. workflowMetricsSLADefinitionVersion) {
  783. return new WorkflowMetricsSLADefinitionVersionWrapper(
  784. workflowMetricsSLADefinitionVersion);
  785. }
  786. }