a6dc24f5ce40724373742a0255de8e0bd12abdaa
[shibboleth/cpp-opensaml.git] / saml / saml2 / metadata / MetadataFilter.h
1 /*
2  *  Copyright 2001-2006 Internet2
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
17 /**
18  * @file saml/saml2/metadata/MetadataFilter.h
19  * 
20  * Processes metadata after it's been unmarshalled.
21  */
22
23 #ifndef __saml2_metadatafilt_h__
24 #define __saml2_metadatafilt_h__
25
26 #include <saml/saml2/metadata/Metadata.h>
27
28 namespace opensaml {
29
30     namespace saml2md {
31         
32         /**
33          * A metadata filter is used to process metadata after resolution and unmarshalling.
34          * 
35          * Some filters might remove everything but identity provider roles, decreasing the data a service provider
36          * needs to work with, or a filter could be used to perform integrity checking on the retrieved metadata by
37          * verifying a digital signature.
38          */
39         class SAML_API MetadataFilter
40         {
41             MAKE_NONCOPYABLE(MetadataFilter);
42         protected:
43             MetadataFilter() {}
44         public:
45             virtual ~MetadataFilter() {}
46             
47             /**
48              * Returns an identifying string for the filter.
49              * 
50              * @return the ID string
51              */
52             virtual const char* getId() const=0;
53             
54             /**
55              * Filters the given metadata. Exceptions should generally not be thrown to
56              * signal the removal of information, only for systemic processing failure.
57              * 
58              * @param xmlObject the metadata to be filtered.
59              */
60             virtual void doFilter(xmltooling::XMLObject& xmlObject) const=0;
61         };
62
63         /**
64          * Registers MetadataFilter classes into the runtime.
65          */
66         void SAML_API registerMetadataFilters();
67         
68         /** MetadataFilter that deletes blacklisted entities. */
69         #define BLACKLIST_METADATA_FILTER  "org.opensaml.saml2.metadata.provider.BlacklistMetadataFilter"
70
71         /** MetadataFilter that deletes all but whitelisted entities. */
72         #define WHITELIST_METADATA_FILTER  "org.opensaml.saml2.metadata.provider.WhitelistMetadataFilter"
73         
74         DECL_XMLTOOLING_EXCEPTION(MetadataFilterException,SAML_EXCEPTIONAPI(SAML_API),opensaml::saml2md,xmltooling::XMLToolingException,Exceptions related to metadata filtering);
75     };
76 };
77
78 #endif /* __saml2_metadatafilt_h__ */