All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.camel.spi.ValidatorRegistry Maven / Gradle / Ivy

There is a newer version: 4.6.0
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * 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.apache.camel.spi;

import java.util.Map;

import org.apache.camel.StaticService;

/**
 * Registry to cache validators in memory.
 * 

* The registry contains two caches: *

    *
  • static - which keeps all the validators in the cache for the entire lifecycle
  • *
  • dynamic - which keeps the validators in a {@link org.apache.camel.util.LRUCache} and may evict validators which hasn't been requested recently
  • *
* The static cache stores all the validators that are created as part of setting up and starting routes. * The static cache has no upper limit. *

* The dynamic cache stores the validators that are created and used ad-hoc, such as from custom Java code that creates new validators etc. * The dynamic cache has an upper limit, that by default is 1000 entries. * * @param validator key */ public interface ValidatorRegistry extends Map, StaticService { /** * Lookup a {@link Validator} in the registry which supports the validation for * the data type represented by the key. * @param key a key represents the data type * @return {@link Validator} if matched, otherwise null */ Validator resolveValidator(K key); /** * Number of validators in the static registry. */ int staticSize(); /** * Number of validators in the dynamic registry */ int dynamicSize(); /** * Maximum number of entries to store in the dynamic registry */ int getMaximumCacheSize(); /** * Purges the cache (removes validators from the dynamic cache) */ void purge(); /** * Whether the given {@link Validator} is stored in the static cache * * @param type the data type * @return true if in static cache, false if not */ boolean isStatic(DataType type); /** * Whether the given {@link Validator} is stored in the dynamic cache * * @param type the data type * @return true if in dynamic cache, false if not */ boolean isDynamic(DataType type); /** * Cleanup the cache (purging stale entries) */ void cleanUp(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy