Class IdentityProvider


  • public class IdentityProvider
    extends java.lang.Object
    Authentication plugins should provide a bean with the IdentityProvider's they provide. These will be picked up by the AuthenticationResource that again provides it to the UI. Currently we support only one auth plugin at a time. Otherwise they'll shield each other on the classpath. So no error, just random behaviour. TODO(REL-5084): Implement something that checks for the issue (we have a mention of that in REL-5084)
    • Constructor Summary

      Constructors 
      Constructor Description
      IdentityProvider​(java.lang.String name, java.lang.String loginUrl, java.lang.String logoutUrl)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getLoginUrl()  
      java.lang.String getLogoutUrl()  
      java.lang.String getName()  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • IdentityProvider

        public IdentityProvider​(java.lang.String name,
                                java.lang.String loginUrl,
                                java.lang.String logoutUrl)
    • Method Detail

      • getName

        public java.lang.String getName()
      • getLoginUrl

        public java.lang.String getLoginUrl()
      • getLogoutUrl

        public java.lang.String getLogoutUrl()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object