api_refactor: move admin level account apis to admin pkg

Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
This commit is contained in:
Rohit Yadav 2012-12-06 10:25:20 -08:00
parent 2a7fa674c7
commit 1b1d91dc4f
7 changed files with 9 additions and 9 deletions

View File

@ -26,7 +26,7 @@ import org.apache.cloudstack.api.admin.user.command.UpdateUserCmd;
import org.apache.cloudstack.api.user.account.command.ListAccountsCmd;
import org.apache.cloudstack.api.admin.user.command.ListUsersCmd;
import com.cloud.api.commands.RegisterCmd;
import com.cloud.api.commands.UpdateAccountCmd;
import org.apache.cloudstack.api.admin.account.command.UpdateAccountCmd;
import com.cloud.domain.Domain;
import com.cloud.exception.ConcurrentOperationException;
import com.cloud.exception.PermissionDeniedException;

View File

@ -14,7 +14,7 @@
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package com.cloud.api.commands;
package org.apache.cloudstack.api.admin.account.command;
import java.util.Collection;
import java.util.Map;

View File

@ -14,7 +14,7 @@
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package com.cloud.api.commands;
package org.apache.cloudstack.api.admin.account.command;
import org.apache.log4j.Logger;

View File

@ -14,7 +14,7 @@
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package com.cloud.api.commands;
package org.apache.cloudstack.api.admin.account.command;
import java.util.Collection;
import java.util.Map;

View File

@ -19,9 +19,9 @@
### Please standardize naming conventions to camel-case (even for acronyms).
### Account commands
createAccount=com.cloud.api.commands.CreateAccountCmd;3
deleteAccount=com.cloud.api.commands.DeleteAccountCmd;3
updateAccount=com.cloud.api.commands.UpdateAccountCmd;3
createAccount=org.apache.cloudstack.api.admin.account.command.CreateAccountCmd;3
deleteAccount=org.apache.cloudstack.api.admin.account.command.DeleteAccountCmd;3
updateAccount=org.apache.cloudstack.api.admin.account.command.UpdateAccountCmd;3
disableAccount=org.apache.cloudstack.api.admin.account.command.DisableAccountCmd;7
enableAccount=org.apache.cloudstack.api.admin.account.command.EnableAccountCmd;7
###lockAccount=com.cloud.api.commands.LockAccountCmd;7

View File

@ -48,7 +48,7 @@ import com.cloud.api.ApiDBUtils;
import org.apache.cloudstack.api.admin.user.command.DeleteUserCmd;
import org.apache.cloudstack.api.user.account.command.ListAccountsCmd;
import com.cloud.api.commands.RegisterCmd;
import com.cloud.api.commands.UpdateAccountCmd;
import org.apache.cloudstack.api.admin.account.command.UpdateAccountCmd;
import org.apache.cloudstack.api.admin.user.command.UpdateUserCmd;
import com.cloud.configuration.Config;
import com.cloud.configuration.ConfigurationManager;

View File

@ -28,7 +28,7 @@ import org.apache.cloudstack.api.admin.user.command.DeleteUserCmd;
import org.apache.cloudstack.api.admin.user.command.ListUsersCmd;
import org.apache.cloudstack.api.user.account.command.ListAccountsCmd;
import com.cloud.api.commands.RegisterCmd;
import com.cloud.api.commands.UpdateAccountCmd;
import org.apache.cloudstack.api.admin.account.command.UpdateAccountCmd;
import org.apache.cloudstack.api.admin.user.command.UpdateUserCmd;
import com.cloud.api.view.vo.ControlledViewEntity;
import com.cloud.domain.Domain;