- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 56 for isso (0.01 sec)
-
src/main/resources/fess_indices/_aws/fess.json
"depois", "desde", "desta", "deste", "dispoe", "dispoem", "diversa", "diversas", "diversos", "do", "dos", "durante", "e", "ela", "elas", "ele", "eles", "em", "entao", "entre", "essa", "essas", "esse", "esses", "esta", "estas", "este", "estes", "ha", "isso", "isto", "logo", "mais", "mas", "mediante", "menos", "mesma", "mesmas", "mesmo", "mesmos", "na", "nas", "nao", "nas", "nem", "nesse", "neste", "nos", "o", "os", "ou", "outra", "outras", "outro", "outros", "pelas", "pelas", "pelo", "pelos", "perante",...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 14 00:36:40 UTC 2025 - 117.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/SsoLoginExceptionTest.java
Exception cause = new IllegalArgumentException("Invalid SSO token"); SsoLoginException exception = new SsoLoginException("SSO error", cause); Throwable retrievedCause = exception.getCause(); assertNotNull(retrievedCause); assertSame(cause, retrievedCause); assertEquals("Invalid SSO token", retrievedCause.getMessage()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Charsets.java
*/ @Deprecated @J2ktIncompatible @GwtIncompatible // Charset not supported by GWT public static final Charset US_ASCII = StandardCharsets.US_ASCII; /** * ISO-8859-1: ISO Latin Alphabet Number 1 (ISO-LATIN-1). * * @deprecated Use {@link StandardCharsets#ISO_8859_1} instead. */ @Deprecated public static final Charset ISO_8859_1 = StandardCharsets.ISO_8859_1; /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java
} /** * SSO logout endpoint. * * This method handles SSO logout requests, coordinating with the SSO provider * to properly terminate the user's SSO session. It may involve redirecting * to the SSO provider's logout endpoint or performing local logout operations. * * @return ActionResponse directing to the logout page or SSO provider logout endpoint */ @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/SsoResponseType.java
*/ package org.codelibs.fess.sso; /** * Represents the type of SSO (Single Sign-On) response being requested. * This enum is used to differentiate between various SSO operations, * such as metadata requests and logout actions. */ public enum SsoResponseType { /** * Indicates a request for SSO metadata, which is typically used for
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoMessageException.java
import org.codelibs.fess.mylasta.action.FessMessages; import org.lastaflute.web.validation.VaMessenger; /** * Exception thrown during SSO (Single Sign-On) processing with message code support. * * This exception is used to indicate errors that occur during SSO authentication * and authorization processes. It carries both a message code for internationalization
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/SsoManager.java
import org.lastaflute.web.response.ActionResponse; /** * Manager class for coordinating SSO (Single Sign-On) authentication operations. * * This class serves as the central coordinator for SSO authentication in Fess. * It manages registered SSO authenticators, determines when SSO is available, * and delegates authentication operations to the appropriate SSO provider based * on the current configuration. */ public class SsoManager {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/SsoAuthenticator.java
* integrated with Fess. Implementations handle specific SSO protocols like SAML, * OAuth, SPNEGO, or other authentication mechanisms. Each authenticator is responsible * for obtaining login credentials, resolving user information, and managing SSO * lifecycle operations like logout and metadata exchange. */ public interface SsoAuthenticator { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
import org.codelibs.fess.app.web.base.login.OpenIdConnectCredential; import org.codelibs.fess.crawler.Constants; import org.codelibs.fess.mylasta.action.FessUserBean; import org.codelibs.fess.sso.SsoAuthenticator; import org.codelibs.fess.sso.SsoResponseType; import org.codelibs.fess.util.ComponentUtil; import org.dbflute.optional.OptionalEntity; import org.lastaflute.web.login.credential.LoginCredential;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.sso.saml; import org.codelibs.fess.unit.UnitFessTestCase; public class SamlAuthenticatorTest extends UnitFessTestCase { @Override public void setUp() throws Exception { super.setUp(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 1.7K bytes - Viewed (0)