added comment headers.
[xmlrouter] / impl / src / main / java / org / wamblee / xmlrouter / impl / RobustFilter.java
1 /*
2  * Copyright 2005-2011 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */ 
16 package org.wamblee.xmlrouter.impl;
17
18 import java.util.logging.Level;
19 import java.util.logging.Logger;
20
21 import javax.xml.transform.dom.DOMSource;
22
23 import org.wamblee.xmlrouter.common.Id;
24 import org.wamblee.xmlrouter.config.Filter;
25
26 public class RobustFilter implements Filter {
27
28     private static final Logger LOGGER = Logger.getLogger(RobustFilter.class
29         .getName());
30
31     private Id<Filter> id;
32     private Filter filter;
33
34     public RobustFilter(Id<Filter> aId, Filter aFilter) {
35         id = aId;
36         filter = aFilter;
37     }
38
39     @Override
40     public boolean isAllowed(String aDocumentType, DOMSource aSource) {
41         try {
42             return filter.isAllowed(aDocumentType, aSource);
43         } catch (Exception e) {
44             LOGGER.log(Level.WARNING, "Filter " + id +
45                 " threw exception, assuming filter returns true", e);
46             return true;
47         }
48     }
49 }