Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 41 for interfaces (0.21 sec)

  1. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionQuery.java

        @FunctionalInterface
        public interface FilteredCall<CQ extends EsAbstractConditionQuery, CF extends EsAbstractConditionQuery> {
    
            void callback(CQ query, CF filter);
        }
    
        @FunctionalInterface
        public interface OperatorCall<CQ extends EsAbstractConditionQuery> {
    
            void callback(CQ query);
        }
    
        @FunctionalInterface
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/query/QueryProcessor.java

                        "Unknown q: " + query.getClass() + " => " + query);
            };
        }
    
        public interface Filter {
            QueryBuilder execute(final QueryContext context, final Query query, final float boost, final FilterChain chain);
        }
    
        public interface FilterChain {
            QueryBuilder execute(final QueryContext context, final Query query, final float boost);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/BooleanFunction.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.util;
    
    @FunctionalInterface
    public interface BooleanFunction<T> {
        boolean apply(T t);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 739 bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallback.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.ds.callback;
    
    import java.util.Map;
    
    import org.codelibs.fess.entity.DataStoreParams;
    
    public interface IndexUpdateCallback {
    
        void store(DataStoreParams paramMap, Map<String, Object> dataMap);
    
        long getDocumentSize();
    
        long getExecuteTime();
    
        void commit();
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 924 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/sso/SsoAuthenticator.java

    import org.codelibs.fess.mylasta.action.FessUserBean;
    import org.lastaflute.web.login.credential.LoginCredential;
    import org.lastaflute.web.response.ActionResponse;
    
    public interface SsoAuthenticator {
    
        LoginCredential getLoginCredential();
    
        void resolveCredential(LoginCredentialResolver resolver);
    
        ActionResponse getResponse(SsoResponseType responseType);
    
    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)
  6. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionAggregation.java

        @FunctionalInterface
        public interface ConditionOptionCall<OP extends AbstractAggregationBuilder<?>> {
    
            /**
             * @param op The option of condition to be set up. (NotNull)
             */
            void callback(OP op);
        }
    
        @FunctionalInterface
        public interface OperatorCall<CA extends EsAbstractConditionAggregation> {
    
            void callback(CA query);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

     */
    package org.codelibs.fess.mylasta.action;
    
    import org.lastaflute.web.response.next.HtmlNext;
    
    /**
     * The path definition of HTML.
     * @author FreeGen
     */
    public interface FessHtmlPath {
    
        /** The path of the HTML: /admin/accesstoken/admin_accesstoken.jsp */
        HtmlNext path_AdminAccesstoken_AdminAccesstokenJsp = new HtmlNext("/admin/accesstoken/admin_accesstoken.jsp");
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (2)
  8. src/main/java/org/codelibs/fess/auth/chain/AuthenticationChain.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.auth.chain;
    
    import org.codelibs.fess.es.user.exentity.User;
    
    public interface AuthenticationChain {
    
        void update(User user);
    
        void delete(User user);
    
        boolean changePassword(String username, String password);
    
        User load(User user);
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 899 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/thumbnail/ThumbnailGenerator.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.thumbnail;
    
    import java.io.File;
    import java.util.Map;
    
    import org.codelibs.core.misc.Tuple3;
    
    public interface ThumbnailGenerator {
    
        String getName();
    
        boolean generate(String thumbnailId, File outputFile);
    
        boolean isTarget(Map<String, Object> docMap);
    
        boolean isAvailable();
    
        void destroy();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/validation/UriType.java

    import org.codelibs.fess.validation.UriTypeValidator.ProtocolType;
    
    @Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER })
    @Retention(RUNTIME)
    @Documented
    @Constraint(validatedBy = UriTypeValidator.class)
    public @interface UriType {
    
        ProtocolType protocolType();
    
        String message() default "{org.lastaflute.validator.constraints.UriType.message}";
    
        Class<?>[] groups() default {};
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.6K bytes
    - Viewed (0)
Back to top