01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17: package org.apache.jetspeed.tools.pamanager.rules;
18:
19: import org.apache.commons.digester.Digester;
20: import org.apache.commons.digester.RuleSetBase;
21:
22: /**
23: * RuleSet for adding metadata
24: *
25: * @author <a href="mailto:jford@apache.org">Jeremy Ford</a>
26: * @version $Id: MetadataRuleSet.java 516448 2007-03-09 16:25:47Z ate $
27: */
28: public class MetadataRuleSet extends RuleSetBase {
29: private String prefix;
30:
31: /**
32: * @param string
33: */
34: public MetadataRuleSet(String prefix) {
35: this .prefix = prefix;
36: }
37:
38: /**
39: * @see org.apache.commons.digester.RuleSet#addRuleInstances(org.apache.commons.digester.Digester)
40: */
41: public void addRuleInstances(Digester digester) {
42: LocalizedFieldRule fieldRule = new LocalizedFieldRule();
43:
44: digester.addRule(prefix + "title", fieldRule);
45: digester.addRule(prefix + "contributor", fieldRule);
46: digester.addRule(prefix + "creator", fieldRule);
47: digester.addRule(prefix + "coverage", fieldRule);
48: digester.addRule(prefix + "description", fieldRule);
49: digester.addRule(prefix + "format", fieldRule);
50: digester.addRule(prefix + "identifier", fieldRule);
51: digester.addRule(prefix + "language", fieldRule);
52: digester.addRule(prefix + "publisher", fieldRule);
53: digester.addRule(prefix + "relation", fieldRule);
54: digester.addRule(prefix + "right", fieldRule);
55: digester.addRule(prefix + "source", fieldRule);
56: digester.addRule(prefix + "subject", fieldRule);
57: digester.addRule(prefix + "type", fieldRule);
58: digester.addRule(prefix + "metadata", fieldRule);
59: }
60:
61: }
|