Repository: incubator-tamaya-extensions Updated Branches: refs/heads/configjsr cfb364cd4 -> 4765b8c44
Removed unused artifact. Signed-off-by: Anatole Tresch <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/commit/4765b8c4 Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/tree/4765b8c4 Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/diff/4765b8c4 Branch: refs/heads/configjsr Commit: 4765b8c442701df23c9d83b6bd098b722c84196e Parents: cfb364c Author: Anatole Tresch <[email protected]> Authored: Wed Jan 10 01:14:51 2018 +0100 Committer: Anatole Tresch <[email protected]> Committed: Wed Jan 10 01:14:51 2018 +0100 ---------------------------------------------------------------------- .../org/apache/tamaya/filter/FilterContext.java | 119 ------------------- 1 file changed, 119 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/4765b8c4/modules/filter/src/main/java/org/apache/tamaya/filter/FilterContext.java ---------------------------------------------------------------------- diff --git a/modules/filter/src/main/java/org/apache/tamaya/filter/FilterContext.java b/modules/filter/src/main/java/org/apache/tamaya/filter/FilterContext.java deleted file mode 100644 index 35eb987..0000000 --- a/modules/filter/src/main/java/org/apache/tamaya/filter/FilterContext.java +++ /dev/null @@ -1,119 +0,0 @@ -/* - * 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.tamaya.filter; - -import org.apache.tamaya.spi.PropertyFilter; -import org.apache.tamaya.spi.PropertyValue; - -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collection; -import java.util.Collections; -import java.util.List; - -/** - * A set of property filter and accessor methods. This class is built for - * usage within a single threaded context, so it is NOT thread-safe. - */ -public final class FilterContext implements PropertyFilter{ - /** The filters. */ - private List<PropertyFilter> filters = new ArrayList<>(); - - /** - * Add a filter. - * @param filter the filter. - */ - public void addFilter(PropertyFilter filter){ - filters.add(filter); - } - - /** - * Adds a filter at given position. - * @param pos the position. - * @param filter the filter. - */ - public void addFilter(int pos, PropertyFilter filter){ - filters.add(pos, filter); - } - - /** - * Removes a filter at a given position. - * @param pos the position. - * @return the filter removed, or null. - */ - public PropertyFilter removeFilter(int pos){ - return filters.remove(pos); - } - - /** - * Removes a filter. - * @param filter the filter to be removed, not null. - */ - public void removeFilter(PropertyFilter filter) { - filters.remove(filter); - } - - /** - * Clears all filters. - */ - public void clearFilters(){ - filters.clear(); - } - - /** - * Set the filters. - * @param filters the filters to be applied. - */ - public void setFilters(PropertyFilter... filters){ - setFilters(Arrays.asList(filters)); - } - - /** - * Set the filters. - * @param filters the filters to be applied. - */ - public void setFilters(Collection<PropertyFilter> filters) { - this.filters.clear(); - this.filters.addAll(filters); - } - - /** - * Get all filters. - * @return all filters. - */ - public List<PropertyFilter> getFilters(){ - return Collections.unmodifiableList(filters); - } - - @Override - public PropertyValue filterProperty(PropertyValue valueToBeFiltered, org.apache.tamaya.spi.FilterContext context) { - for(PropertyFilter filter:filters){ - valueToBeFiltered = filter.filterProperty(valueToBeFiltered, context); - } - return valueToBeFiltered; - } - - @Override - public String toString() { - return "ProgrammableFilter{" + - "filters=" + filters + - '}'; - } - -}
