mirror of https://github.com/apache/cloudstack.git
start vm not working again
This commit is contained in:
parent
f147bf5f94
commit
e217c89028
|
|
@ -0,0 +1,121 @@
|
|||
/**
|
||||
* 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.addr;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import com.cloud.dc.VlanVO;
|
||||
import com.cloud.network.IPAddressVO;
|
||||
import com.cloud.network.IpAddress;
|
||||
|
||||
/**
|
||||
* PublicIp is a combo object of IPAddressVO and VLAN information.
|
||||
*/
|
||||
public class PublicIp implements IpAddress {
|
||||
IPAddressVO _addr;
|
||||
VlanVO _vlan;
|
||||
|
||||
public PublicIp(IPAddressVO addr, VlanVO vlan) {
|
||||
_addr = addr;
|
||||
_vlan = vlan;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getAddress() {
|
||||
return _addr.getAddress();
|
||||
}
|
||||
|
||||
public long getMacAddress() {
|
||||
return _addr.getMacAddress();
|
||||
}
|
||||
|
||||
public String getNetmask() {
|
||||
return _vlan.getVlanNetmask();
|
||||
}
|
||||
|
||||
public String getGateway() {
|
||||
return _vlan.getVlanGateway();
|
||||
}
|
||||
|
||||
public String getVlanTag() {
|
||||
return _vlan.getVlanId();
|
||||
}
|
||||
|
||||
@Override
|
||||
public long getDataCenterId() {
|
||||
return _addr.getDataCenterId();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean readyToUse() {
|
||||
return _addr.getAllocatedTime() != null && _addr.getState() == State.Allocated;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isSourceNat() {
|
||||
return _addr.isSourceNat();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isOneToOneNat() {
|
||||
return _addr.isOneToOneNat();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Date getAllocatedTime() {
|
||||
return _addr.getAllocatedTime();
|
||||
}
|
||||
|
||||
@Override
|
||||
public long getAccountId() {
|
||||
return _addr.getAccountId();
|
||||
}
|
||||
|
||||
@Override
|
||||
public long getDomainId() {
|
||||
return _addr.getDomainId();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Long getAllocatedToAccountId() {
|
||||
return _addr.getAllocatedToAccountId();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Long getAllocatedInDomainId() {
|
||||
return _addr.getAllocatedInDomainId();
|
||||
}
|
||||
|
||||
@Override
|
||||
public long getVlanId() {
|
||||
return _vlan.getId();
|
||||
}
|
||||
|
||||
@Override
|
||||
public State getState() {
|
||||
return _addr.getState();
|
||||
}
|
||||
|
||||
public IPAddressVO ip() {
|
||||
return _addr;
|
||||
}
|
||||
|
||||
public VlanVO vlan() {
|
||||
return _vlan;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue