Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
JAliEn
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Adrian-Eduard Negru
JAliEn
Commits
90e8479e
Commit
90e8479e
authored
5 years ago
by
Costin Grigoras
Browse files
Options
Downloads
Patches
Plain Diff
Clean up javadoc and make setPassword private
parent
016e14cc
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/alien/api/JBoxServer.java
+4
-5
4 additions, 5 deletions
src/main/java/alien/api/JBoxServer.java
with
4 additions
and
5 deletions
src/main/java/alien/api/JBoxServer.java
+
4
−
5
View file @
90e8479e
...
...
@@ -444,8 +444,6 @@ public class JBoxServer extends Thread {
/**
* Start once the UIServer
*
* @param iDebugLevel
*/
public
static
synchronized
void
startJBoxServer
()
{
...
...
@@ -482,8 +480,6 @@ public class JBoxServer extends Thread {
/**
*
* Load necessary keys and start JBoxServer
*
* @param iDebug
*/
public
static
void
startJBoxService
()
{
logger
.
log
(
Level
.
INFO
,
"Starting JBox"
);
...
...
@@ -502,11 +498,14 @@ public class JBoxServer extends Thread {
return
server
!=
null
?
server
.
port
:
-
1
;
}
/**
* @return the random password set for this session, to share with the local clients
*/
public
static
String
getPassword
()
{
return
password
!=
null
?
password
:
""
;
}
p
ublic
static
void
setPassword
(
final
String
password2set
)
{
p
rivate
static
void
setPassword
(
final
String
password2set
)
{
password
=
password2set
;
}
}
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