Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SAML (0.14 sec)

  1. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

    public class SamlAuthenticator implements SsoAuthenticator {
    
        private static final Logger logger = LogManager.getLogger(SamlAuthenticator.class);
    
        protected static final String SAML_PREFIX = "saml.";
    
        protected static final String SAML_STATE = "SAML_STATE";
    
        private Map<String, Object> defaultSettings;
    
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.2K bytes
    - Viewed (0)
  2. pom.xml

    			<artifactId>okhttp</artifactId>
    			<version>${okhttp.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>com.onelogin</groupId>
    			<artifactId>java-saml</artifactId>
    			<version>${java.saml.version}</version>
    			<exclusions>
    				<exclusion>
    					<groupId>jakarta.xml.bind</groupId>
    					<artifactId>jakarta.xml.bind-api</artifactId>
    				</exclusion>
    			</exclusions>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
Back to top