Uses of Class
hudson.model.UserProperty
-
Packages that use UserProperty Package Description hudson.model Core object model that are bound to URLs via stapler, rooted atJenkins
.hudson.search QuickSilver-like search/jump capability for better navigation around Jenkins.hudson.security Security-related code.jenkins.model.experimentalflags jenkins.security jenkins.security.seed -
-
Uses of UserProperty in hudson.model
Subclasses of UserProperty in hudson.model Modifier and Type Class Description class
MyViewsProperty
A UserProperty that remembers user-private views.class
PaneStatusProperties
class
TimeZoneProperty
A UserProperty that allows a user to specify a time zone for displaying time.Methods in hudson.model with type parameters of type UserProperty Modifier and Type Method Description <T extends UserProperty>
TUser. getProperty(Class<T> clazz)
Gets the specific property, or null.Methods in hudson.model that return UserProperty Modifier and Type Method Description UserProperty
MyViewsProperty.DescriptorImpl. newInstance(User user)
UserProperty
PaneStatusProperties.DescriptorImpl. newInstance(User user)
UserProperty
TimeZoneProperty.DescriptorImpl. newInstance(User user)
abstract UserProperty
UserPropertyDescriptor. newInstance(User user)
Creates a default instance ofUserProperty
to be associated withUser
object that wasn't created from a persisted XML data.UserProperty
MyViewsProperty. reconfigure(org.kohsuke.stapler.StaplerRequest req, net.sf.json.JSONObject form)
UserProperty
UserProperty. reconfigure(org.kohsuke.stapler.StaplerRequest req, net.sf.json.JSONObject form)
Methods in hudson.model that return types with arguments of type UserProperty Modifier and Type Method Description static DescriptorExtensionList<UserProperty,UserPropertyDescriptor>
UserProperty. all()
Returns all the registeredUserPropertyDescriptor
s.List<UserProperty>
User. getAllProperties()
List of allUserProperty
s exposed primarily for the remoting API.Map<Descriptor<UserProperty>,UserProperty>
User. getProperties()
Gets the user properties configured for this user.Map<Descriptor<UserProperty>,UserProperty>
User. getProperties()
Gets the user properties configured for this user.Methods in hudson.model with parameters of type UserProperty Modifier and Type Method Description void
User. addProperty(UserProperty p)
Updates the user object by adding a property.Constructor parameters in hudson.model with type arguments of type UserProperty Constructor Description UserPropertyDescriptor(Class<? extends UserProperty> clazz)
-
Uses of UserProperty in hudson.search
Subclasses of UserProperty in hudson.search Modifier and Type Class Description class
UserSearchProperty
Methods in hudson.search that return UserProperty Modifier and Type Method Description UserProperty
UserSearchProperty.DescriptorImpl. newInstance(User user)
UserProperty
UserSearchProperty.DescriptorImpl. newInstance(org.kohsuke.stapler.StaplerRequest req, net.sf.json.JSONObject formData)
-
Uses of UserProperty in hudson.security
Subclasses of UserProperty in hudson.security Modifier and Type Class Description class
FederatedLoginServiceUserProperty
Remembers identifiers given byFederatedLoginService
to this user.static class
HudsonPrivateSecurityRealm.Details
UserProperty
that provides theUserDetails
view of the User object.Methods in hudson.security that return UserProperty Modifier and Type Method Description UserProperty
HudsonPrivateSecurityRealm.Details.DescriptorImpl. newInstance(User user)
-
Uses of UserProperty in jenkins.model.experimentalflags
Subclasses of UserProperty in jenkins.model.experimentalflags Modifier and Type Class Description class
UserExperimentalFlagsProperty
Per user experimental flags to enable features that still not completely ready to be active by default.Methods in jenkins.model.experimentalflags that return UserProperty Modifier and Type Method Description UserProperty
UserExperimentalFlagsProperty.DescriptorImpl. newInstance(User user)
UserProperty
UserExperimentalFlagsProperty.DescriptorImpl. newInstance(org.kohsuke.stapler.StaplerRequest req, net.sf.json.JSONObject formData)
-
Uses of UserProperty in jenkins.security
Subclasses of UserProperty in jenkins.security Modifier and Type Class Description class
ApiTokenProperty
Remembers the API token for this user, that can be used like a password to login.class
LastGrantedAuthoritiesProperty
Remembers the set ofGrantedAuthority
s that was obtained the last time the user has logged in.Methods in jenkins.security that return UserProperty Modifier and Type Method Description UserProperty
LastGrantedAuthoritiesProperty.DescriptorImpl. newInstance(User user)
UserProperty
ApiTokenProperty. reconfigure(org.kohsuke.stapler.StaplerRequest req, net.sf.json.JSONObject form)
Allow user to rename tokensUserProperty
LastGrantedAuthoritiesProperty. reconfigure(org.kohsuke.stapler.StaplerRequest req, net.sf.json.JSONObject form)
Stick to the same object since there's no UI for this. -
Uses of UserProperty in jenkins.security.seed
Subclasses of UserProperty in jenkins.security.seed Modifier and Type Class Description class
UserSeedProperty
The seed stored in this property is used to have a revoke feature on the session without having to hack the session management that depends on the application server used to run the instance.
-