Uses of Class
hudson.security.SecurityRealm
-
Packages that use SecurityRealm Package Description hudson hudson.security Security-related code.jenkins.model -
-
Uses of SecurityRealm in hudson
Methods in hudson that return types with arguments of type SecurityRealm Modifier and Type Method Description static List<Descriptor<SecurityRealm>>
Functions. getSecurityRealmDescriptors()
-
Uses of SecurityRealm in hudson.security
Subclasses of SecurityRealm in hudson.security Modifier and Type Class Description class
AbstractPasswordBasedSecurityRealm
Partial implementation ofSecurityRealm
for username/password based authentication.class
HudsonPrivateSecurityRealm
SecurityRealm
that performs authentication by looking upUser
.class
LegacySecurityRealm
SecurityRealm
that acceptsContainerAuthentication
object without any check (that is, by assuming that the such token is already authenticated by the container.)Fields in hudson.security declared as SecurityRealm Modifier and Type Field Description static SecurityRealm
SecurityRealm. NO_AUTHENTICATION
Singleton constant that represents "no authentication."Fields in hudson.security with type parameters of type SecurityRealm Modifier and Type Field Description static Descriptor<SecurityRealm>
LegacySecurityRealm. DESCRIPTOR
Deprecated.as of 2.0 Don't use this field, use injection.static DescriptorList<SecurityRealm>
SecurityRealm. LIST
Methods in hudson.security that return SecurityRealm Modifier and Type Method Description SecurityRealm
GlobalSecurityConfiguration. getSecurityRealm()
Methods in hudson.security that return types with arguments of type SecurityRealm Modifier and Type Method Description static DescriptorExtensionList<SecurityRealm,Descriptor<SecurityRealm>>
SecurityRealm. all()
Returns all the registeredSecurityRealm
descriptors.static DescriptorExtensionList<SecurityRealm,Descriptor<SecurityRealm>>
SecurityRealm. all()
Returns all the registeredSecurityRealm
descriptors.Descriptor<SecurityRealm>
SecurityRealm. getDescriptor()
By default looks for a nested class (conventionally namedDescriptorImpl
) implementingDescriptor
and marked withExtension
.Methods in hudson.security with parameters of type SecurityRealm Modifier and Type Method Description void
HudsonFilter. reset(SecurityRealm securityRealm)
Reset the proxies and filter for a change inSecurityRealm
. -
Uses of SecurityRealm in jenkins.model
Methods in jenkins.model that return SecurityRealm Modifier and Type Method Description SecurityRealm
Jenkins. getSecurityRealm()
Methods in jenkins.model that return types with arguments of type SecurityRealm Modifier and Type Method Description Descriptor<SecurityRealm>
Jenkins. getSecurityRealms(String shortClassName)
Gets theSecurityRealm
descriptors by name.Methods in jenkins.model with parameters of type SecurityRealm Modifier and Type Method Description void
Jenkins. setSecurityRealm(SecurityRealm securityRealm)
Sets a security realm.
-