Class OpenShiftUserDetails
- java.lang.Object
-
- org.openshift.jenkins.plugins.openshiftlogin.OpenShiftUserDetails
-
- All Implemented Interfaces:
Serializable
,UserDetails
public class OpenShiftUserDetails extends Object implements UserDetails
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OpenShiftUserDetails(String name, GrantedAuthority[] auths)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GrantedAuthority[]
getAuthorities()
String
getPassword()
String
getUsername()
boolean
isAccountNonExpired()
boolean
isAccountNonLocked()
boolean
isCredentialsNonExpired()
boolean
isEnabled()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.acegisecurity.userdetails.UserDetails
toSpring
-
-
-
-
Constructor Detail
-
OpenShiftUserDetails
public OpenShiftUserDetails(String name, GrantedAuthority[] auths)
-
-
Method Detail
-
getAuthorities
public GrantedAuthority[] getAuthorities()
- Specified by:
getAuthorities
in interfaceUserDetails
-
getPassword
public String getPassword()
- Specified by:
getPassword
in interfaceUserDetails
-
getUsername
public String getUsername()
- Specified by:
getUsername
in interfaceUserDetails
-
isAccountNonExpired
public boolean isAccountNonExpired()
- Specified by:
isAccountNonExpired
in interfaceUserDetails
-
isAccountNonLocked
public boolean isAccountNonLocked()
- Specified by:
isAccountNonLocked
in interfaceUserDetails
-
isCredentialsNonExpired
public boolean isCredentialsNonExpired()
- Specified by:
isCredentialsNonExpired
in interfaceUserDetails
-
isEnabled
public boolean isEnabled()
- Specified by:
isEnabled
in interfaceUserDetails
-
-