diff options
author | Morgan E. Cook | 2017-08-07 21:35:51 +0000 |
---|---|---|
committer | Morgan E. Cook | 2017-08-07 22:05:02 +0000 |
commit | dc8cb34328ae6b8dd7cb7ae8f506b4c022bf0953 (patch) | |
tree | 24c600dfb4b81887c6acb2458e3882737c8d188b /plugins/org.eclipse.osee.define.report.api/src | |
parent | 24acb1951e9a19c419f489008d9ee8d92c62e401 (diff) | |
download | org.eclipse.osee-0.25.0.v201708081347-NR.tar.gz org.eclipse.osee-0.25.0.v201708081347-NR.tar.xz org.eclipse.osee-0.25.0.v201708081347-NR.zip |
bug: Fix wordML link handler0.25.0.v201708081347-NR
Signed-off-by: Morgan E. Cook <morgan.e.cook@boeing.com>
Diffstat (limited to 'plugins/org.eclipse.osee.define.report.api/src')
-rw-r--r-- | plugins/org.eclipse.osee.define.report.api/src/org/eclipse/osee/define/report/api/WordTemplateContentData.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.define.report.api/src/org/eclipse/osee/define/report/api/WordTemplateContentData.java b/plugins/org.eclipse.osee.define.report.api/src/org/eclipse/osee/define/report/api/WordTemplateContentData.java index 9621e9ab6d3..85b292e8ae4 100644 --- a/plugins/org.eclipse.osee.define.report.api/src/org/eclipse/osee/define/report/api/WordTemplateContentData.java +++ b/plugins/org.eclipse.osee.define.report.api/src/org/eclipse/osee/define/report/api/WordTemplateContentData.java @@ -14,6 +14,7 @@ package org.eclipse.osee.define.report.api; import org.eclipse.osee.framework.core.data.ArtifactId; import org.eclipse.osee.framework.core.data.BranchId; import org.eclipse.osee.framework.core.data.TransactionId; +import org.eclipse.osee.framework.core.enums.PresentationType; /** * @author Morgan E. Cook @@ -29,6 +30,8 @@ public class WordTemplateContentData { private String sessionId; private String oseeLink; private ArtifactId viewId; + private PresentationType presentationType; + private String permanentLinkUrl; public Long getArtId() { return artId; @@ -101,4 +104,20 @@ public class WordTemplateContentData { public void setViewId(ArtifactId viewId) { this.viewId = viewId; } + + public PresentationType getPresentationType() { + return presentationType; + } + + public void setPresentationType(PresentationType presentationType) { + this.presentationType = presentationType; + } + + public String getPermanentLinkUrl() { + return permanentLinkUrl; + } + + public void setPermanentLinkUrl(String permanentLinkUrl) { + this.permanentLinkUrl = permanentLinkUrl; + } } |