| // 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.network; |
| |
| import java.util.ArrayList; |
| import java.util.HashMap; |
| import java.util.Iterator; |
| import java.util.List; |
| import java.util.Map; |
| import java.util.UUID; |
| |
| import javax.persistence.Column; |
| import javax.persistence.Entity; |
| import javax.persistence.GeneratedValue; |
| import javax.persistence.GenerationType; |
| import javax.persistence.Id; |
| import javax.persistence.PrimaryKeyJoinColumn; |
| import javax.persistence.Table; |
| |
| import com.cloud.network.rules.HealthCheckPolicy; |
| import org.apache.cloudstack.api.InternalIdentity; |
| |
| @Entity |
| @Table(name = ("load_balancer_healthcheck_policies")) |
| @PrimaryKeyJoinColumn(name = "load_balancer_id", referencedColumnName = "id") |
| public class LBHealthCheckPolicyVO implements HealthCheckPolicy { |
| @Id |
| @GeneratedValue(strategy = GenerationType.IDENTITY) |
| @Column(name = "id") |
| private long id; |
| |
| @Column(name = "load_balancer_id") |
| private long loadBalancerId; |
| |
| @Column(name = "pingpath") |
| private String pingPath; |
| |
| @Column(name = "description") |
| private String description; |
| |
| @Column(name = "uuid") |
| private String uuid; |
| |
| @Column(name = "response_time") |
| private int responseTime; |
| |
| @Column(name = "healthcheck_interval") |
| private int healthcheckInterval; |
| |
| @Column(name = "healthcheck_thresshold") |
| private int healthcheckThresshold; |
| |
| @Column(name = "unhealth_thresshold") |
| private int unhealthThresshold; |
| |
| @Column(name = "revoke") |
| private boolean revoke = false; |
| |
| protected LBHealthCheckPolicyVO() { |
| this.uuid = UUID.randomUUID().toString(); |
| } |
| |
| public LBHealthCheckPolicyVO(long loadBalancerId, String pingPath, String description, int responseTime, |
| int healthcheckInterval, int healthcheckThresshold, int unhealthThresshold) { |
| this.loadBalancerId = loadBalancerId; |
| |
| if (pingPath == null || pingPath.isEmpty()) |
| this.pingPath = "/"; |
| else |
| this.pingPath = pingPath; |
| |
| if (responseTime == 0) |
| this.responseTime = 2; |
| else |
| this.responseTime = responseTime; |
| |
| if (healthcheckInterval == 0) |
| this.healthcheckInterval = 5; |
| else |
| this.healthcheckInterval = healthcheckInterval; |
| |
| if (healthcheckThresshold == 0) |
| this.healthcheckThresshold = 2; |
| else |
| this.healthcheckThresshold = healthcheckThresshold; |
| |
| if (unhealthThresshold == 0) |
| this.unhealthThresshold = 1; |
| else |
| this.unhealthThresshold = unhealthThresshold; |
| this.uuid = UUID.randomUUID().toString(); |
| |
| } |
| |
| public int getResponseTime() { |
| return responseTime; |
| } |
| |
| public int getHealthcheckInterval() { |
| return healthcheckInterval; |
| } |
| |
| public int getHealthcheckThresshold() { |
| return healthcheckThresshold; |
| } |
| |
| public int getUnhealthThresshold() { |
| return unhealthThresshold; |
| } |
| |
| public long getId() { |
| return id; |
| } |
| |
| public long getLoadBalancerId() { |
| return loadBalancerId; |
| } |
| |
| public String getpingpath() { |
| return pingPath; |
| } |
| |
| public String getDescription() { |
| return description; |
| } |
| |
| public boolean isRevoke() { |
| return revoke; |
| } |
| |
| public void setRevoke(boolean revoke) { |
| this.revoke = revoke; |
| } |
| |
| @Override |
| public String getUuid() { |
| return this.uuid; |
| } |
| |
| public void setUuid(String uuid) { |
| this.uuid = uuid; |
| } |
| } |