Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 478 for Vong (0.14 sec)

  1. 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)
  2. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractBehavior.java

            final IndexResponse response = builder.execute().actionGet(indexTimeout);
            final long seqNo = response.getSeqNo();
            if (seqNo != SequenceNumbers.UNASSIGNED_SEQ_NO) {
                esEntity.asDocMeta().seqNo(seqNo);
            }
            final long primaryTerm = response.getPrimaryTerm();
            if (primaryTerm != SequenceNumbers.UNASSIGNED_PRIMARY_TERM) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (0)
  3. 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)
  4. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/EditForm.java

    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * @author ma2tani
     */
    public class EditForm extends CreateForm {
    
        @Required
        @ValidateTypeFailure
        public Long id;
    
        public String getDisplayId() {
            return dictId + ":" + id;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1009 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/client/SearchEngineClientException.java

     */
    package org.codelibs.fess.es.client;
    
    import org.codelibs.fess.exception.FessSystemException;
    
    public class SearchEngineClientException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public SearchEngineClientException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public SearchEngineClientException(final String message) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/exception/InvalidAccessTokenException.java

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

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class ContentNotFoundException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public ContentNotFoundException(final String parentUrl, final String url) {
            super("Not Found: " + url + " Parent: " + parentUrl, false, false);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 947 bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/exception/BeanFieldSetAccessibleFailureException.java

     */
    package org.codelibs.core.exception;
    
    import java.lang.reflect.Field;
    
    public class BeanFieldSetAccessibleFailureException extends ClRuntimeException {
        private static final long serialVersionUID = 1L;
    
        protected final Class<?> targetClass;
    
        protected final transient Field targetField;
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Fri Mar 08 13:23:29 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/exception/BeanMethodSetAccessibleFailureException.java

     */
    package org.codelibs.core.exception;
    
    import java.lang.reflect.Method;
    
    public class BeanMethodSetAccessibleFailureException extends ClRuntimeException {
    
        private static final long serialVersionUID = 1L;
    
        protected final Class<?> targetClass;
    
        protected final transient Method targetMethod;
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Fri Mar 08 13:23:29 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/role/EditForm.java

     */
    public class EditForm extends CreateForm {
    
        @Required
        @Size(max = 1000)
        public String id;
    
        @Size(max = 1000)
        public String updatedBy;
    
        @ValidateTypeFailure
        public Long updatedTime;
    
        @Required
        @ValidateTypeFailure
        public Integer versionNo;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.1K bytes
    - Viewed (0)
Back to top