cloudstack/server/src/com/cloud/api/commands
Kris McQueen 1b8965c202 fixing package name for pre-allocated lun api commands 2010-09-14 17:04:35 -07:00
..
.gitignore Refactoring the updateZone command 2010-08-12 10:59:59 -07:00
AddConfigCmd.java bug 5934: Checking if scmbug works : TEST 2010-08-18 17:42:12 -07:00
AddHostCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
AddHostOrStorageCmd.java 1) Fixed AddHost, AddSecondaryStorage, UpdateIso, UpdateTemplate to return correct command name. 2010-08-18 21:03:31 -07:00
AddSecondaryStorageCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
AssignPortForwardingServiceCmd.java Refactored AssignPortForwardingServiceCmd and DeletePortForwardingServiceCmd 2010-09-08 20:06:15 -07:00
AssignToLoadBalancerRuleCmd.java Moving createDiskOffering to configurationManager, make AssignToLoadBalancer async 2010-08-11 19:32:09 -07:00
AssociateIPAddrCmd.java Refactored associateIPAddress and updateHost commands. 2010-08-30 15:22:42 -07:00
AttachIsoCmd.java Refactored copyIso/copyTemplate/attachIso/startRouter/stopRouter/rebootRouter commands 2010-09-07 18:53:04 -07:00
AttachVolumeCmd.java Refactored AttachVolume/PrepareForMaintenance/CancelMaintenance/PreparePrimaryStorageForMaintenance/CancelPrimaryStorageMaintenance commands. 2010-09-08 12:18:46 -07:00
AuthorizeNetworkGroupIngressCmd.java Modified AuthorizeNetworkGroupIngress/DeleteNetworkGroupIngress to new api framework 2010-09-09 11:41:33 -07:00
CancelMaintenanceCmd.java Refactored AttachVolume/PrepareForMaintenance/CancelMaintenance/PreparePrimaryStorageForMaintenance/CancelPrimaryStorageMaintenance commands. 2010-09-08 12:18:46 -07:00
CancelPrimaryStorageMaintenanceCmd.java Refactored AttachVolume/PrepareForMaintenance/CancelMaintenance/PreparePrimaryStorageForMaintenance/CancelPrimaryStorageMaintenance commands. 2010-09-08 12:18:46 -07:00
CopyIsoCmd.java Refactored copyIso/copyTemplate/attachIso/startRouter/stopRouter/rebootRouter commands 2010-09-07 18:53:04 -07:00
CopyTemplateCmd.java Refactored copyIso/copyTemplate/attachIso/startRouter/stopRouter/rebootRouter commands 2010-09-07 18:53:04 -07:00
CreateDiskOfferingCmd.java Add response object interface. 2010-08-16 18:12:31 -07:00
CreateDomainCmd.java Add response object interface. 2010-08-16 18:12:31 -07:00
CreateIPForwardingRuleCmd.java Refactoring CreateIPForwardingRule and CreateLoadBalancerRule to new API framework 2010-08-17 19:07:00 -07:00
CreateLoadBalancerRuleCmd.java Refactoring CreateIPForwardingRule and CreateLoadBalancerRule to new API framework 2010-08-17 19:07:00 -07:00
CreateNetworkGroupCmd.java refactoring CreateNetworkGroup API command to new API framework 2010-08-17 19:07:00 -07:00
CreatePodCmd.java refactor createPod command to new API framework 2010-08-17 19:08:06 -07:00
CreatePortForwardingServiceCmd.java CreatePortForwardingService has been refactored to the new API framework. CreatePortForwardingServiceRule has also been refactored to the new API framework. This is the first async create command, so there are some changes for the framework with async creates. First, the annotation has a 'createMethod' element, the framework will invoke the createMethod synchronously, update the id of the created object, return the jobId and objectId, then queue the method. Once the method is invoked the actual business logic will kick in, for example 'createVolume' will create a database record for the volume, return the appropriate id, and then asynchronously create the volume in the correct storage pool. The requirement is now that both a create method and an implementation method will be required in the given manager for async create commands. 2010-08-18 19:06:12 -07:00
CreatePortForwardingServiceRuleCmd.java CreatePortForwardingService has been refactored to the new API framework. CreatePortForwardingServiceRule has also been refactored to the new API framework. This is the first async create command, so there are some changes for the framework with async creates. First, the annotation has a 'createMethod' element, the framework will invoke the createMethod synchronously, update the id of the created object, return the jobId and objectId, then queue the method. Once the method is invoked the actual business logic will kick in, for example 'createVolume' will create a database record for the volume, return the appropriate id, and then asynchronously create the volume in the correct storage pool. The requirement is now that both a create method and an implementation method will be required in the given manager for async create commands. 2010-08-18 19:06:12 -07:00
CreateServiceOfferingCmd.java Refactoring createServiceOffering to the new API framework, just a simple database create that has been moved from a management server proxy method that calls configuration manager directly into the configuration manager. 2010-08-18 19:06:12 -07:00
CreateSnapshotCmd.java Unexposed parameters can now be assigned to commands. This are for internal use of the command, and will be serialized/deserialized during execution/response phases, but will not be accepted as part of the API request. Also create a DB utility file for the API to use which delegates requests to the DAOs. Mostly this utility class will look up objects by ID, and it allows the removal of similar methods from ManagementServer, thereby reducing some of the clutter in ManagementServer. 2010-09-14 14:54:04 -07:00
CreateSnapshotPolicyCmd.java refactoring createSnapshotPolicy to new API framework...since this is a basic database create just move parameter validation to SnapshotManager and save the snapshot policy in the database 2010-08-18 19:08:23 -07:00
CreateStoragePoolCmd.java Refactoring createStoragePool to new API framework. The logic was always in StoragePoolManager, mostly removed the management server proxy method which called into StoragePoolManager. There is still an outstanding TODO for this API in terms of the response. Once the storage pool has been added, there is a query for the allocated bytes on the pool in order to return proper storage stats. Hooking into this query to get the right data needs to be done. 2010-08-18 19:11:01 -07:00
CreateTemplateCmd.java Finish refactoring createTemplate to new API framework. The executor and result object from old framework still need to be deleted, but this commit moves all the business logic to the manager with validation in the createPrivateTemplateRecord and creating a snapshot if necessary in createPrivateTemplate. Additionally, added a find method on the template dao to check if the template name is in use for the account (this is part of the validation). 2010-08-25 18:26:38 -07:00
CreateUserCmd.java Refactor createUser to new API framework. Consolidate the old createUser (GWT UI used this API) and createUserAPI into one createUser method since it's only called through integration API now. Return a UserAccount instead of a User in order to generate a response with all the information required. Also clean up some of the unused private template code from ManagementServer that was mistakenly left in from a previous refactor. 2010-08-25 18:26:38 -07:00
CreateVlanIpRangeCmd.java Refactored createVlanIpRange to new API framework. Moved logic to configuration manager, including the association of the ip addresses on a vlan with the account for which the vlan is being created. On deployVirtualMachine, this association might happen as well, and now mgmt server calls config manager. 2010-08-25 18:26:38 -07:00
CreateVolumeCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
CreateZoneCmd.java Refactoring createZone to new API framework. The logic was entirely delegated to configuration manager, so pushed the logic there and removed the proxy method from Management server. 2010-08-25 18:26:38 -07:00
DeleteDiskOfferingCmd.java Api refactoring for following commands: updateAccount, updateTemplate/Iso, UpdateDomain, EnableUser/Account, DeletePod 2010-08-15 21:01:24 -07:00
DeleteDomainCmd.java Refactoring deleteDomain to new API framework. Cleaning up some compilation errors that resulted from previous refactoring, namely there was a requirement to keep the old manager method around for createDiskOffering and createZone in order for the ConfigurationServer to work. 2010-09-14 15:36:12 -07:00
DeleteHostCmd.java API refactor 2010-08-18 11:24:29 -07:00
DeleteIPForwardingRuleCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
DeleteIsoCmd.java 1) Refactored DeleteIsoCmd api. 2010-09-02 18:52:43 -07:00
DeleteLoadBalancerRuleCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
DeleteNetworkGroupCmd.java Modified AuthorizeNetworkGroupIngress/DeleteNetworkGroupIngress to new api framework 2010-09-09 11:41:33 -07:00
DeletePodCmd.java Api refactoring for following commands: updateAccount, updateTemplate/Iso, UpdateDomain, EnableUser/Account, DeletePod 2010-08-15 21:01:24 -07:00
DeletePoolCmd.java Refactor api deletePool, addHost, addSecondaryStorage 2010-08-18 15:41:16 -07:00
DeletePortForwardingServiceCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
DeletePortForwardingServiceRuleCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
DeletePreallocatedLunCmd.java fixing package name for pre-allocated lun api commands 2010-09-14 17:04:35 -07:00
DeleteServiceOfferingCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
DeleteSnapshotCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
DeleteSnapshotPoliciesCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
DeleteTemplateCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
DeleteUserCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
DeleteVlanIpRangeCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
DeleteVolumeCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
DeleteZoneCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
DeployVMCmd.java Unexposed parameters can now be assigned to commands. This are for internal use of the command, and will be serialized/deserialized during execution/response phases, but will not be accepted as part of the API request. Also create a DB utility file for the API to use which delegates requests to the DAOs. Mostly this utility class will look up objects by ID, and it allows the removal of similar methods from ManagementServer, thereby reducing some of the clutter in ManagementServer. 2010-09-14 14:54:04 -07:00
DestroyConsoleProxyCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
DestroyVMCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
DetachIsoCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
DetachVolumeCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
DisableAccountCmd.java Api refactoring for following commands: updateAccount, updateTemplate/Iso, UpdateDomain, EnableUser/Account, DeletePod 2010-08-15 21:01:24 -07:00
DisableUserCmd.java Code cleanup - deleted code that was commented out and unused imports. 2010-09-09 16:07:29 -07:00
DisassociateIPAddrCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
EnableAccountCmd.java Api refactoring for following commands: updateAccount, updateTemplate/Iso, UpdateDomain, EnableUser/Account, DeletePod 2010-08-15 21:01:24 -07:00
EnableUserCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
GetCloudIdentifierCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
ListAccountsCmd.java working through some compilation errors that have arisen due to all the API refactoring... 2010-09-13 14:46:23 -07:00
ListAlertsCmd.java Refactoring listAlerts to the new API framework. This is now a BaseListCmd so it inherits keywork, page, and pagesize parameters. This also simplifies creating a Criteria object from the parameters, and then creating a search criteria from the criteria object. It's now one step...search criteria from the command itself. 2010-08-26 10:46:04 -07:00
ListAsyncJobsCmd.java Refactor listAsyncJobs to new API framework, consolidating parameter and criteria packing/unpacking into just command unpacking to simplify building the search criteria. 2010-08-30 16:18:39 -07:00
ListCapacityCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
ListCfgsByCmd.java Refactoring work on listCapacities, listConfigurations, listClusters, and listDiskOfferings commands. The work represents consolidating the Criteria object into just pulling the search criteria directly from the command. Also changed BaseListCmd to server the startIndex and pageSizeVal [includes default page size of 50] rather than have each search command compute these things. 2010-08-30 16:18:39 -07:00
ListClustersCmd.java Refactoring work on listCapacities, listConfigurations, listClusters, and listDiskOfferings commands. The work represents consolidating the Criteria object into just pulling the search criteria directly from the command. Also changed BaseListCmd to server the startIndex and pageSizeVal [includes default page size of 50] rather than have each search command compute these things. 2010-08-30 16:18:39 -07:00
ListDiskOfferingsCmd.java Refactoring work on listCapacities, listConfigurations, listClusters, and listDiskOfferings commands. The work represents consolidating the Criteria object into just pulling the search criteria directly from the command. Also changed BaseListCmd to server the startIndex and pageSizeVal [includes default page size of 50] rather than have each search command compute these things. 2010-08-30 16:18:39 -07:00
ListDomainChildrenCmd.java Refactor listDomainChildren API to new framework. 2010-08-30 16:18:40 -07:00
ListDomainsCmd.java Refactoring listDomains to the new API framework. The search criteria are now retrieved from the command itself rather than creating an intermediate Criteria object first. 2010-08-30 16:18:40 -07:00
ListEventsCmd.java Refactor listEvents API to new framework. 2010-08-30 16:18:40 -07:00
ListGuestOsCategoriesCmd.java Refactor listGuestOSCategories API to new framework. 2010-08-30 16:18:40 -07:00
ListGuestOsCmd.java Refactor listOSTypes API to new framework. 2010-08-30 16:18:40 -07:00
ListHostsCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
ListIsoPermissionsCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
ListIsosCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
ListLoadBalancerRuleInstancesCmd.java Refactor listVMs to new API framework. 2010-09-08 18:56:28 -07:00
ListLoadBalancerRulesCmd.java Refactoring listLoadBalancerRules to new API framework. 2010-09-01 10:10:48 -07:00
ListNetworkGroupsCmd.java Refactoring listNetworkGroups to new API framework. The search is done entirely within NetworkGroupManager, and this is one instances of a response with nested data (the ingress rules are nested within the groups). Some work will need to be done to serialize this response properly. 2010-09-01 14:05:39 -07:00
ListPodsByCmd.java Refactoring listPods to new API framework. 2010-09-01 14:17:00 -07:00
ListPortForwardingRulesCmd.java Unexposed parameters can now be assigned to commands. This are for internal use of the command, and will be serialized/deserialized during execution/response phases, but will not be accepted as part of the API request. Also create a DB utility file for the API to use which delegates requests to the DAOs. Mostly this utility class will look up objects by ID, and it allows the removal of similar methods from ManagementServer, thereby reducing some of the clutter in ManagementServer. 2010-09-14 14:54:04 -07:00
ListPortForwardingServiceRulesCmd.java Refactor listPortForwardingServiceRules to new API framework. 2010-09-01 16:19:11 -07:00
ListPortForwardingServicesByVmCmd.java Refactoring listPortForwardingServices to new API framework. Also forgot to return a response from listPortForwardingServicesByVM... 2010-09-02 15:03:06 -07:00
ListPortForwardingServicesCmd.java Refactoring listPortForwardingServices to new API framework. Also forgot to return a response from listPortForwardingServicesByVM... 2010-09-02 15:03:06 -07:00
ListPreallocatedLunsCmd.java Refactoring listPreallocatedLuns to new API framework. 2010-09-02 15:23:15 -07:00
ListPublicIpAddressesCmd.java Refactor listPublicIpAddresses to new API framework. 2010-09-02 16:23:29 -07:00
ListRecurringSnapshotScheduleCmd.java Refactoring listRecurringSnapshotSchedule to new API framework. 2010-09-07 14:56:50 -07:00
ListResourceLimitsCmd.java Finish refactoring listResourceLimits to new API framework. 2010-09-07 14:56:51 -07:00
ListRoutersCmd.java Removing listSecurityGroups and listNetworkGroups from the SecurityGroupDao and NetworkGroupDao since they weren't being called by anyone. 2010-09-13 15:59:52 -07:00
ListServiceOfferingsCmd.java Refactoring listServiceOfferings to new API framework. 2010-09-07 17:29:13 -07:00
ListSnapshotPoliciesCmd.java Refactor listSnapshotPolicies to new API framework. 2010-09-07 17:46:55 -07:00
ListSnapshotsCmd.java Refactor listSnapshots to new API framework. Also some minor code cleanup. 2010-09-07 18:41:52 -07:00
ListStoragePoolsAndHostsCmd.java Refactoring listStoragePoolsAndHosts command to new API framework. 2010-09-13 14:03:07 -07:00
ListStoragePoolsCmd.java Refactor listSystemVms to new API framework. Add missing licensing info to several API response files. Combine ConsoleProxy and SecondaryStorageVm interfaces into SystemVm interface to have common functions callable from one interface rather than having to cast overly much just to get the same data from the objects. This also includes a partial refactoring of ListStoragePoolsAndHosts command. 2010-09-08 18:56:27 -07:00
ListSystemVMsCmd.java Refactor listSystemVms to new API framework. Add missing licensing info to several API response files. Combine ConsoleProxy and SecondaryStorageVm interfaces into SystemVm interface to have common functions callable from one interface rather than having to cast overly much just to get the same data from the objects. This also includes a partial refactoring of ListStoragePoolsAndHosts command. 2010-09-08 18:56:27 -07:00
ListTemplateOrIsoPermissionsCmd.java Refactoring listTemplatePermissions and listIsoPermissions to new API framework. 2010-09-08 18:56:27 -07:00
ListTemplatePermissionsCmd.java Refactoring listTemplatePermissions and listIsoPermissions to new API framework. 2010-09-08 18:56:27 -07:00
ListTemplatesCmd.java Refactoring listTemplates and listIsos to new API framework. 2010-08-31 14:50:30 -07:00
ListUsersCmd.java Refactor listUsers to new API framework. 2010-09-08 18:56:28 -07:00
ListVMsCmd.java Unexposed parameters can now be assigned to commands. This are for internal use of the command, and will be serialized/deserialized during execution/response phases, but will not be accepted as part of the API request. Also create a DB utility file for the API to use which delegates requests to the DAOs. Mostly this utility class will look up objects by ID, and it allows the removal of similar methods from ManagementServer, thereby reducing some of the clutter in ManagementServer. 2010-09-14 14:54:04 -07:00
ListVlanIpRangesCmd.java Refactor listVlanIpRanges to new API framework. 2010-09-08 18:56:28 -07:00
ListVolumesCmd.java Refactor listVolumes to new API framework. 2010-09-08 18:56:28 -07:00
ListZonesByCmd.java Refactor listZones to new API framework. 2010-09-08 18:56:28 -07:00
LockAccountCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
LockUserCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
PrepareForMaintenanceCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
PreparePrimaryStorageForMaintenanceCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
QueryAsyncJobResultCmd.java Refactor queryAsyncJobResult to new API framework. 2010-09-08 19:24:35 -07:00
RebootRouterCmd.java Refactored copyIso/copyTemplate/attachIso/startRouter/stopRouter/rebootRouter commands 2010-09-07 18:53:04 -07:00
RebootSystemVmCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
RebootVMCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
ReconnectHostCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
RecoverVMCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
RegisterCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
RegisterIsoCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
RegisterPreallocatedLunCmd.java fixing package name for pre-allocated lun api commands 2010-09-14 17:04:35 -07:00
RegisterTemplateCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
RemoveFromLoadBalancerRuleCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
RemovePortForwardingServiceCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
ResetVMPasswordCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
RevokeNetworkGroupIngressCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
StartRouterCmd.java Refactored copyIso/copyTemplate/attachIso/startRouter/stopRouter/rebootRouter commands 2010-09-07 18:53:04 -07:00
StartSystemVMCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
StartVMCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
StopRouterCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
StopSystemVmCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
StopVMCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
UpdateAccountCmd.java Api refactoring for following commands: updateAccount, updateTemplate/Iso, UpdateDomain, EnableUser/Account, DeletePod 2010-08-15 21:01:24 -07:00
UpdateCfgCmd.java Api refactoring for following commands: updateAccount, updateTemplate/Iso, UpdateDomain, EnableUser/Account, DeletePod 2010-08-15 21:01:24 -07:00
UpdateDiskOfferingCmd.java Api refactoring for following commands: updateAccount, updateTemplate/Iso, UpdateDomain, EnableUser/Account, DeletePod 2010-08-15 21:01:24 -07:00
UpdateDomainCmd.java Api refactoring for following commands: updateAccount, updateTemplate/Iso, UpdateDomain, EnableUser/Account, DeletePod 2010-08-15 21:01:24 -07:00
UpdateHostCmd.java Refactored associateIPAddress and updateHost commands. 2010-08-30 15:22:42 -07:00
UpdateIPForwardingRuleCmd.java Refactored DeleteIPForwardingRule/UpdateIPForwardingRule commands to new api framework. 2010-09-08 19:03:42 -07:00
UpdateIsoCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
UpdateIsoPermissionsCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
UpdateLoadBalancerRuleCmd.java Refactored DeleteLoadBalancerRule/UpdateLoadBalancerRule api commands. 2010-09-08 15:04:26 -07:00
UpdatePodCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
UpdateResourceLimitCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
UpdateServiceOfferingCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
UpdateStoragePoolCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
UpdateTemplateCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
UpdateTemplateOrIsoCmd.java 1) Fixed AddHost, AddSecondaryStorage, UpdateIso, UpdateTemplate to return correct command name. 2010-08-18 21:03:31 -07:00
UpdateTemplateOrIsoPermissionsCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
UpdateTemplatePermissionsCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
UpdateUserCmd.java Code cleanup - deleted code that was commented out and unused imports. 2010-09-09 16:07:29 -07:00
UpdateVMCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
UpdateZoneCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00
UpgradeVMCmd.java cleaning up imports, fixing up some compilation problems related to API refactoring 2010-09-13 15:25:46 -07:00