-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5616 from openmicroscopy/next_infra
Re-integrate next_infra into develop
- Loading branch information
Showing
64 changed files
with
1,724 additions
and
1,345 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
69 changes: 69 additions & 0 deletions
69
components/blitz/src/omero/gateway/JoinSessionCredentials.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/* | ||
*------------------------------------------------------------------------------ | ||
* Copyright (C) 2017 University of Dundee. All rights reserved. | ||
* | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 2 of the License, or | ||
* (at your option) any later version. | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License along | ||
* with this program; if not, write to the Free Software Foundation, Inc., | ||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
*------------------------------------------------------------------------------ | ||
*/ | ||
package omero.gateway; | ||
|
||
import java.util.UUID; | ||
|
||
/** | ||
* Holds all necessary information needed for joining an active OMERO server | ||
* session | ||
* | ||
* @author Dominik Lindner <a | ||
* href="mailto:d.lindner@dundee.ac.uk">d.lindner@dundee.ac.uk</a> | ||
*/ | ||
public class JoinSessionCredentials extends LoginCredentials { | ||
|
||
/** | ||
* Creates a new instance | ||
* | ||
* @param sessionId | ||
* The session ID | ||
* @param host | ||
* The server hostname | ||
*/ | ||
public JoinSessionCredentials(String sessionId, String host) { | ||
// simply set the session ID as username, everything else is | ||
// handled in Gateway.createSession(LoginCredentials) | ||
super(sessionId, "", host); | ||
|
||
// Check that the sessionId is an UUID | ||
UUID.fromString(sessionId); | ||
} | ||
|
||
/** | ||
* Creates a new instance | ||
* | ||
* @param sessionId | ||
* The session ID | ||
* @param host | ||
* The server hostname | ||
* @param port | ||
* The server port | ||
*/ | ||
public JoinSessionCredentials(String sessionId, String host, int port) { | ||
// simply set the session ID as username, everything else is | ||
// handled in Gateway.createSession(LoginCredentials) | ||
super(sessionId, "", host, port); | ||
|
||
// Check that the sessionId is an UUID | ||
UUID.fromString(sessionId); | ||
} | ||
} |
Oops, something went wrong.