Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.define.report.api')
-rw-r--r--plugins/org.eclipse.osee.define.report.api/META-INF/MANIFEST.MF1
-rw-r--r--plugins/org.eclipse.osee.define.report.api/src/org/eclipse/osee/define/report/api/WordTemplateContentData.java19
2 files changed, 20 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.define.report.api/META-INF/MANIFEST.MF b/plugins/org.eclipse.osee.define.report.api/META-INF/MANIFEST.MF
index a59c7190e58..ae56329c4bb 100644
--- a/plugins/org.eclipse.osee.define.report.api/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.osee.define.report.api/META-INF/MANIFEST.MF
@@ -9,6 +9,7 @@ Export-Package: org.eclipse.osee.define.report.api
Import-Package: javax.ws.rs,
javax.ws.rs.core,
org.eclipse.osee.framework.core.data,
+ org.eclipse.osee.framework.core.enums,
org.eclipse.osee.framework.jdk.core.type,
org.eclipse.osee.framework.jdk.core.util,
org.json
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;
+ }
}

Back to the top