From c3cb98a116357593ad0f73d9ba99808d065f9942 Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Thu, 10 Apr 2014 21:12:12 +0200 Subject: [PATCH] Make ConnectionConfugration getters public No need to keep them package-private. SMACK-556 --- .../org/jivesoftware/smack/ConnectionConfiguration.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/main/java/org/jivesoftware/smack/ConnectionConfiguration.java b/core/src/main/java/org/jivesoftware/smack/ConnectionConfiguration.java index df0fb7747..95858858f 100644 --- a/core/src/main/java/org/jivesoftware/smack/ConnectionConfiguration.java +++ b/core/src/main/java/org/jivesoftware/smack/ConnectionConfiguration.java @@ -522,7 +522,7 @@ public class ConnectionConfiguration implements Cloneable { * * @return the username to use when trying to reconnect to the server. */ - String getUsername() { + public String getUsername() { return this.username; } @@ -531,7 +531,7 @@ public class ConnectionConfiguration implements Cloneable { * * @return the password to use when trying to reconnect to the server. */ - String getPassword() { + public String getPassword() { return this.password; } @@ -540,7 +540,7 @@ public class ConnectionConfiguration implements Cloneable { * * @return the resource to use when trying to reconnect to the server. */ - String getResource() { + public String getResource() { 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 */ - boolean isSendPresence() { + public boolean isSendPresence() { return sendPresence; }