mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
164 lines
4.2 KiB
Java
164 lines
4.2 KiB
Java
/**
|
|
* Copyright (C) 2010 Cloud.com, Inc. All rights reserved.
|
|
*
|
|
* This software is licensed under the GNU General Public License v3 or later.
|
|
*
|
|
* It is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or any later version.
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
package com.cloud.network;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.EnumType;
|
|
import javax.persistence.Enumerated;
|
|
import javax.persistence.GeneratedValue;
|
|
import javax.persistence.GenerationType;
|
|
import javax.persistence.Id;
|
|
import javax.persistence.Table;
|
|
|
|
import com.cloud.network.Network.BroadcastDomainType;
|
|
import com.cloud.network.Network.Mode;
|
|
import com.cloud.network.Network.TrafficType;
|
|
import com.cloud.vm.NetworkCharacteristics;
|
|
|
|
/**
|
|
* NetworkProfileVO contains information about a specific network.
|
|
*
|
|
*/
|
|
@Entity
|
|
@Table(name="network_profiles")
|
|
public class NetworkProfileVO implements NetworkProfile {
|
|
@Id
|
|
@GeneratedValue(strategy=GenerationType.IDENTITY)
|
|
Long id;
|
|
|
|
@Column(name="mode")
|
|
@Enumerated(value=EnumType.STRING)
|
|
Mode mode;
|
|
|
|
@Column(name="account_id")
|
|
long accountId;
|
|
|
|
@Column(name="broadcast_domain_type")
|
|
@Enumerated(value=EnumType.STRING)
|
|
BroadcastDomainType broadcastDomainType;
|
|
|
|
@Column(name="traffic_type")
|
|
@Enumerated(value=EnumType.STRING)
|
|
TrafficType trafficType;
|
|
|
|
@Column(name="vlan_id")
|
|
Long vlanId;
|
|
|
|
@Column(name="gateway")
|
|
String gateway;
|
|
|
|
@Column(name="cidr")
|
|
String cidr;
|
|
|
|
@Column(name="network_offering_id")
|
|
long networkOfferingId;
|
|
|
|
public NetworkProfileVO() {
|
|
}
|
|
|
|
public NetworkProfileVO(NetworkProfile that, long accountId, long offeringId) {
|
|
this(accountId, that.getTrafficType(), that.getMode(), that.getBroadcastDomainType(), offeringId);
|
|
}
|
|
|
|
public NetworkProfileVO(long accountId, TrafficType trafficType, Mode mode, BroadcastDomainType broadcastDomainType, long networkOfferingId) {
|
|
this.accountId = accountId;
|
|
this.trafficType = trafficType;
|
|
this.mode = mode;
|
|
this.broadcastDomainType = broadcastDomainType;
|
|
this.networkOfferingId = networkOfferingId;
|
|
}
|
|
|
|
@Override
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
@Override
|
|
public Mode getMode() {
|
|
return mode;
|
|
}
|
|
|
|
@Override
|
|
public long getNetworkOfferingId() {
|
|
return networkOfferingId;
|
|
}
|
|
|
|
public void setMode(Mode mode) {
|
|
this.mode = mode;
|
|
}
|
|
|
|
@Override
|
|
public long getAccountId() {
|
|
return accountId;
|
|
}
|
|
|
|
public void setAccountId(long accountId) {
|
|
this.accountId = accountId;
|
|
}
|
|
|
|
@Override
|
|
public BroadcastDomainType getBroadcastDomainType() {
|
|
return broadcastDomainType;
|
|
}
|
|
|
|
public void setBroadcastDomainType(BroadcastDomainType broadcastDomainType) {
|
|
this.broadcastDomainType = broadcastDomainType;
|
|
}
|
|
|
|
@Override
|
|
public TrafficType getTrafficType() {
|
|
return trafficType;
|
|
}
|
|
|
|
public void setTrafficType(TrafficType trafficType) {
|
|
this.trafficType = trafficType;
|
|
}
|
|
|
|
@Override
|
|
public String getGateway() {
|
|
return gateway;
|
|
}
|
|
|
|
public void setGateway(String gateway) {
|
|
this.gateway = gateway;
|
|
}
|
|
|
|
@Override
|
|
public String getCidr() {
|
|
return cidr;
|
|
}
|
|
|
|
@Override
|
|
public void setCidr(String cidr) {
|
|
this.cidr = cidr;
|
|
}
|
|
|
|
public Long getVlanId() {
|
|
return vlanId;
|
|
}
|
|
|
|
public void setVlanId(Long vlanId) {
|
|
this.vlanId = vlanId;
|
|
}
|
|
|
|
public NetworkCharacteristics toCharacteristics() {
|
|
return new NetworkCharacteristics(id, broadcastDomainType, cidr, mode, 0);
|
|
}
|
|
}
|