mirror of
https://github.com/apache/cloudstack.git
synced 2025-12-18 19:44:21 +01:00
111 lines
3.0 KiB
Java
111 lines
3.0 KiB
Java
// Licensed to the Apache Software Foundation (ASF) under one
|
|
// or more contributor license agreements. See the NOTICE file
|
|
// distributed with this work for additional information
|
|
// regarding copyright ownership. The ASF licenses this file
|
|
// to you under the Apache License, Version 2.0 (the
|
|
// "License"); you may not use this file except in compliance
|
|
// with the License. You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing,
|
|
// software distributed under the License is distributed on an
|
|
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
// KIND, either express or implied. See the License for the
|
|
// specific language governing permissions and limitations
|
|
// under the License.
|
|
package com.cloud.consoleproxy;
|
|
|
|
/**
|
|
*
|
|
* Data object to store parameter info needed by client to connect to its host
|
|
*/
|
|
public class ConsoleProxyClientParam {
|
|
|
|
private String clientHostAddress;
|
|
private int clientHostPort;
|
|
private String clientHostPassword;
|
|
private String clientTag;
|
|
private String ticket;
|
|
|
|
private String clientTunnelUrl;
|
|
private String clientTunnelSession;
|
|
|
|
private String ajaxSessionId;
|
|
|
|
public ConsoleProxyClientParam() {
|
|
clientHostPort = 0;
|
|
}
|
|
|
|
public String getClientHostAddress() {
|
|
return clientHostAddress;
|
|
}
|
|
|
|
public void setClientHostAddress(String clientHostAddress) {
|
|
this.clientHostAddress = clientHostAddress;
|
|
}
|
|
|
|
public int getClientHostPort() {
|
|
return clientHostPort;
|
|
}
|
|
|
|
public void setClientHostPort(int clientHostPort) {
|
|
this.clientHostPort = clientHostPort;
|
|
}
|
|
|
|
public String getClientHostPassword() {
|
|
return clientHostPassword;
|
|
}
|
|
|
|
public void setClientHostPassword(String clientHostPassword) {
|
|
this.clientHostPassword = clientHostPassword;
|
|
}
|
|
|
|
public String getClientTag() {
|
|
return clientTag;
|
|
}
|
|
|
|
public void setClientTag(String clientTag) {
|
|
this.clientTag = clientTag;
|
|
}
|
|
|
|
public String getTicket() {
|
|
return ticket;
|
|
}
|
|
|
|
public void setTicket(String ticket) {
|
|
this.ticket = ticket;
|
|
}
|
|
|
|
public String getClientTunnelUrl() {
|
|
return clientTunnelUrl;
|
|
}
|
|
|
|
public void setClientTunnelUrl(String clientTunnelUrl) {
|
|
this.clientTunnelUrl = clientTunnelUrl;
|
|
}
|
|
|
|
public String getClientTunnelSession() {
|
|
return clientTunnelSession;
|
|
}
|
|
|
|
public void setClientTunnelSession(String clientTunnelSession) {
|
|
this.clientTunnelSession = clientTunnelSession;
|
|
}
|
|
|
|
public String getAjaxSessionId() {
|
|
return this.ajaxSessionId;
|
|
}
|
|
|
|
public void setAjaxSessionId(String ajaxSessionId) {
|
|
this.ajaxSessionId = ajaxSessionId;
|
|
}
|
|
|
|
public String getClientMapKey() {
|
|
if(clientTag != null && !clientTag.isEmpty())
|
|
return clientTag;
|
|
|
|
return clientHostAddress + ":" + clientHostPort;
|
|
}
|
|
}
|