Updated Branches: refs/heads/master a7b77f331 -> 75665f5b9
fixing line endings Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/75665f5b Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/75665f5b Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/75665f5b Branch: refs/heads/master Commit: 75665f5b9583678fbb28b4949b6145fde498213a Parents: a7b77f3 Author: David Nalley <[email protected]> Authored: Fri Sep 7 14:12:32 2012 -0400 Committer: David Nalley <[email protected]> Committed: Fri Sep 7 14:12:32 2012 -0400 ---------------------------------------------------------------------- .../ConsoleProxyAuthenticationResult.java | 128 +++++++------- 1 files changed, 64 insertions(+), 64 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/75665f5b/agent/src/com/cloud/agent/resource/consoleproxy/ConsoleProxyAuthenticationResult.java ---------------------------------------------------------------------- diff --git a/agent/src/com/cloud/agent/resource/consoleproxy/ConsoleProxyAuthenticationResult.java b/agent/src/com/cloud/agent/resource/consoleproxy/ConsoleProxyAuthenticationResult.java index 6ed211a..0b9f797 100644 --- a/agent/src/com/cloud/agent/resource/consoleproxy/ConsoleProxyAuthenticationResult.java +++ b/agent/src/com/cloud/agent/resource/consoleproxy/ConsoleProxyAuthenticationResult.java @@ -14,67 +14,67 @@ // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. -package com.cloud.agent.resource.consoleproxy; - -public class ConsoleProxyAuthenticationResult { - private boolean success; - private boolean isReauthentication; - private String host; - private int port; - private String tunnelUrl; - private String tunnelSession; - - public ConsoleProxyAuthenticationResult() { - success = false; - isReauthentication = false; - port = 0; - } - - public boolean isSuccess() { - return success; - } - - public void setSuccess(boolean success) { - this.success = success; - } - - public boolean isReauthentication() { - return isReauthentication; - } - - public void setReauthentication(boolean isReauthentication) { - this.isReauthentication = isReauthentication; - } - - public String getHost() { - return host; - } - - public void setHost(String host) { - this.host = host; - } - - public int getPort() { - return port; - } - - public void setPort(int port) { - this.port = port; - } - - public String getTunnelUrl() { - return tunnelUrl; - } - - public void setTunnelUrl(String tunnelUrl) { - this.tunnelUrl = tunnelUrl; - } - - public String getTunnelSession() { - return tunnelSession; - } - - public void setTunnelSession(String tunnelSession) { - this.tunnelSession = tunnelSession; - } -} +package com.cloud.agent.resource.consoleproxy; + +public class ConsoleProxyAuthenticationResult { + private boolean success; + private boolean isReauthentication; + private String host; + private int port; + private String tunnelUrl; + private String tunnelSession; + + public ConsoleProxyAuthenticationResult() { + success = false; + isReauthentication = false; + port = 0; + } + + public boolean isSuccess() { + return success; + } + + public void setSuccess(boolean success) { + this.success = success; + } + + public boolean isReauthentication() { + return isReauthentication; + } + + public void setReauthentication(boolean isReauthentication) { + this.isReauthentication = isReauthentication; + } + + public String getHost() { + return host; + } + + public void setHost(String host) { + this.host = host; + } + + public int getPort() { + return port; + } + + public void setPort(int port) { + this.port = port; + } + + public String getTunnelUrl() { + return tunnelUrl; + } + + public void setTunnelUrl(String tunnelUrl) { + this.tunnelUrl = tunnelUrl; + } + + public String getTunnelSession() { + return tunnelSession; + } + + public void setTunnelSession(String tunnelSession) { + this.tunnelSession = tunnelSession; + } +}
