Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
joram
joram
Commits
4babd24d
Commit
4babd24d
authored
Oct 18, 2019
by
Andre Freyssinet
Browse files
JORAM-351: Restrict the access to this function in order to avoid a
public access to the password.
parent
24843905
Changes
1
Hide whitespace changes
Inline
Side-by-side
joram/joram/client/jca/src/main/java/org/objectweb/joram/client/connector/ManagedConnectionFactoryConfig.java
View file @
4babd24d
/*
* JORAM: Java(TM) Open Reliable Asynchronous Messaging
* Copyright (C) 2012 ScalAgent Distributed Technologies
* Copyright (C) 2012
- 2019
ScalAgent Distributed Technologies
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
...
...
@@ -286,7 +286,9 @@ public class ManagedConnectionFactoryConfig implements java.io.Serializable {
return
userName
;
}
public
String
getPassword
()
{
// JORAM-351: We have to restrict the access to this function in order to avoid a public access
// to the password. 'package' seems to be a right choice.
String
getPassword
()
{
return
password
;
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment