Cleanup: removing unused class (#34541)
* Cleanup: removing unused field in other similar classes * Removing unused class
This commit is contained in:
parent
3954d041a0
commit
e0cab14c6e
|
@ -16,7 +16,6 @@ public class APMSystemUser extends User {
|
|||
public static final String NAME = UsernamesField.APM_NAME;
|
||||
public static final String ROLE_NAME = UsernamesField.APM_ROLE;
|
||||
public static final Version DEFINED_SINCE = Version.V_6_5_0;
|
||||
public static final BuiltinUserInfo USER_INFO = new BuiltinUserInfo(NAME, ROLE_NAME, DEFINED_SINCE);
|
||||
|
||||
public APMSystemUser(boolean enabled) {
|
||||
super(NAME, new String[]{ ROLE_NAME }, null, null, MetadataUtils.DEFAULT_RESERVED_METADATA, enabled);
|
||||
|
|
|
@ -16,7 +16,6 @@ public class BeatsSystemUser extends User {
|
|||
public static final String NAME = UsernamesField.BEATS_NAME;
|
||||
public static final String ROLE_NAME = UsernamesField.BEATS_ROLE;
|
||||
public static final Version DEFINED_SINCE = Version.V_6_3_0;
|
||||
public static final BuiltinUserInfo USER_INFO = new BuiltinUserInfo(NAME, ROLE_NAME, DEFINED_SINCE);
|
||||
|
||||
public BeatsSystemUser(boolean enabled) {
|
||||
super(NAME, new String[]{ ROLE_NAME }, null, null, MetadataUtils.DEFAULT_RESERVED_METADATA, enabled);
|
||||
|
|
|
@ -1,38 +0,0 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License;
|
||||
* you may not use this file except in compliance with the Elastic License.
|
||||
*/
|
||||
package org.elasticsearch.xpack.core.security.user;
|
||||
|
||||
import org.elasticsearch.Version;
|
||||
|
||||
/**
|
||||
* BuiltinUserInfo provides common user meta data for newly introduced pre defined System Users.
|
||||
*/
|
||||
public class BuiltinUserInfo {
|
||||
private final String name;
|
||||
private final String role;
|
||||
private final Version definedSince;
|
||||
|
||||
public BuiltinUserInfo(String name, String role, Version definedSince) {
|
||||
this.name = name;
|
||||
this.role = role;
|
||||
this.definedSince = definedSince;
|
||||
}
|
||||
|
||||
/** Get the builtin users name. */
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/** Get the builtin users default role name. */
|
||||
public String getRole() {
|
||||
return role;
|
||||
}
|
||||
|
||||
/** Get version the builtin user was introduced with. */
|
||||
public Version getDefinedSince() {
|
||||
return definedSince;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue