Skip to content

Commit 6ceb401

Browse files
committed
Fix imports
1 parent bcd42c0 commit 6ceb401

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

x-pack/plugin/core/src/test/java/org/elasticsearch/xpack/core/security/authz/permission/LimitedRoleTests.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,12 @@
3232
import org.elasticsearch.xpack.core.security.authz.RoleDescriptor.IndicesPrivileges;
3333
import org.elasticsearch.xpack.core.security.authz.RoleDescriptorsIntersection;
3434
import org.elasticsearch.xpack.core.security.authz.accesscontrol.IndicesAccessControl;
35-
import org.elasticsearch.xpack.core.security.authz.privilege.*;
35+
import org.elasticsearch.xpack.core.security.authz.privilege.ApplicationPrivilege;
36+
import org.elasticsearch.xpack.core.security.authz.privilege.ApplicationPrivilegeDescriptor;
37+
import org.elasticsearch.xpack.core.security.authz.privilege.ApplicationPrivilegeTests;
38+
import org.elasticsearch.xpack.core.security.authz.privilege.ClusterPrivilegeResolver;
39+
import org.elasticsearch.xpack.core.security.authz.privilege.IndexComponentSelectorPrivilege;
40+
import org.elasticsearch.xpack.core.security.authz.privilege.IndexPrivilege;
3641
import org.elasticsearch.xpack.core.security.authz.restriction.Workflow;
3742
import org.elasticsearch.xpack.core.security.authz.restriction.WorkflowResolver;
3843
import org.elasticsearch.xpack.core.security.support.Automatons;

x-pack/plugin/security/src/test/java/org/elasticsearch/xpack/security/authz/RBACEngineTests.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,14 @@
9090
import org.elasticsearch.xpack.core.security.authz.permission.Role;
9191
import org.elasticsearch.xpack.core.security.authz.permission.RunAsPermission;
9292
import org.elasticsearch.xpack.core.security.authz.permission.SimpleRole;
93-
import org.elasticsearch.xpack.core.security.authz.privilege.*;
93+
import org.elasticsearch.xpack.core.security.authz.privilege.ApplicationPrivilege;
94+
import org.elasticsearch.xpack.core.security.authz.privilege.ApplicationPrivilegeDescriptor;
95+
import org.elasticsearch.xpack.core.security.authz.privilege.ApplicationPrivilegeTests;
96+
import org.elasticsearch.xpack.core.security.authz.privilege.ClusterPrivilegeResolver;
9497
import org.elasticsearch.xpack.core.security.authz.privilege.ConfigurableClusterPrivileges.ManageApplicationPrivileges;
98+
import org.elasticsearch.xpack.core.security.authz.privilege.IndexComponentSelectorPrivilege;
99+
import org.elasticsearch.xpack.core.security.authz.privilege.IndexPrivilege;
100+
import org.elasticsearch.xpack.core.security.authz.privilege.Privilege;
95101
import org.elasticsearch.xpack.core.security.authz.store.ReservedRolesStore;
96102
import org.elasticsearch.xpack.core.security.support.Automatons;
97103
import org.elasticsearch.xpack.core.security.test.TestRestrictedIndices;

0 commit comments

Comments
 (0)