BEA Systems, Inc.

WebLogic Server 8.1 API Reference

weblogic.management.configuration
Interface XMLRegistryEntryMBean


public interface XMLRegistryEntryMBean
extends ConfigurationMBean

This is an entry in the XML registry. An XML registry entry is configuration information associated with a particular XML document type. The document type is identified by one or more of the following: 1) a public ID (e.g, "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN" 2) a system ID (e.g, "http://java.sun.com/j2ee/dtds/ejb-jar_2_0.dtd") 3) a document root tag name (e.g., "ejb-jar") In Haleakala this configuration information is used by the WebLogic JAXP implementation to choose the appropriate parser factories and parsers and to set up SAX EntityResolvers.

Author:
Copyright © 2002 BEA Systems, Inc. All Rights Reserved.

Field Summary
static long CACHING_STUB_SVUID
          Deprecated. Description of the Field
 
Fields inherited from class weblogic.management.configuration.ConfigurationMBean
CACHING_STUB_SVUID
 
Method Summary
 java.lang.String getDocumentBuilderFactory()
          Deprecated. Return the class name of the DocumentBuilderFactory that is associated with the registry entry.
 java.lang.String getEntityPath()
          Deprecated. Return the path name to a local copy of an external entity (e.g., a DTD) that is associated with this registry entry.
 java.lang.String getParserClassName()
          Deprecated. Return class name of any custom XML parser that is associated with the registry entry.
 java.lang.String getPublicId()
          Deprecated. Get the public id of the document type represented by this registry entry.
 java.lang.String getRootElementTag()
          Deprecated. Get the tag name of the document root element of the document type represented by this registry entry.
 java.lang.String getSAXParserFactory()
          Deprecated. Return the class name of the SAXParserFactory that is associated with the registry entry.
 java.lang.String getSystemId()
          Deprecated. Get the system id of the document type represented by this registry entry.
 void setDocumentBuilderFactory(java.lang.String factoryClassName)
          Deprecated. Set a DocumentBuilderFactory that is associated with the registry entry.
 void setEntityPath(java.lang.String pathName)
          Deprecated. Set the path name to a local copy of an external entity (e.g, a DTD) that is associated with this registry entry.
 void setParserClassName(java.lang.String publicId)
          Deprecated. Set the class name of any custom XML parser that is associated with the registry entry.
 void setPublicId(java.lang.String publicId)
          Deprecated. Set the public id of the document type represented by this registry entry.
 void setRootElementTag(java.lang.String tagName)
          Deprecated. Set the tag name of the document root element of the document type represented by this registry entry.
 void setSAXParserFactory(java.lang.String factoryClassName)
          Deprecated. Set a SAXParserFactory that is associated with the registry entry.
 void setSystemId(java.lang.String systemId)
          Deprecated. Set the system id of the document type represented by this registry entry.
 
Methods inherited from interface weblogic.management.configuration.ConfigurationMBean
freezeCurrentValue, getNotes, restoreDefaultValue, setComments, setDefaultedMBean, setNotes, setPersistenceEnabled
 
Methods inherited from interface weblogic.management.WebLogicMBean
getMBeanInfo, getName, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setName, setParent
 
Methods inherited from interface javax.management.DynamicMBean
getAttribute, getAttributes, invoke, setAttribute, setAttributes
 
Methods inherited from interface javax.management.MBeanRegistration
postDeregister, postRegister, preRegister
 
Methods inherited from interface javax.management.NotificationBroadcaster
addNotificationListener, getNotificationInfo, removeNotificationListener
 

Field Detail

CACHING_STUB_SVUID

public static final long CACHING_STUB_SVUID
Deprecated. 
Description of the Field
Method Detail

getPublicId

public java.lang.String getPublicId()
Deprecated. 
Get the public id of the document type represented by this registry entry.

Returns:
The publicId value

setPublicId

public void setPublicId(java.lang.String publicId)
                 throws javax.management.InvalidAttributeValueException
Deprecated. 
Set the public id of the document type represented by this registry entry.

A dynamic MBean attribute
Parameters:
publicId - The new publicId value
Throws:
javax.management.InvalidAttributeValueException - Description of the Exception

getSystemId

public java.lang.String getSystemId()
Deprecated. 
Get the system id of the document type represented by this registry entry.

Returns:
The systemId value

setSystemId

public void setSystemId(java.lang.String systemId)
                 throws javax.management.InvalidAttributeValueException
Deprecated. 
Set the system id of the document type represented by this registry entry.

A dynamic MBean attribute
Parameters:
systemId - The new systemId value
Throws:
javax.management.InvalidAttributeValueException - Description of the Exception

getRootElementTag

public java.lang.String getRootElementTag()
Deprecated. 
Get the tag name of the document root element of the document type represented by this registry entry.

Returns:
The rootElementTag value

setRootElementTag

public void setRootElementTag(java.lang.String tagName)
                       throws javax.management.InvalidAttributeValueException
Deprecated. 
Set the tag name of the document root element of the document type represented by this registry entry.

A dynamic MBean attribute
Parameters:
tagName - The new rootElementTag value
Throws:
javax.management.InvalidAttributeValueException - Description of the Exception

getEntityPath

public java.lang.String getEntityPath()
Deprecated. 
Return the path name to a local copy of an external entity (e.g., a DTD) that is associated with this registry entry. This pathname is relative to one of the XML registry directories of the installation.

Returns:
The entityPath value

setEntityPath

public void setEntityPath(java.lang.String pathName)
                   throws javax.management.InvalidAttributeValueException
Deprecated. 
Set the path name to a local copy of an external entity (e.g, a DTD) that is associated with this registry entry. This pathname is relative to one of the XML registry directories of the installation.

A dynamic MBean attribute
Parameters:
pathName - The new entityPath value
Throws:
javax.management.InvalidAttributeValueException - Description of the Exception

getParserClassName

public java.lang.String getParserClassName()
Deprecated. 
Return class name of any custom XML parser that is associated with the registry entry.

Returns:
The parserClassName value

setParserClassName

public void setParserClassName(java.lang.String publicId)
                        throws javax.management.InvalidAttributeValueException
Deprecated. 
Set the class name of any custom XML parser that is associated with the registry entry.

A dynamic MBean attribute
Parameters:
publicId - The new parserClassName value
Throws:
javax.management.InvalidAttributeValueException - Description of the Exception

getDocumentBuilderFactory

public java.lang.String getDocumentBuilderFactory()
Deprecated. 
Return the class name of the DocumentBuilderFactory that is associated with the registry entry.

Returns:
The documentBuilderFactory value

setDocumentBuilderFactory

public void setDocumentBuilderFactory(java.lang.String factoryClassName)
                               throws javax.management.InvalidAttributeValueException
Deprecated. 
Set a DocumentBuilderFactory that is associated with the registry entry.

A dynamic MBean attribute
Parameters:
factoryClassName - The new documentBuilderFactory value
Throws:
javax.management.InvalidAttributeValueException - Description of the Exception

getSAXParserFactory

public java.lang.String getSAXParserFactory()
Deprecated. 
Return the class name of the SAXParserFactory that is associated with the registry entry.

Returns:
The sAXParserFactory value

setSAXParserFactory

public void setSAXParserFactory(java.lang.String factoryClassName)
                         throws javax.management.InvalidAttributeValueException
Deprecated. 
Set a SAXParserFactory that is associated with the registry entry.

A dynamic MBean attribute
Parameters:
factoryClassName - The new sAXParserFactory value
Throws:
javax.management.InvalidAttributeValueException - Description of the Exception

Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs81b