mirror of https://github.com/apache/cloudstack.git
api_refactor: refactor account apis
- Fix refactored apis, fix mappings in commands*.in - Fix comments etc. Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
This commit is contained in:
parent
46353e0916
commit
9a0df30766
|
|
@ -22,7 +22,7 @@ import java.util.Map;
|
|||
import com.cloud.acl.ControlledEntity;
|
||||
import com.cloud.acl.SecurityChecker.AccessType;
|
||||
import com.cloud.api.commands.DeleteUserCmd;
|
||||
import com.cloud.api.commands.ListAccountsCmd;
|
||||
import org.apache.cloudstack.api.user.account.command.ListAccountsCmd;
|
||||
import com.cloud.api.commands.ListUsersCmd;
|
||||
import com.cloud.api.commands.RegisterCmd;
|
||||
import com.cloud.api.commands.UpdateAccountCmd;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
@ -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;
|
||||
|
||||
|
|
@ -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.user.account.command;
|
||||
|
||||
import org.apache.log4j.Logger;
|
||||
|
||||
|
|
@ -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.user.account.command;
|
||||
|
||||
import org.apache.cloudstack.api.user.project.command.DeleteProjectCmd;
|
||||
import org.apache.log4j.Logger;
|
||||
|
|
@ -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.user.account.command;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
|
@ -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.user.account.command;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
|
@ -19,6 +19,7 @@ package src.com.cloud.api.commands.test;
|
|||
import junit.framework.Assert;
|
||||
import junit.framework.TestCase;
|
||||
|
||||
import org.apache.cloudstack.api.user.account.command.AddAccountToProjectCmd;
|
||||
import org.junit.Before;
|
||||
import org.junit.Rule;
|
||||
import org.junit.Test;
|
||||
|
|
@ -29,7 +30,6 @@ import com.cloud.exception.InvalidParameterValueException;
|
|||
import com.cloud.projects.Project;
|
||||
import com.cloud.projects.ProjectService;
|
||||
import com.cloud.user.Account;
|
||||
import com.cloud.api.commands.AddAccountToProjectCmd;
|
||||
|
||||
public class AddAccountToProjectCmdTest extends TestCase {
|
||||
|
||||
|
|
|
|||
|
|
@ -22,10 +22,10 @@
|
|||
createAccount=com.cloud.api.commands.CreateAccountCmd;3
|
||||
deleteAccount=com.cloud.api.commands.DeleteAccountCmd;3
|
||||
updateAccount=com.cloud.api.commands.UpdateAccountCmd;3
|
||||
disableAccount=com.cloud.api.commands.DisableAccountCmd;7
|
||||
enableAccount=com.cloud.api.commands.EnableAccountCmd;7
|
||||
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
|
||||
listAccounts=com.cloud.api.commands.ListAccountsCmd;15
|
||||
listAccounts=org.apache.cloudstack.api.user.account.command.ListAccountsCmd;15
|
||||
markDefaultZoneForAccount=com.cloud.api.commands.MarkDefaultZoneForAccountCmd;1
|
||||
|
||||
#### User commands
|
||||
|
|
@ -328,9 +328,9 @@ updateProject=org.apache.cloudstack.api.user.project.command.UpdateProjectCmd;15
|
|||
activateProject=org.apache.cloudstack.api.user.project.command.ActivateProjectCmd;15
|
||||
suspendProject=org.apache.cloudstack.api.user.project.command.SuspendProjectCmd;15
|
||||
listProjects=org.apache.cloudstack.api.user.project.command.ListProjectsCmd;15
|
||||
addAccountToProject=com.cloud.api.commands.AddAccountToProjectCmd;15
|
||||
deleteAccountFromProject=com.cloud.api.commands.DeleteAccountFromProjectCmd;15
|
||||
listProjectAccounts=com.cloud.api.commands.ListProjectAccountsCmd;15
|
||||
addAccountToProject=org.apache.cloudstack.api.user.account.command.AddAccountToProjectCmd;15
|
||||
deleteAccountFromProject=org.apache.cloudstack.api.user.account.command.DeleteAccountFromProjectCmd;15
|
||||
listProjectAccounts=org.apache.cloudstack.api.user.account.command.ListProjectAccountsCmd;15
|
||||
listProjectInvitations=org.apache.cloudstack.api.user.project.command.ListProjectInvitationsCmd;15
|
||||
updateProjectInvitation=org.apache.cloudstack.api.user.project.command.UpdateProjectInvitationCmd;15
|
||||
deleteProjectInvitation=org.apache.cloudstack.api.user.project.command.DeleteProjectInvitationCmd;15
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ import com.cloud.acl.SecurityChecker;
|
|||
import com.cloud.acl.SecurityChecker.AccessType;
|
||||
import com.cloud.api.ApiDBUtils;
|
||||
import com.cloud.api.commands.DeleteUserCmd;
|
||||
import com.cloud.api.commands.ListAccountsCmd;
|
||||
import org.apache.cloudstack.api.user.account.command.ListAccountsCmd;
|
||||
import com.cloud.api.commands.ListUsersCmd;
|
||||
import com.cloud.api.commands.RegisterCmd;
|
||||
import com.cloud.api.commands.UpdateAccountCmd;
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ import javax.naming.ConfigurationException;
|
|||
import com.cloud.acl.ControlledEntity;
|
||||
import com.cloud.acl.SecurityChecker.AccessType;
|
||||
import com.cloud.api.commands.DeleteUserCmd;
|
||||
import com.cloud.api.commands.ListAccountsCmd;
|
||||
import org.apache.cloudstack.api.user.account.command.ListAccountsCmd;
|
||||
import com.cloud.api.commands.ListUsersCmd;
|
||||
import com.cloud.api.commands.RegisterCmd;
|
||||
import com.cloud.api.commands.UpdateAccountCmd;
|
||||
|
|
|
|||
Loading…
Reference in New Issue