Make ConnectionConfugration getters public

No need to keep them package-private. SMACK-556
This commit is contained in:
Florian Schmaus 2014-04-10 21:12:12 +02:00
parent 4cff008708
commit c3cb98a116
1 changed files with 4 additions and 4 deletions

View File

@ -522,7 +522,7 @@ public class ConnectionConfiguration implements Cloneable {
* *
* @return the username to use when trying to reconnect to the server. * @return the username to use when trying to reconnect to the server.
*/ */
String getUsername() { public String getUsername() {
return this.username; return this.username;
} }
@ -531,7 +531,7 @@ public class ConnectionConfiguration implements Cloneable {
* *
* @return the password to use when trying to reconnect to the server. * @return the password to use when trying to reconnect to the server.
*/ */
String getPassword() { public String getPassword() {
return this.password; return this.password;
} }
@ -540,7 +540,7 @@ public class ConnectionConfiguration implements Cloneable {
* *
* @return the resource to use when trying to reconnect to the server. * @return the resource to use when trying to reconnect to the server.
*/ */
String getResource() { public String getResource() {
return resource; return resource;
} }
@ -549,7 +549,7 @@ public class ConnectionConfiguration implements Cloneable {
* *
* @return true if an available presence should be sent when logging in while reconnecting * @return true if an available presence should be sent when logging in while reconnecting
*/ */
boolean isSendPresence() { public boolean isSendPresence() {
return sendPresence; return sendPresence;
} }