| .. |
|
.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
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 14:56:20 -07:00 |
|
CreateDomainCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 14:56:20 -07:00 |
|
CreateIPForwardingRuleCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 14:56:20 -07:00 |
|
CreateLoadBalancerRuleCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 14:56:20 -07:00 |
|
CreateNetworkGroupCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 14:56:20 -07:00 |
|
CreatePodCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 14:56:20 -07:00 |
|
CreatePortForwardingServiceCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 14:56:20 -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
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 15:48:52 -07:00 |
|
CreateTemplateCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 15:48:52 -07:00 |
|
CreateUserCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 15:48:52 -07:00 |
|
CreateVlanIpRangeCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 15:48:52 -07:00 |
|
CreateVolumeCmd.java
|
Adding more db operations to the API utils class and removing them from ManagementServer. These methods delegate directly to the DAO and are cluttering ManagementServer with cover methods specifically for the API. Now that these methods are being moved to the API Utils class, ManagementServer has a smaller, cleaner API than before.
|
2010-09-15 12:16:00 -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
|
Refactoring deletePreallocatedLun and registerPreallocatedLun to new API framework.
|
2010-09-14 17:53:12 -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
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 16:22:55 -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
|
Adding more db operations to the API utils class and removing them from ManagementServer. These methods delegate directly to the DAO and are cluttering ManagementServer with cover methods specifically for the API. Now that these methods are being moved to the API Utils class, ManagementServer has a smaller, cleaner API than before.
|
2010-09-15 12:16:00 -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
|
Adding more db operations to the API utils class and removing them from ManagementServer. These methods delegate directly to the DAO and are cluttering ManagementServer with cover methods specifically for the API. Now that these methods are being moved to the API Utils class, ManagementServer has a smaller, cleaner API than before.
|
2010-09-15 14:25:21 -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
|
Adding more db operations to the API utils class and removing them from ManagementServer. These methods delegate directly to the DAO and are cluttering ManagementServer with cover methods specifically for the API. Now that these methods are being moved to the API Utils class, ManagementServer has a smaller, cleaner API than before.
|
2010-09-15 14:25:21 -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 some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 14:56:20 -07:00 |
|
ListLoadBalancerRuleInstancesCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 16:22:55 -07:00 |
|
ListLoadBalancerRulesCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 16:22:55 -07:00 |
|
ListNetworkGroupsCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 16:22:55 -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
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 16:22:55 -07:00 |
|
ListPortForwardingServicesByVmCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 16:22:55 -07:00 |
|
ListPortForwardingServicesCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 16:22:55 -07:00 |
|
ListPreallocatedLunsCmd.java
|
Refactoring listPreallocatedLuns to new API framework.
|
2010-09-02 15:23:15 -07:00 |
|
ListPublicIpAddressesCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 16:22:55 -07:00 |
|
ListRecurringSnapshotScheduleCmd.java
|
Refactoring listRecurringSnapshotSchedule to new API framework.
|
2010-09-07 14:56:50 -07:00 |
|
ListResourceLimitsCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 16:22:55 -07:00 |
|
ListRoutersCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 16:22:55 -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
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 16:22:55 -07:00 |
|
ListStoragePoolsAndHostsCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 16:22:55 -07:00 |
|
ListStoragePoolsCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 16:22:55 -07:00 |
|
ListSystemVMsCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 16:22:55 -07:00 |
|
ListTemplateOrIsoPermissionsCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 16:22:55 -07:00 |
|
ListTemplatePermissionsCmd.java
|
Refactoring listTemplatePermissions and listIsoPermissions to new API framework.
|
2010-09-08 18:56:27 -07:00 |
|
ListTemplatesCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 16:22:55 -07:00 |
|
ListUsersCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 16:22:55 -07:00 |
|
ListVMsCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 16:22:55 -07:00 |
|
ListVlanIpRangesCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 16:22:55 -07:00 |
|
ListVolumesCmd.java
|
Cleaning up some TODOs related to generating API command responses. Now that the ApiDBUtils class is available, setting things like domainNames is possible, so make use of that.
|
2010-09-15 16:22:55 -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
|
Refactoring deletePreallocatedLun and registerPreallocatedLun to new API framework.
|
2010-09-14 17:53:12 -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 |