Updated Branches: refs/heads/vim51_win8 17488fac3 -> 7d2ebc9fc
Add some comments on some code source to give credit to vmware sample code. Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/7d2ebc9f Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/7d2ebc9f Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/7d2ebc9f Branch: refs/heads/vim51_win8 Commit: 7d2ebc9fc3587baf4f984c995e45195d989387a0 Parents: 17488fa Author: Min Chen <[email protected]> Authored: Wed Feb 27 13:46:43 2013 -0800 Committer: Min Chen <[email protected]> Committed: Wed Feb 27 13:46:43 2013 -0800 ---------------------------------------------------------------------- .../UserVmCloneSettingDaoTestConfiguration.java | 2 +- .../cloud/hypervisor/vmware/util/VmwareClient.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/7d2ebc9f/server/test/com/cloud/vm/dao/UserVmCloneSettingDaoTestConfiguration.java ---------------------------------------------------------------------- diff --git a/server/test/com/cloud/vm/dao/UserVmCloneSettingDaoTestConfiguration.java b/server/test/com/cloud/vm/dao/UserVmCloneSettingDaoTestConfiguration.java index 8bb2a4d..6e22e17 100644 --- a/server/test/com/cloud/vm/dao/UserVmCloneSettingDaoTestConfiguration.java +++ b/server/test/com/cloud/vm/dao/UserVmCloneSettingDaoTestConfiguration.java @@ -15,7 +15,7 @@ // specific language governing permissions and limitations // under the License. -package com.cloud.storage.dao; +package com.cloud.vm.dao; import java.io.IOException; http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/7d2ebc9f/vmware-base/src/com/cloud/hypervisor/vmware/util/VmwareClient.java ---------------------------------------------------------------------- diff --git a/vmware-base/src/com/cloud/hypervisor/vmware/util/VmwareClient.java b/vmware-base/src/com/cloud/hypervisor/vmware/util/VmwareClient.java index f29a8c0..21c649a 100644 --- a/vmware-base/src/com/cloud/hypervisor/vmware/util/VmwareClient.java +++ b/vmware-base/src/com/cloud/hypervisor/vmware/util/VmwareClient.java @@ -53,7 +53,7 @@ import com.vmware.vim25.ObjectContent; /** * A wrapper class to handle Vmware vsphere connection and disconnection. * - * @author minc + * DISCLAIMER: This code is partly copied from sample codes that come along with Vmware web service 5.1 SDK. * */ public class VmwareClient { @@ -276,7 +276,7 @@ public class VmwareClient { * properties to check are reached Destroys the ObjectFilter when done. * * @param objmor - * MOR of the Object to wait for</param> + * MOR of the Object to wait for * @param filterProps * Properties list to filter * @param endWaitProps
