Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
NomadCommandSystem
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Instrument Control
NomadCommandSystem
Commits
ce1f7d90
Commit
ce1f7d90
authored
Nov 27, 2020
by
Hélène Ortiz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Connected users and users' roles management.
parent
d0f94db0
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
2 deletions
+13
-2
ChangeLog
ChangeLog
+5
-0
pom.xml
pom.xml
+1
-1
src/main/java/fr/ill/ics/nscclient/commandline/CommandLineAccessor.java
...fr/ill/ics/nscclient/commandline/CommandLineAccessor.java
+0
-1
src/main/java/fr/ill/ics/nscclient/notification/DataNotificationClient.java
...ll/ics/nscclient/notification/DataNotificationClient.java
+1
-0
src/main/java/fr/ill/ics/nscclient/sessionmanagement/ConnectedUser.java
...fr/ill/ics/nscclient/sessionmanagement/ConnectedUser.java
+6
-0
No files found.
ChangeLog
View file @
ce1f7d90
4.0.35 26/11/2020
------
* Connected users management.
* Users' roles management.
4.0.34 13/11/2020
------
* Cameo 1.0.0 integrated.
...
...
pom.xml
View file @
ce1f7d90
...
...
@@ -2,7 +2,7 @@
<modelVersion>
4.0.0
</modelVersion>
<groupId>
fr.ill.ics
</groupId>
<artifactId>
nomadcommandsystem
</artifactId>
<version>
4.0.35
-SNAPSHOT
</version>
<version>
4.0.35
</version>
<name>
NomadCommandSystem
</name>
<description>
Java bridge for the communication with the Nomad server
</description>
<scm>
...
...
src/main/java/fr/ill/ics/nscclient/commandline/CommandLineAccessor.java
View file @
ce1f7d90
...
...
@@ -29,7 +29,6 @@ import fr.ill.ics.cameo.Application;
import
fr.ill.ics.cameo.RequesterCreationException
;
import
fr.ill.ics.nomadserver.commandline.CommandLineRequest
;
import
fr.ill.ics.nomadserver.common.Common
;
import
fr.ill.ics.nscclient.command.CommandZoneAccessor
;
import
fr.ill.ics.nscclient.serverconnection.ServerInstance
;
import
fr.ill.ics.nscclient.sessionmanagement.SessionManager
;
...
...
src/main/java/fr/ill/ics/nscclient/notification/DataNotificationClient.java
View file @
ce1f7d90
...
...
@@ -640,6 +640,7 @@ public class DataNotificationClient {
notifyChatMessage
(
chatData
.
getDate
(),
chatData
.
getOwner
(),
chatData
.
getMessage
(),
chatData
.
getFileName
());
}
else
if
(
data
instanceof
ConnectedUsersChangedData
)
{
System
.
out
.
println
(
"*************************************************** notifyConnectedUsersChangeListeners !!!! ***************************************************"
);
notifyConnectedUsersChangeListeners
();
}
}
...
...
src/main/java/fr/ill/ics/nscclient/sessionmanagement/ConnectedUser.java
View file @
ce1f7d90
...
...
@@ -31,4 +31,10 @@ public class ConnectedUser {
return
endpoint
;
}
@Override
public
String
toString
()
{
return
"clientId = "
+
clientId
+
" user = "
+
user
+
" clientType = "
+
clientType
+
" endpoint = "
+
endpoint
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment