mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-02 11:52:28 +01:00
Baremetal: Move list APIs to the correct location
This commit is contained in:
parent
37f12a31a3
commit
2fc6054a9d
@ -605,6 +605,8 @@ addBaremetalHost=1
|
||||
addBaremetalPxeKickStartServer=1
|
||||
addBaremetalPxePingServer=1
|
||||
addBaremetalDhcp=1
|
||||
listBaremetalDhcp=1
|
||||
listBaremetalPxePingServer=1
|
||||
|
||||
#### UCS commands
|
||||
addUcsManager=1
|
||||
|
||||
@ -33,6 +33,7 @@ import javax.inject.Inject;
|
||||
|
||||
import org.apache.cloudstack.api.AddBaremetalPxeCmd;
|
||||
import org.apache.cloudstack.api.AddBaremetalPxePingServerCmd;
|
||||
import org.apache.cloudstack.api.ListBaremetalPxePingServersCmd;
|
||||
import org.apache.log4j.Logger;
|
||||
|
||||
import com.cloud.agent.api.Answer;
|
||||
|
||||
@ -25,6 +25,7 @@ package com.cloud.baremetal.networkservice;
|
||||
import java.util.List;
|
||||
|
||||
import org.apache.cloudstack.api.AddBaremetalDhcpCmd;
|
||||
import org.apache.cloudstack.api.ListBaremetalDhcpCmd;
|
||||
|
||||
import com.cloud.baremetal.database.BaremetalDhcpVO;
|
||||
import com.cloud.deploy.DeployDestination;
|
||||
|
||||
@ -33,6 +33,7 @@ import javax.inject.Inject;
|
||||
import javax.naming.ConfigurationException;
|
||||
|
||||
import org.apache.cloudstack.api.AddBaremetalDhcpCmd;
|
||||
import org.apache.cloudstack.api.ListBaremetalDhcpCmd;
|
||||
import org.apache.log4j.Logger;
|
||||
|
||||
import com.cloud.agent.AgentManager;
|
||||
|
||||
@ -29,6 +29,7 @@ import javax.inject.Inject;
|
||||
|
||||
import org.apache.cloudstack.api.AddBaremetalKickStartPxeCmd;
|
||||
import org.apache.cloudstack.api.AddBaremetalPxeCmd;
|
||||
import org.apache.cloudstack.api.ListBaremetalPxePingServersCmd;
|
||||
import org.apache.log4j.Logger;
|
||||
|
||||
import com.cloud.agent.api.Answer;
|
||||
|
||||
@ -25,6 +25,7 @@ package com.cloud.baremetal.networkservice;
|
||||
import java.util.List;
|
||||
|
||||
import org.apache.cloudstack.api.AddBaremetalPxeCmd;
|
||||
import org.apache.cloudstack.api.ListBaremetalPxePingServersCmd;
|
||||
|
||||
import com.cloud.baremetal.database.BaremetalPxeVO;
|
||||
import com.cloud.deploy.DeployDestination;
|
||||
|
||||
@ -34,6 +34,7 @@ import javax.naming.ConfigurationException;
|
||||
import org.apache.cloudstack.api.AddBaremetalKickStartPxeCmd;
|
||||
import org.apache.cloudstack.api.AddBaremetalPxeCmd;
|
||||
import org.apache.cloudstack.api.AddBaremetalPxePingServerCmd;
|
||||
import org.apache.cloudstack.api.ListBaremetalPxePingServersCmd;
|
||||
import org.apache.log4j.Logger;
|
||||
|
||||
import com.cloud.agent.AgentManager;
|
||||
|
||||
@ -25,6 +25,7 @@ package com.cloud.baremetal.networkservice;
|
||||
import java.util.List;
|
||||
|
||||
import org.apache.cloudstack.api.AddBaremetalPxeCmd;
|
||||
import org.apache.cloudstack.api.ListBaremetalPxePingServersCmd;
|
||||
|
||||
import com.cloud.baremetal.database.BaremetalPxeVO;
|
||||
import com.cloud.deploy.DeployDestination;
|
||||
|
||||
@ -16,7 +16,7 @@
|
||||
// under the License.
|
||||
//
|
||||
// Automatically generated by addcopyright.py at 01/29/2013
|
||||
package com.cloud.baremetal.networkservice;
|
||||
package org.apache.cloudstack.api;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@ -33,6 +33,8 @@ import org.apache.cloudstack.api.ServerApiException;
|
||||
import org.apache.cloudstack.api.response.ListResponse;
|
||||
import org.apache.log4j.Logger;
|
||||
|
||||
import com.cloud.baremetal.networkservice.BaremetalDhcpManager;
|
||||
import com.cloud.baremetal.networkservice.BaremetalDhcpResponse;
|
||||
import com.cloud.exception.ConcurrentOperationException;
|
||||
import com.cloud.exception.InsufficientCapacityException;
|
||||
import com.cloud.exception.NetworkRuleConflictException;
|
||||
@ -16,7 +16,7 @@
|
||||
// under the License.
|
||||
//
|
||||
// Automatically generated by addcopyright.py at 01/29/2013
|
||||
package com.cloud.baremetal.networkservice;
|
||||
package org.apache.cloudstack.api;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@ -33,6 +33,9 @@ import org.apache.cloudstack.api.ServerApiException;
|
||||
import org.apache.cloudstack.api.response.ListResponse;
|
||||
import org.apache.log4j.Logger;
|
||||
|
||||
import com.cloud.baremetal.networkservice.BaremetalPxeManager;
|
||||
import com.cloud.baremetal.networkservice.BaremetalPxePingResponse;
|
||||
import com.cloud.baremetal.networkservice.BaremetalPxeResponse;
|
||||
import com.cloud.exception.ConcurrentOperationException;
|
||||
import com.cloud.exception.InsufficientCapacityException;
|
||||
import com.cloud.exception.NetworkRuleConflictException;
|
||||
Loading…
x
Reference in New Issue
Block a user