// Copyright 2012 Citrix Systems, Inc. Licensed under the // Apache License, Version 2.0 (the "License"); you may not use this // file except in compliance with the License. Citrix Systems, Inc. // reserves all rights not expressly granted by 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. // // Automatically generated by addcopyright.py at 04/03/2012 package com.cloud.api.response; import com.cloud.utils.IdentityProxy; import com.cloud.network.rules.StickinessPolicy; import com.cloud.serializer.Param; import com.cloud.utils.Pair; import com.google.gson.annotations.SerializedName; import java.util.List; import java.util.Map; import java.util.HashMap; public class LBStickinessPolicyResponse extends BaseResponse { @SerializedName("id") @Param(description = "the LB Stickiness policy ID") private IdentityProxy id = new IdentityProxy("load_balancer_stickiness_policies"); @SerializedName("name") @Param(description = "the name of the Stickiness policy") private String name; @SerializedName("methodname") @Param(description = "the method name of the Stickiness policy") private String methodName; @SerializedName("description") @Param(description = "the description of the Stickiness policy") private String description;; @SerializedName("state") @Param(description = "the state of the policy") private String state; // FIXME : if prams with the same name exists more then once then value are concatinated with ":" as delimitor . // Reason: Map does not support duplicate keys, need to look for the alernate data structure // Example: <params>{indirect=null, name=testcookie, nocache=null, domain=www.yahoo.com:www.google.com, postonly=null}</params> // in the above there are two domains with values www.yahoo.com and www.google.com @SerializedName("params") @Param(description = "the params of the policy") private Map<String, String> params; public Map<String, String> getParams() { return params; } public void setId(Long id) { this.id.setValue(id); } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getMethodName() { return methodName; } public String getState() { return state; } public void setState(String state) { this.state = state; } public LBStickinessPolicyResponse(StickinessPolicy stickinesspolicy) { this.name = stickinesspolicy.getName(); List<Pair<String, String>> paramsList = stickinesspolicy.getParams(); this.methodName = stickinesspolicy.getMethodName(); this.description = stickinesspolicy.getDescription(); if (stickinesspolicy.isRevoke()) { this.setState("Revoked"); } if (stickinesspolicy.getId() != 0) setId(stickinesspolicy.getId()); /* Get the param and values from the database and fill the response object * The following loop is to * 1) convert from List of Pair<String,String> to Map<String, String> * 2) combine all params with name with ":" , currently we have one param called "domain" that can appear multiple times. * */ Map<String, String> tempParamList = new HashMap<String, String>(); for(Pair<String,String> paramKV :paramsList){ String key = paramKV.first(); String value = paramKV.second(); StringBuilder sb = new StringBuilder(); sb.append(value); if (tempParamList.get(key) != null) { sb.append(":").append(tempParamList.get(key)); } tempParamList.put(key,sb.toString()); } this.params = tempParamList; setObjectName("stickinesspolicy"); } }