mirror of https://github.com/apache/cloudstack.git
api_refactor: refactor serviceoffering apis
- Fix refactored apis, mappings in commands*.in - Fix comments etc. Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
This commit is contained in:
parent
73d1099c76
commit
28df57ec75
|
|
@ -19,6 +19,7 @@ package com.cloud.api.commands;
|
|||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.apache.cloudstack.api.user.serviceoffering.command.ListServiceOfferingsCmd;
|
||||
import org.apache.log4j.Logger;
|
||||
|
||||
import org.apache.cloudstack.api.ApiConstants;
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ import com.cloud.api.commands.ListPodsByCmd;
|
|||
import com.cloud.api.commands.ListPublicIpAddressesCmd;
|
||||
import com.cloud.api.commands.ListRoutersCmd;
|
||||
import org.apache.cloudstack.api.user.ssh.command.ListSSHKeyPairsCmd;
|
||||
import com.cloud.api.commands.ListServiceOfferingsCmd;
|
||||
import org.apache.cloudstack.api.user.serviceoffering.command.ListServiceOfferingsCmd;
|
||||
import com.cloud.api.commands.ListStoragePoolsCmd;
|
||||
import com.cloud.api.commands.ListSystemVMsCmd;
|
||||
import org.apache.cloudstack.api.user.vmgroup.command.ListVMGroupsCmd;
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
// KIND, either express or implied. See the License for the
|
||||
// specific language governing permissions and limitations
|
||||
// under the License.
|
||||
package com.cloud.api.commands;
|
||||
package org.apache.cloudstack.api.user.serviceoffering.command;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
|
@ -110,7 +110,7 @@ listOsCategories=org.apache.cloudstack.api.user.guest.command.ListGuestOsCategor
|
|||
createServiceOffering=com.cloud.api.commands.CreateServiceOfferingCmd;1
|
||||
deleteServiceOffering=com.cloud.api.commands.DeleteServiceOfferingCmd;1
|
||||
updateServiceOffering=com.cloud.api.commands.UpdateServiceOfferingCmd;1
|
||||
listServiceOfferings=com.cloud.api.commands.ListServiceOfferingsCmd;15
|
||||
listServiceOfferings=org.apache.cloudstack.api.user.serviceoffering.command.ListServiceOfferingsCmd;15
|
||||
|
||||
#### disk offering commands
|
||||
createDiskOffering=com.cloud.api.commands.CreateDiskOfferingCmd;1
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ package com.cloud.api.commands;
|
|||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.apache.cloudstack.api.user.serviceoffering.command.ListServiceOfferingsCmd;
|
||||
import org.apache.log4j.Logger;
|
||||
|
||||
import org.apache.cloudstack.api.ApiConstants;
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ package com.cloud.api.commands;
|
|||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.apache.cloudstack.api.user.serviceoffering.command.ListServiceOfferingsCmd;
|
||||
import org.apache.log4j.Logger;
|
||||
|
||||
import org.apache.cloudstack.api.ApiConstants;
|
||||
|
|
|
|||
|
|
@ -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.serviceoffering.command.ListServiceOfferingsCmd;
|
||||
import org.apache.cloudstack.api.user.ssh.command.DeleteSSHKeyPairCmd;
|
||||
import org.apache.cloudstack.api.user.ssh.command.RegisterSSHKeyPairCmd;
|
||||
import org.apache.cloudstack.api.user.template.command.ListTemplatesCmd;
|
||||
|
|
@ -83,7 +84,6 @@ import com.cloud.api.commands.ListPodsByCmd;
|
|||
import com.cloud.api.commands.ListPublicIpAddressesCmd;
|
||||
import com.cloud.api.commands.ListRoutersCmd;
|
||||
import org.apache.cloudstack.api.user.ssh.command.ListSSHKeyPairsCmd;
|
||||
import com.cloud.api.commands.ListServiceOfferingsCmd;
|
||||
import com.cloud.api.commands.ListStoragePoolsCmd;
|
||||
import com.cloud.api.commands.ListSystemVMsCmd;
|
||||
import com.cloud.api.commands.ListVlanIpRangesCmd;
|
||||
|
|
|
|||
Loading…
Reference in New Issue