Class NameFactoryLogger
- java.lang.Object
-
- org.apache.jackrabbit.spi.commons.logging.AbstractLogger
-
- org.apache.jackrabbit.spi.commons.logging.NameFactoryLogger
-
- All Implemented Interfaces:
NameFactory
public class NameFactoryLogger extends AbstractLogger implements NameFactory
Log wrapper for aNameFactory
.
-
-
Constructor Summary
Constructors Constructor Description NameFactoryLogger(NameFactory nameFactory, LogWriter writer)
Create a new instance for the givennameFactory
which useswriter
for persisting log messages.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Name
create(java.lang.String nameString)
Returns aName
holding the value of the specified string.Name
create(java.lang.String namespaceURI, java.lang.String localName)
Returns aName
with the given namespace URI and local part and validates the given parameters.NameFactory
getNameFactory()
-
-
-
Constructor Detail
-
NameFactoryLogger
public NameFactoryLogger(NameFactory nameFactory, LogWriter writer)
Create a new instance for the givennameFactory
which useswriter
for persisting log messages.- Parameters:
nameFactory
-writer
-
-
-
Method Detail
-
getNameFactory
public NameFactory getNameFactory()
- Returns:
- the wrapped NameFactory
-
create
public Name create(java.lang.String namespaceURI, java.lang.String localName)
Description copied from interface:NameFactory
Returns aName
with the given namespace URI and local part and validates the given parameters.- Specified by:
create
in interfaceNameFactory
- Parameters:
namespaceURI
- namespace urilocalName
- local part
-
create
public Name create(java.lang.String nameString)
Description copied from interface:NameFactory
Returns aName
holding the value of the specified string. The string must be in the format returned by theName.toString()
method, i.e.{namespaceURI}localName
- Specified by:
create
in interfaceNameFactory
- Parameters:
nameString
- aString
containing theName
representation to be parsed.- Returns:
- the
Name
represented by the argument
-
-