Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 178 for 1L (0.22 sec)

  1. src/test/java/org/codelibs/fess/helper/PermissionHelperTest.java

            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
                private static final long serialVersionUID = 1L;
    
                @Override
                public String getRoleSearchUserPrefix() {
                    return fessConfig.getRoleSearchUserPrefix();
                }
    
                @Override
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractEntity.java

        //                                                                          Definition
        //                                                                          ==========
        private static final long serialVersionUID = 1L;
    
        // ===================================================================================
        //                                                                           Attribute
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exception/UnsupportedSearchException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class UnsupportedSearchException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public UnsupportedSearchException(final String msg) {
            super(msg);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 871 bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/exception/SsoProcessException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class SsoProcessException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public SsoProcessException(final String message) {
            super(message);
        }
    
        public SsoProcessException(final String message, final Exception e) {
            super(message, e);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 973 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/exception/StorageException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class StorageException extends FessSystemException {
        private static final long serialVersionUID = 1L;
    
        public StorageException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public StorageException(final String message) {
            super(message);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 970 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/exception/LdapOperationException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class LdapOperationException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public LdapOperationException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public LdapOperationException(final String message) {
            super(message);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 990 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exception/ScriptEngineException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class ScriptEngineException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public ScriptEngineException(final String message) {
            super(message);
        }
    
        public ScriptEngineException(final String message, final Throwable cause) {
            super(message, cause);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 986 bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exception/SsoLoginException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class SsoLoginException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public SsoLoginException(final String message) {
            super(message);
        }
    
        public SsoLoginException(final String message, final Exception e) {
            super(message, e);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 967 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/curl/CurlException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.curl;
    
    public class CurlException extends RuntimeException {
    
        private static final long serialVersionUID = 1L;
    
        public CurlException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public CurlException(final String message) {
            super(message);
        }
    
    Java
    - Registered: Thu May 09 15:34:10 GMT 2024
    - Last Modified: Mon Nov 14 21:05:19 GMT 2022
    - 950 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/exception/UnsupportedEncodingRuntimeException.java

    import java.io.UnsupportedEncodingException;
    
    /**
     * @author shinsuke
     *
     */
    public class UnsupportedEncodingRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 1L;
    
        public UnsupportedEncodingRuntimeException(final UnsupportedEncodingException cause) {
            super("ECL0105", new Object[] { cause.getMessage() }, cause);
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1K bytes
    - Viewed (0)
Back to top