FileDocCategorySizeDatePackage
SecurityConfiguration.javaAPI DocJava SE 5 API5988Fri Aug 26 14:55:54 BST 2005com.sun.org.apache.xerces.internal.parsers

SecurityConfiguration

public class SecurityConfiguration extends XML11Configuration
This configuration allows Xerces to behave in a security-conscious manner; that is, it permits applications to instruct Xerces to limit certain operations that could be exploited by malicious document authors to cause a denail-of-service attack when the document is parsed. In addition to the features and properties recognized by the base parser configuration, this class recognizes these additional features and properties:
  • Properties
    • http://apache.org/xml/properties/security-manager
author
Neil Graham, IBM
author
Gopal Sharma, Sun Microsystems Inc.
version
$Id: SecurityConfiguration.java,v 1.4 2004/02/16 19:28:30 mrglavas Exp $

Fields Summary
protected static final String
SECURITY_MANAGER_PROPERTY
Constructors Summary
public SecurityConfiguration()
Default constructor.


    //
    // Constructors
    //

       
       
        this(null, null, null);
    
public SecurityConfiguration(SymbolTable symbolTable)
Constructs a parser configuration using the specified symbol table.

param
symbolTable The symbol table to use.

        this(symbolTable, null, null);
    
public SecurityConfiguration(SymbolTable symbolTable, XMLGrammarPool grammarPool)
Constructs a parser configuration using the specified symbol table and grammar pool.

REVISIT: Grammar pool will be updated when the new validation engine is implemented.

param
symbolTable The symbol table to use.
param
grammarPool The grammar pool to use.

        this(symbolTable, grammarPool, null);
    
public SecurityConfiguration(SymbolTable symbolTable, XMLGrammarPool grammarPool, XMLComponentManager parentSettings)
Constructs a parser configuration using the specified symbol table, grammar pool, and parent settings.

REVISIT: Grammar pool will be updated when the new validation engine is implemented.

param
symbolTable The symbol table to use.
param
grammarPool The grammar pool to use.
param
parentSettings The parent settings.

        super(symbolTable, grammarPool, parentSettings);
        
        // create the SecurityManager property:
        setProperty(SECURITY_MANAGER_PROPERTY, new SecurityManager());
    
Methods Summary