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
1cc50499
Commit
1cc50499
authored
13 years ago
by
tpylak
Browse files
Options
Downloads
Patches
Plain Diff
LMS-2304 Screening: image viewer does not start anymore
SVN: 21674
parent
c59c7f47
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/plugin/screening/client/api/v1/ScreeningOpenbisServiceFacadeFactory.java
+25
-4
25 additions, 4 deletions
...g/client/api/v1/ScreeningOpenbisServiceFacadeFactory.java
with
25 additions
and
4 deletions
screening/source/java/ch/systemsx/cisd/openbis/plugin/screening/client/api/v1/ScreeningOpenbisServiceFacadeFactory.java
+
25
−
4
View file @
1cc50499
...
@@ -16,8 +16,6 @@
...
@@ -16,8 +16,6 @@
package
ch.systemsx.cisd.openbis.plugin.screening.client.api.v1
;
package
ch.systemsx.cisd.openbis.plugin.screening.client.api.v1
;
/**
/**
* Default implementation of {@link IScreeningOpenbisServiceFacadeFactory}.
* Default implementation of {@link IScreeningOpenbisServiceFacadeFactory}.
*
*
...
@@ -39,6 +37,29 @@ public class ScreeningOpenbisServiceFacadeFactory implements IScreeningOpenbisSe
...
@@ -39,6 +37,29 @@ public class ScreeningOpenbisServiceFacadeFactory implements IScreeningOpenbisSe
{
{
return
ScreeningOpenbisServiceFacade
.
tryCreate
(
sessionToken
,
serverUrl
);
return
ScreeningOpenbisServiceFacade
.
tryCreate
(
sessionToken
,
serverUrl
);
}
}
/**
* Creates a service facade which communicates with the openBIS server at the specified URL.
* Authenticates the user.
*
* @return null if the user could not be authenticated.
*/
public
static
IScreeningOpenbisServiceFacade
tryCreate
(
String
userId
,
String
userPassword
,
String
serverUrl
)
{
return
INSTANCE
.
tryToCreate
(
userId
,
userPassword
,
serverUrl
);
}
/**
* Creates a service facade which communicates with the openBIS server at the specified URL for
* an authenticated user.
*
* @param sessionToken The session token for the authenticated user
* @param serverUrl The URL for the openBIS application server
*/
public
static
IScreeningOpenbisServiceFacade
tryCreate
(
String
sessionToken
,
String
serverUrl
)
{
return
INSTANCE
.
tryToCreate
(
sessionToken
,
serverUrl
);
}
}
}
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