Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
Openfire
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Openfire
Commits
849bdd48
Commit
849bdd48
authored
Jun 23, 2014
by
Dele Olajide
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bamboo build failure from s2s fixes merge
parent
a9632df8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
0 deletions
+25
-0
RemoteComponentSession.java
...jivesoftware/openfire/session/RemoteComponentSession.java
+4
-0
RemoteConnectionMultiplexerSession.java
.../openfire/session/RemoteConnectionMultiplexerSession.java
+4
-0
RemoteIncomingServerSession.java
...oftware/openfire/session/RemoteIncomingServerSession.java
+13
-0
RemoteOutgoingServerSession.java
...oftware/openfire/session/RemoteOutgoingServerSession.java
+4
-0
No files found.
src/plugins/hazelcast/src/java/com/jivesoftware/openfire/session/RemoteComponentSession.java
View file @
849bdd48
...
@@ -49,6 +49,10 @@ public class RemoteComponentSession extends RemoteSession implements ComponentSe
...
@@ -49,6 +49,10 @@ public class RemoteComponentSession extends RemoteSession implements ComponentSe
component
=
new
RemoteExternalComponent
(
address
);
component
=
new
RemoteExternalComponent
(
address
);
}
}
public
String
getCipherSuiteName
()
{
return
"NONE"
;
}
public
ExternalComponent
getExternalComponent
()
{
public
ExternalComponent
getExternalComponent
()
{
return
component
;
return
component
;
}
}
...
...
src/plugins/hazelcast/src/java/com/jivesoftware/openfire/session/RemoteConnectionMultiplexerSession.java
View file @
849bdd48
...
@@ -35,6 +35,10 @@ public class RemoteConnectionMultiplexerSession extends RemoteSession implements
...
@@ -35,6 +35,10 @@ public class RemoteConnectionMultiplexerSession extends RemoteSession implements
super
(
nodeID
,
address
);
super
(
nodeID
,
address
);
}
}
public
String
getCipherSuiteName
()
{
return
"NONE"
;
}
RemoteSessionTask
getRemoteSessionTask
(
RemoteSessionTask
.
Operation
operation
)
{
RemoteSessionTask
getRemoteSessionTask
(
RemoteSessionTask
.
Operation
operation
)
{
return
new
ConnectionMultiplexerSessionTask
(
address
,
operation
);
return
new
ConnectionMultiplexerSessionTask
(
address
,
operation
);
}
}
...
...
src/plugins/hazelcast/src/java/com/jivesoftware/openfire/session/RemoteIncomingServerSession.java
View file @
849bdd48
...
@@ -35,12 +35,25 @@ import java.util.Collection;
...
@@ -35,12 +35,25 @@ import java.util.Collection;
public
class
RemoteIncomingServerSession
extends
RemoteSession
implements
IncomingServerSession
{
public
class
RemoteIncomingServerSession
extends
RemoteSession
implements
IncomingServerSession
{
private
String
localDomain
;
private
String
localDomain
;
private
long
usingServerDialback
=
-
1
;
public
RemoteIncomingServerSession
(
byte
[]
nodeID
,
String
streamID
)
{
public
RemoteIncomingServerSession
(
byte
[]
nodeID
,
String
streamID
)
{
super
(
nodeID
,
null
);
super
(
nodeID
,
null
);
this
.
streamID
=
new
BasicStreamID
(
streamID
);
this
.
streamID
=
new
BasicStreamID
(
streamID
);
}
}
public
String
getCipherSuiteName
()
{
return
"NONE"
;
}
public
boolean
isUsingServerDialback
()
{
if
(
usingServerDialback
==
-
1
)
{
ClusterTask
task
=
getRemoteSessionTask
(
RemoteSessionTask
.
Operation
.
isUsingServerDialback
);
usingServerDialback
=
(
Boolean
)
doSynchronousClusterTask
(
task
)
?
1
:
0
;
}
return
usingServerDialback
==
1
;
}
public
JID
getAddress
()
{
public
JID
getAddress
()
{
if
(
address
==
null
)
{
if
(
address
==
null
)
{
RemoteSessionTask
task
=
getRemoteSessionTask
(
RemoteSessionTask
.
Operation
.
getAddress
);
RemoteSessionTask
task
=
getRemoteSessionTask
(
RemoteSessionTask
.
Operation
.
getAddress
);
...
...
src/plugins/hazelcast/src/java/com/jivesoftware/openfire/session/RemoteOutgoingServerSession.java
View file @
849bdd48
...
@@ -43,6 +43,10 @@ public class RemoteOutgoingServerSession extends RemoteSession implements Outgoi
...
@@ -43,6 +43,10 @@ public class RemoteOutgoingServerSession extends RemoteSession implements Outgoi
super
(
nodeID
,
address
);
super
(
nodeID
,
address
);
}
}
public
String
getCipherSuiteName
()
{
return
"NONE"
;
}
public
Collection
<
String
>
getAuthenticatedDomains
()
{
public
Collection
<
String
>
getAuthenticatedDomains
()
{
ClusterTask
task
=
getRemoteSessionTask
(
RemoteSessionTask
.
Operation
.
getAuthenticatedDomains
);
ClusterTask
task
=
getRemoteSessionTask
(
RemoteSessionTask
.
Operation
.
getAuthenticatedDomains
);
return
(
Collection
<
String
>)
doSynchronousClusterTask
(
task
);
return
(
Collection
<
String
>)
doSynchronousClusterTask
(
task
);
...
...
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