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
74cf9f2f
Commit
74cf9f2f
authored
11 years ago
by
pkupczyk
Browse files
Options
Downloads
Patches
Plain Diff
SP-952 / BIS-548 : Novartis: API Access to attachements in dropboxes - rename methods
SVN: 30012
parent
20317993
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
screening/source/java/ch/systemsx/cisd/openbis/dss/etl/jython/v2/ImagingDataSetRegistrationTransactionV2Delegate.java
+12
-12
12 additions, 12 deletions
...n/v2/ImagingDataSetRegistrationTransactionV2Delegate.java
with
12 additions
and
12 deletions
screening/source/java/ch/systemsx/cisd/openbis/dss/etl/jython/v2/ImagingDataSetRegistrationTransactionV2Delegate.java
+
12
−
12
View file @
74cf9f2f
...
...
@@ -424,42 +424,42 @@ public class ImagingDataSetRegistrationTransactionV2Delegate implements
}
@Override
public
InputStream
get
Project
AttachmentContent
(
IProjectImmutable
project
,
String
fileName
,
Integer
versionOrNull
)
public
InputStream
getAttachmentContent
(
IProjectImmutable
project
,
String
fileName
,
Integer
versionOrNull
)
{
return
transaction
.
get
Project
AttachmentContent
(
project
,
fileName
,
versionOrNull
);
return
transaction
.
getAttachmentContent
(
project
,
fileName
,
versionOrNull
);
}
@Override
public
InputStream
get
Experiment
AttachmentContent
(
IExperimentImmutable
experiment
,
String
fileName
,
Integer
versionOrNull
)
public
InputStream
getAttachmentContent
(
IExperimentImmutable
experiment
,
String
fileName
,
Integer
versionOrNull
)
{
return
transaction
.
get
Experiment
AttachmentContent
(
experiment
,
fileName
,
versionOrNull
);
return
transaction
.
getAttachmentContent
(
experiment
,
fileName
,
versionOrNull
);
}
@Override
public
InputStream
get
Sample
AttachmentContent
(
ISampleImmutable
sample
,
String
fileName
,
Integer
versionOrNull
)
public
InputStream
getAttachmentContent
(
ISampleImmutable
sample
,
String
fileName
,
Integer
versionOrNull
)
{
return
transaction
.
get
Sample
AttachmentContent
(
sample
,
fileName
,
versionOrNull
);
return
transaction
.
getAttachmentContent
(
sample
,
fileName
,
versionOrNull
);
}
@SuppressWarnings
(
"unchecked"
)
@Override
public
List
<
IAttachmentImmutable
>
list
Project
Attachments
(
IProjectImmutable
project
)
public
List
<
IAttachmentImmutable
>
listAttachments
(
IProjectImmutable
project
)
{
return
transaction
.
list
Project
Attachments
(
project
);
return
transaction
.
listAttachments
(
project
);
}
@SuppressWarnings
(
"unchecked"
)
@Override
public
List
<
IAttachmentImmutable
>
list
Experiment
Attachments
(
IExperimentImmutable
experiment
)
public
List
<
IAttachmentImmutable
>
listAttachments
(
IExperimentImmutable
experiment
)
{
return
transaction
.
list
Experiment
Attachments
(
experiment
);
return
transaction
.
listAttachments
(
experiment
);
}
@SuppressWarnings
(
"unchecked"
)
@Override
public
List
<
IAttachmentImmutable
>
list
Sample
Attachments
(
ISampleImmutable
sample
)
public
List
<
IAttachmentImmutable
>
listAttachments
(
ISampleImmutable
sample
)
{
return
transaction
.
list
Sample
Attachments
(
sample
);
return
transaction
.
listAttachments
(
sample
);
}
}
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