Interface SecurityConfigurer<O,​B extends SecurityBuilder<O>>

    • Method Detail

      • init

        void init​(B builder)
           throws java.lang.Exception
        Initialize the SecurityBuilder. Here only shared state should be created and modified, but not properties on the SecurityBuilder used for building the object. This ensures that the configure(SecurityBuilder) method uses the correct shared objects when building. Configurers should be applied here.
        Parameters:
        builder -
        Throws:
        java.lang.Exception
      • configure

        void configure​(B builder)
                throws java.lang.Exception
        Configure the SecurityBuilder by setting the necessary properties on the SecurityBuilder.
        Parameters:
        builder -
        Throws:
        java.lang.Exception