Example usage for org.apache.commons.digester RuleSet getNamespaceURI

List of usage examples for org.apache.commons.digester RuleSet getNamespaceURI

Introduction

In this page you can find the example usage for org.apache.commons.digester RuleSet getNamespaceURI.

Prototype

public String getNamespaceURI();

Source Link

Document

Return the namespace URI that will be applied to all Rule instances created from this RuleSet.

Usage

From source file:org.xchain.framework.digester.RuleSetRegistry.java

public void addRuleSet(RuleSet ruleSet) {
    getRuleSetMap().put(ruleSet.getNamespaceURI(), ruleSet);
}