cloudstack/server/src/com/cloud/api/commands
Kris McQueen b40f496f80 Refactoring listTemplatePermissions and listIsoPermissions to new API framework. 2010-09-08 18:56:27 -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 1) Fixed AddHost, AddSecondaryStorage, UpdateIso, UpdateTemplate to return correct command name. 2010-08-18 21:03:31 -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 1) Fixed AddHost, AddSecondaryStorage, UpdateIso, UpdateTemplate to return correct command name. 2010-08-18 21:03:31 -07:00
AssignPortForwardingServiceCmd.java Branch 2.1.refactor committed 2010-08-11 09:13:42 -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 Branch 2.1.refactor committed 2010-08-11 09:13:42 -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 Add snapshot manager to the list of managers that can be invoked through the API. This prepares the way for refactoring createSnapshot, but since the method is an async create that also needs to create a policy first and generally does not follow any other patters, I'll do this one last. 2010-08-18 19:08:23 -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 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
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 Branch 2.1.refactor committed 2010-08-11 09:13:42 -07:00
DeleteHostCmd.java API refactor 2010-08-18 11:24:29 -07:00
DeleteIPForwardingRuleCmd.java Branch 2.1.refactor committed 2010-08-11 09:13:42 -07:00
DeleteIsoCmd.java 1) Refactored DeleteIsoCmd api. 2010-09-02 18:52:43 -07:00
DeleteLoadBalancerRuleCmd.java Refactored DeleteLoadBalancerRule/UpdateLoadBalancerRule api commands. 2010-09-08 15:04:26 -07:00
DeleteNetworkGroupCmd.java Branch 2.1.refactor committed 2010-08-11 09:13:42 -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 Branch 2.1.refactor committed 2010-08-11 09:13:42 -07:00
DeletePortForwardingServiceRuleCmd.java Further refactoring the cmd 2010-08-27 10:27:00 -07:00
DeleteServiceOfferingCmd.java Refactoring deleteServiceOffering cmd 2010-08-19 12:15:26 -07:00
DeleteSnapshotCmd.java Refactoring the delete snapshot command. This has a lot of spaghetti calls, trying my best to make it works. Hopefully it all does, on the 1st pass 2010-08-27 11:26:14 -07:00
DeleteSnapshotPoliciesCmd.java Refactoring the snapshot policies cmd 2010-08-26 17:17:30 -07:00
DeleteTemplateCmd.java Refactored the delete template command 2010-08-26 16:15:42 -07:00
DeleteUserCmd.java Refactored the delete user cmd 2010-08-26 17:58:53 -07:00
DeleteVlanIpRangeCmd.java Refactoring the delete vlan ip range cmd 2010-08-25 10:59:14 -07:00
DeleteVolumeCmd.java Some more refactoring 2010-08-26 15:33:12 -07:00
DeleteZoneCmd.java Refactoring the delete zone cmd 2010-08-25 11:16:07 -07:00
DeployVMCmd.java Committing Kris' big merge 2010-08-11 16:02:57 -07:00
DestroyConsoleProxyCmd.java Refactored the destroy console proxy command 2010-08-26 11:10:29 -07:00
DestroyVMCmd.java Refactored the destroy vm command 2010-08-26 13:37:57 -07:00
DetachIsoCmd.java Refactored detach iso command 2010-08-25 15:33:06 -07:00
DetachVolumeCmd.java Used the wrong base cmd 2010-08-25 14:54:38 -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 Branch 2.1.refactor committed 2010-08-11 09:13:42 -07:00
DisassociateIPAddrCmd.java Moving the disassoc logic to network manager 2010-08-30 10:50:27 -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 Refactor api deletePool, addHost, addSecondaryStorage 2010-08-18 15:41:16 -07:00
GetCloudIdentifierCmd.java Api refactoring for following commands: updateAccount, updateTemplate/Iso, UpdateDomain, EnableUser/Account, DeletePod 2010-08-15 21:01:24 -07:00
ListAccountsCmd.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
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 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
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 Refactor listHosts API to new framework. 2010-08-30 18:02:54 -07:00
ListIsoPermissionsCmd.java Refactoring listTemplatePermissions and listIsoPermissions to new API framework. 2010-09-08 18:56:27 -07:00
ListIsosCmd.java Refactoring listTemplates and listIsos to new API framework. 2010-08-31 14:50:30 -07:00
ListLoadBalancerRuleInstancesCmd.java Refactoring listLoadBalancerRuleInstances to new API framework. 2010-08-31 18:59:20 -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 Refactor listPortForwardingRules to new API framework. Clean up imports. 2010-09-01 15:00:22 -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 Refactor listRouters to new API framework. 2010-09-07 16:25:26 -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 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
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 Branch 2.1.refactor committed 2010-08-11 09:13:42 -07:00
ListVMsCmd.java Branch 2.1.refactor committed 2010-08-11 09:13:42 -07:00
ListVlanIpRangesCmd.java Branch 2.1.refactor committed 2010-08-11 09:13:42 -07:00
ListVolumesCmd.java Branch 2.1.refactor committed 2010-08-11 09:13:42 -07:00
ListZonesByCmd.java Branch 2.1.refactor committed 2010-08-11 09:13:42 -07:00
LockAccountCmd.java Refactoring the lockAccount cmd 2010-08-20 14:48:35 -07:00
LockUserCmd.java Refactoring the lockUser cmd 2010-08-20 14:20:27 -07:00
PrepareForMaintenanceCmd.java Refactored AttachVolume/PrepareForMaintenance/CancelMaintenance/PreparePrimaryStorageForMaintenance/CancelPrimaryStorageMaintenance commands. 2010-09-08 12:18:46 -07:00
PreparePrimaryStorageForMaintenanceCmd.java Refactored AttachVolume/PrepareForMaintenance/CancelMaintenance/PreparePrimaryStorageForMaintenance/CancelPrimaryStorageMaintenance commands. 2010-09-08 12:18:46 -07:00
QueryAsyncJobResultCmd.java Branch 2.1.refactor committed 2010-08-11 09:13:42 -07:00
RebootRouterCmd.java Refactored copyIso/copyTemplate/attachIso/startRouter/stopRouter/rebootRouter commands 2010-09-07 18:53:04 -07:00
RebootSystemVmCmd.java Refactoring some more system vm commands 2010-08-20 12:19:37 -07:00
RebootVMCmd.java Refactoring the rebootvm cmd 2010-08-20 11:48:24 -07:00
ReconnectHostCmd.java Refactored the reconnectHost command 2010-08-20 11:14:48 -07:00
RecoverVMCmd.java Refactoring another bunch of commands for vms 2010-08-20 10:38:44 -07:00
RegisterCmd.java Refactoring the register command 2010-08-20 09:59:06 -07:00
RegisterIsoCmd.java Refactoring register commands for template and iso 2010-08-19 17:59:56 -07:00
RegisterTemplateCmd.java Incremental checkin 2010-08-19 16:40:41 -07:00
RemoveFromLoadBalancerRuleCmd.java Refactoring RemoveFromLoadBalancerRuleCmd 2010-08-19 11:59:56 -07:00
RemovePortForwardingServiceCmd.java Refactoring the removePortForwardingService cmd 2010-08-19 10:55:58 -07:00
ResetVMPasswordCmd.java Refactoring the resetVmPassword command 2010-08-19 10:12:38 -07:00
RevokeNetworkGroupIngressCmd.java Refactoring network ingress group command 2010-08-18 17:52:55 -07:00
StartRouterCmd.java Refactored copyIso/copyTemplate/attachIso/startRouter/stopRouter/rebootRouter commands 2010-09-07 18:53:04 -07:00
StartSystemVMCmd.java Refactoring startsystemvm cmd 2010-08-18 16:14:31 -07:00
StartVMCmd.java Refactoring startsystemvm cmd 2010-08-18 16:14:31 -07:00
StopRouterCmd.java Refactored copyIso/copyTemplate/attachIso/startRouter/stopRouter/rebootRouter commands 2010-09-07 18:53:04 -07:00
StopSystemVmCmd.java Refactoring some more system vm commands 2010-08-20 12:19:37 -07:00
StopVMCmd.java Refactoring the startvm command 2010-08-18 14:01:15 -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 Branch 2.1.refactor committed 2010-08-11 09:13:42 -07:00
UpdateIsoCmd.java 1) Fixed AddHost, AddSecondaryStorage, UpdateIso, UpdateTemplate to return correct command name. 2010-08-18 21:03:31 -07:00
UpdateIsoPermissionsCmd.java Removing unused imports 2010-08-17 15:19:09 -07:00
UpdateLoadBalancerRuleCmd.java Refactored DeleteLoadBalancerRule/UpdateLoadBalancerRule api commands. 2010-09-08 15:04:26 -07:00
UpdatePodCmd.java Refactoring updatePod command 2010-08-17 17:55:38 -07:00
UpdateResourceLimitCmd.java Refactoring the updateResourceLimits code, moving all logic to agent manager, updating the enum with a new manager type for reflection 2010-08-18 10:32:21 -07:00
UpdateServiceOfferingCmd.java Refactoring update service offering cmd 2010-08-17 17:21:04 -07:00
UpdateStoragePoolCmd.java Called the wrong method, fixing the same 2010-08-17 16:11:44 -07:00
UpdateTemplateCmd.java Refactor api deletePool, addHost, addSecondaryStorage 2010-08-18 15:41:16 -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 Adding the updatetemplateoriso command refactoring, 2010-08-17 14:14:16 -07:00
UpdateTemplatePermissionsCmd.java Refactoring permissions commands 2010-08-17 15:18:00 -07:00
UpdateUserCmd.java Changing the manager 2010-08-17 12:22:26 -07:00
UpdateVMCmd.java Refactoring update user command 2010-08-17 12:12:07 -07:00
UpdateZoneCmd.java Refactoring the updateZone command 2010-08-12 10:59:59 -07:00
UpgradeVMCmd.java Refactoring some more vm commands, as well as refactoring the account and user validation into a method. Please use the same for future validation calls 2010-08-17 11:28:23 -07:00