mirror of https://github.com/apache/cloudstack.git
api_refactor: move diskoffering to offering
Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
This commit is contained in:
parent
1b8dc65f3a
commit
6fe1b5f9b0
|
|
@ -25,6 +25,7 @@ import java.util.Set;
|
|||
import com.cloud.alert.Alert;
|
||||
import org.apache.cloudstack.api.ServerApiException;
|
||||
import org.apache.cloudstack.api.user.guest.command.ListGuestOsCmd;
|
||||
import org.apache.cloudstack.api.user.offering.command.ListDiskOfferingsCmd;
|
||||
import org.apache.cloudstack.api.user.ssh.command.CreateSSHKeyPairCmd;
|
||||
import org.apache.cloudstack.api.user.ssh.command.DeleteSSHKeyPairCmd;
|
||||
import com.cloud.api.commands.DestroySystemVmCmd;
|
||||
|
|
@ -38,7 +39,6 @@ import org.apache.cloudstack.api.user.configuration.command.ListCapabilitiesCmd;
|
|||
import com.cloud.api.commands.ListCapacityCmd;
|
||||
import com.cloud.api.commands.ListCfgsByCmd;
|
||||
import com.cloud.api.commands.ListClustersCmd;
|
||||
import org.apache.cloudstack.api.user.disk.command.ListDiskOfferingsCmd;
|
||||
import org.apache.cloudstack.api.user.event.command.ListEventsCmd;
|
||||
import org.apache.cloudstack.api.user.guest.command.ListGuestOsCategoriesCmd;
|
||||
import com.cloud.api.commands.ListHostsCmd;
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
// KIND, either express or implied. See the License for the
|
||||
// specific language governing permissions and limitations
|
||||
// under the License.
|
||||
package org.apache.cloudstack.api.user.disk.command;
|
||||
package org.apache.cloudstack.api.user.offering.command;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
|
@ -116,7 +116,7 @@ listServiceOfferings=org.apache.cloudstack.api.user.serviceoffering.command.List
|
|||
createDiskOffering=com.cloud.api.commands.CreateDiskOfferingCmd;1
|
||||
updateDiskOffering=com.cloud.api.commands.UpdateDiskOfferingCmd;1
|
||||
deleteDiskOffering=com.cloud.api.commands.DeleteDiskOfferingCmd;1
|
||||
listDiskOfferings=org.apache.cloudstack.api.user.disk.command.ListDiskOfferingsCmd;15
|
||||
listDiskOfferings=org.apache.cloudstack.api.user.offering.command.ListDiskOfferingsCmd;15
|
||||
|
||||
#### vlan commands
|
||||
createVlanIpRange=com.cloud.api.commands.CreateVlanIpRangeCmd;1
|
||||
|
|
|
|||
|
|
@ -46,6 +46,7 @@ import org.apache.cloudstack.api.user.guest.command.ListGuestOsCategoriesCmd;
|
|||
import org.apache.cloudstack.api.user.guest.command.ListGuestOsCmd;
|
||||
import org.apache.cloudstack.api.user.iso.command.ListIsosCmd;
|
||||
import org.apache.cloudstack.api.user.job.command.ListAsyncJobsCmd;
|
||||
import org.apache.cloudstack.api.user.offering.command.ListDiskOfferingsCmd;
|
||||
import org.apache.cloudstack.api.user.serviceoffering.command.ListServiceOfferingsCmd;
|
||||
import org.apache.cloudstack.api.user.ssh.command.DeleteSSHKeyPairCmd;
|
||||
import org.apache.cloudstack.api.user.ssh.command.RegisterSSHKeyPairCmd;
|
||||
|
|
@ -77,7 +78,6 @@ import org.apache.cloudstack.api.user.configuration.command.ListCapabilitiesCmd;
|
|||
import com.cloud.api.commands.ListCapacityCmd;
|
||||
import com.cloud.api.commands.ListCfgsByCmd;
|
||||
import com.cloud.api.commands.ListClustersCmd;
|
||||
import org.apache.cloudstack.api.user.disk.command.ListDiskOfferingsCmd;
|
||||
import org.apache.cloudstack.api.user.event.command.ListEventsCmd;
|
||||
import com.cloud.api.commands.ListHostsCmd;
|
||||
import com.cloud.api.commands.ListPodsByCmd;
|
||||
|
|
|
|||
Loading…
Reference in New Issue