/** * 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.ovs.dao; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; @Entity @Table(name=("ovs_tunnel_interface")) public class OvsTunnelInterfaceVO { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) @Column(name = "id") private long id; @Column(name = "ip") private String ip; @Column(name = "netmask") private String netmask; @Column(name = "mac") private String mac; @Column(name = "host_id") private long hostId; @Column(name = "label") private String label; public OvsTunnelInterfaceVO() { } public OvsTunnelInterfaceVO(String ip, String netmask, String mac, long hostId, String label) { this.ip = ip; this.netmask = netmask; this.mac = mac; this.hostId = hostId; this.label = label; } public long getId() { return id; } public void setId(long id) { this.id = id; } public String getIp() { return ip; } public void setIp(String ip) { this.ip = ip; } public String getNetmask() { return netmask; } public void setNetmask(String netmask) { this.netmask = netmask; } public String getMac() { return mac; } public void setMac(String mac) { this.mac = mac; } public long getHostId() { return hostId; } public void setHostId(long hostId) { this.hostId = hostId; } public String getLabel() { return label; } public void setLabel(String label) { this.label = label; } }