Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
12c96857
Commit
12c96857
authored
15 years ago
by
buczekp
Browse files
Options
Downloads
Patches
Plain Diff
[LMS-1264] added information about external sample name for tracked data set
SVN: 13525
parent
5b396e7e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
deep_sequencing_unit/source/java/ch/ethz/bsse/cisd/dsu/tracking/email/EntityTrackingEmailGenerator.java
+22
-0
22 additions, 0 deletions
...cisd/dsu/tracking/email/EntityTrackingEmailGenerator.java
with
22 additions
and
0 deletions
deep_sequencing_unit/source/java/ch/ethz/bsse/cisd/dsu/tracking/email/EntityTrackingEmailGenerator.java
+
22
−
0
View file @
12c96857
...
...
@@ -134,6 +134,8 @@ public class EntityTrackingEmailGenerator implements IEntityTrackingEmailGenerat
private
static
final
String
SUBSECTION_SEPARATOR_LINE
=
createSeparatorLine
(
SUBSECTION_SEPARATOR_CHAR
);
private
final
static
String
EXTERNAL_SAMPLE_NAME_PROPERTY_CODE
=
"EXTERNAL_SAMPLE_NAME"
;
private
static
final
String
PERMLINK_LABEL
=
"See details in openBIS"
;
private
static
final
String
GENARATED_CONTENT_TARGET
=
"{generated-content}"
;
...
...
@@ -242,10 +244,30 @@ public class EntityTrackingEmailGenerator implements IEntityTrackingEmailGenerat
appendAttribute
(
sb
,
"Sequencing sample"
,
String
.
format
(
"'%s'\n %s"
,
sequencingSample
.
getCode
(),
sequencingSample
.
getPermlink
()));
// information about external sample name
appendAttribute
(
sb
,
"External sample name"
,
tryGetSamplePropertyValue
(
sequencingSample
,
EXTERNAL_SAMPLE_NAME_PROPERTY_CODE
));
// data set properties
appendProperties
(
sb
,
dataSet
.
getProperties
());
}
private
static
String
tryGetSamplePropertyValue
(
Sample
sequencingSample
,
String
externalSampleNamePropertyCode
)
{
String
result
=
null
;
for
(
IEntityProperty
property
:
sequencingSample
.
getProperties
())
{
final
String
propertyCode
=
property
.
getPropertyType
().
getCode
();
if
(
propertyCode
.
equals
(
EXTERNAL_SAMPLE_NAME_PROPERTY_CODE
))
{
result
=
StringEscapeUtils
.
unescapeHtml
(
property
.
getValue
());
break
;
}
}
return
result
;
}
// NOTE: Information about properties assigned to entity type are not loaded.
// If it would be available we could append information about all properties assigned
// to entity type, not only about properties filled for specific entity. Additionally
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment