diff --git a/api/src/com/cloud/server/ManagementService.java b/api/src/com/cloud/server/ManagementService.java index 2b2239798eb..e9fcf65b66f 100755 --- a/api/src/com/cloud/server/ManagementService.java +++ b/api/src/com/cloud/server/ManagementService.java @@ -24,6 +24,7 @@ import java.util.Set; import com.cloud.alert.Alert; import org.apache.cloudstack.api.ServerApiException; +import org.apache.cloudstack.api.user.datacenter.command.ListCapabilitiesCmd; import org.apache.cloudstack.api.user.guest.command.ListGuestOsCmd; import org.apache.cloudstack.api.user.offering.command.ListDiskOfferingsCmd; import org.apache.cloudstack.api.user.offering.command.ListServiceOfferingsCmd; @@ -36,7 +37,6 @@ import org.apache.cloudstack.api.user.template.command.UpdateTemplateCmd; import org.apache.cloudstack.api.user.vm.command.GetVMPasswordCmd; import com.cloud.api.commands.ListAlertsCmd; import org.apache.cloudstack.api.user.job.command.ListAsyncJobsCmd; -import org.apache.cloudstack.api.user.configuration.command.ListCapabilitiesCmd; import com.cloud.api.commands.ListCapacityCmd; import com.cloud.api.commands.ListCfgsByCmd; import com.cloud.api.commands.ListClustersCmd; diff --git a/api/src/org/apache/cloudstack/api/user/configuration/command/ListCapabilitiesCmd.java b/api/src/org/apache/cloudstack/api/user/datacenter/command/ListCapabilitiesCmd.java similarity index 97% rename from api/src/org/apache/cloudstack/api/user/configuration/command/ListCapabilitiesCmd.java rename to api/src/org/apache/cloudstack/api/user/datacenter/command/ListCapabilitiesCmd.java index 22541a3f644..aa926c26fea 100644 --- a/api/src/org/apache/cloudstack/api/user/configuration/command/ListCapabilitiesCmd.java +++ b/api/src/org/apache/cloudstack/api/user/datacenter/command/ListCapabilitiesCmd.java @@ -14,7 +14,7 @@ // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. -package org.apache.cloudstack.api.user.configuration.command; +package org.apache.cloudstack.api.user.datacenter.command; import java.util.Map; diff --git a/client/tomcatconf/commands.properties.in b/client/tomcatconf/commands.properties.in index f778ddd709a..dd0c7fa33d4 100755 --- a/client/tomcatconf/commands.properties.in +++ b/client/tomcatconf/commands.properties.in @@ -199,7 +199,7 @@ updateConfiguration=com.cloud.api.commands.UpdateCfgCmd;1 listConfigurations=com.cloud.api.commands.ListCfgsByCmd;1 ldapConfig=com.cloud.api.commands.LDAPConfigCmd;1 ldapRemove=com.cloud.api.commands.LDAPRemoveCmd;1 -listCapabilities=org.apache.cloudstack.api.user.configuration.command.ListCapabilitiesCmd;15 +listCapabilities=org.apache.cloudstack.api.user.datacenter.command.ListCapabilitiesCmd;15 #### pod commands createPod=com.cloud.api.commands.CreatePodCmd;1 diff --git a/server/src/com/cloud/server/ManagementServerImpl.java b/server/src/com/cloud/server/ManagementServerImpl.java index 61950d64b1b..2f8575fca26 100755 --- a/server/src/com/cloud/server/ManagementServerImpl.java +++ b/server/src/com/cloud/server/ManagementServerImpl.java @@ -42,6 +42,7 @@ import java.util.concurrent.TimeUnit; import javax.crypto.Mac; import javax.crypto.spec.SecretKeySpec; +import org.apache.cloudstack.api.user.datacenter.command.ListCapabilitiesCmd; 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; @@ -74,7 +75,6 @@ import com.cloud.api.commands.DestroySystemVmCmd; import com.cloud.api.commands.ExtractVolumeCmd; import org.apache.cloudstack.api.user.vm.command.GetVMPasswordCmd; import com.cloud.api.commands.ListAlertsCmd; -import org.apache.cloudstack.api.user.configuration.command.ListCapabilitiesCmd; import com.cloud.api.commands.ListCapacityCmd; import com.cloud.api.commands.ListCfgsByCmd; import com.cloud.api.commands.ListClustersCmd;