mirror of
https://github.com/apache/cloudstack.git
synced 2025-12-15 18:12:35 +01:00
Fixing the issues in loading the beans
This commit is contained in:
parent
337e33a014
commit
b7c3411be9
@ -27,6 +27,6 @@
|
|||||||
http://www.springframework.org/schema/context/spring-context-3.0.xsd"
|
http://www.springframework.org/schema/context/spring-context-3.0.xsd"
|
||||||
>
|
>
|
||||||
|
|
||||||
<bean id="roleBasedEntityAccessChecker" class="org.apache.cloudstack.acl.entity.RoleBasedEntityAccessChecker" />
|
<bean id="RoleBasedEntityAccessChecker" class="org.apache.cloudstack.acl.entity.RoleBasedEntityAccessChecker" />
|
||||||
|
|
||||||
</beans>
|
</beans>
|
||||||
|
|||||||
@ -28,7 +28,6 @@ import javax.persistence.Id;
|
|||||||
import javax.persistence.Table;
|
import javax.persistence.Table;
|
||||||
|
|
||||||
import org.apache.cloudstack.acl.AclEntityType;
|
import org.apache.cloudstack.acl.AclEntityType;
|
||||||
import org.apache.cloudstack.acl.PermissionScope;
|
|
||||||
import org.apache.cloudstack.acl.SecurityChecker.AccessType;
|
import org.apache.cloudstack.acl.SecurityChecker.AccessType;
|
||||||
|
|
||||||
import com.cloud.utils.db.GenericDao;
|
import com.cloud.utils.db.GenericDao;
|
||||||
@ -98,22 +97,6 @@ public class AclGroupJoinVO extends BaseViewVO implements ControlledViewEntity {
|
|||||||
@Column(name = "member_account_name")
|
@Column(name = "member_account_name")
|
||||||
private String memberAccountName;
|
private String memberAccountName;
|
||||||
|
|
||||||
@Column(name = "permission_action")
|
|
||||||
private String permissionAction;
|
|
||||||
|
|
||||||
@Column(name = "permission_entity_type")
|
|
||||||
private String permissionEntityType;
|
|
||||||
|
|
||||||
@Column(name = "permission_scope_id")
|
|
||||||
private long permissionScopeId;
|
|
||||||
|
|
||||||
@Column(name = "permission_scope_type")
|
|
||||||
@Enumerated(value = EnumType.STRING)
|
|
||||||
PermissionScope permissionScope;
|
|
||||||
|
|
||||||
@Column(name = "permission_access_type")
|
|
||||||
@Enumerated(value = EnumType.STRING)
|
|
||||||
AccessType permissionAccessType;
|
|
||||||
|
|
||||||
public AclGroupJoinVO() {
|
public AclGroupJoinVO() {
|
||||||
}
|
}
|
||||||
@ -222,25 +205,6 @@ public class AclGroupJoinVO extends BaseViewVO implements ControlledViewEntity {
|
|||||||
return memberAccountName;
|
return memberAccountName;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getPermissionAction() {
|
|
||||||
return permissionAction;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPermissionEntityType() {
|
|
||||||
return permissionEntityType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public long getPermissionScopeId() {
|
|
||||||
return permissionScopeId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public PermissionScope getPermissionScope() {
|
|
||||||
return permissionScope;
|
|
||||||
}
|
|
||||||
|
|
||||||
public AccessType getPermissionAccessType() {
|
|
||||||
return permissionAccessType;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public AclEntityType getEntityType() {
|
public AclEntityType getEntityType() {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user