Class QValueFactoryLogger
java.lang.Object
org.apache.jackrabbit.spi.commons.logging.AbstractLogger
org.apache.jackrabbit.spi.commons.logging.QValueFactoryLogger
- All Implemented Interfaces:
QValueFactory
Log wrapper for a
QValueFactory.-
Constructor Summary
ConstructorsConstructorDescriptionQValueFactoryLogger(QValueFactory qValueFactory, LogWriter writer) Create a new instance for the givenqValueFactorywhich useswriterfor persisting log messages. -
Method Summary
Modifier and TypeMethodDescriptionQValue[]computeAutoValues(QPropertyDefinition propertyDefinition) Given theQPropertyDefinitionof an autocreated property, compute suitable values to be used in transient space until the newly created node gets saved.create(boolean value) Create a newQValuewith typePropertyType.BOOLEAN.create(byte[] value) Create a newQValuewith typePropertyType.BINARY.create(double value) Create a newQValuewith typePropertyType.DOUBLE.create(long value) Create a newQValuewith typePropertyType.LONG.Create a newQValuewith typePropertyType.BINARY.create(InputStream value) Creates a QValue that contains the given binary stream.Create a newQValueusing the given String representation of the value and itstype.create(BigDecimal value) Create a newQValuewith typePropertyType.DECIMAL.Create a newQValuewith typePropertyType.URI.Create a newQValuewith typePropertyType.DATE.Create a newQValuewith typePropertyType.NAME.Create a newQValuewith typePropertyType.PATH.
-
Constructor Details
-
QValueFactoryLogger
Create a new instance for the givenqValueFactorywhich useswriterfor persisting log messages.- Parameters:
qValueFactory-writer-
-
-
Method Details
-
getQValueFactory
- Returns:
- the wrapped QValueFactory
-
create
Description copied from interface:QValueFactoryCreate a newQValueusing the given String representation of the value and itstype.- Specified by:
createin interfaceQValueFactory- Parameters:
value- String representation of the newQValue. Note, that the given String must never benull.type- A validtype.- Returns:
- a new
QValue. - Throws:
RepositoryException- If another error occurs.- See Also:
-
create
Description copied from interface:QValueFactoryCreate a newQValuewith typePropertyType.DATE.- Specified by:
createin interfaceQValueFactory- Parameters:
value- A non-nullCalendarobject acting as value of the newQValue.- Returns:
- a new
QValue. - Throws:
RepositoryException
-
create
Description copied from interface:QValueFactoryCreate a newQValuewith typePropertyType.DOUBLE.- Specified by:
createin interfaceQValueFactory- Parameters:
value- Adoublecontaining the value of the newQValue.- Returns:
- a new
QValue. - Throws:
RepositoryException
-
create
Description copied from interface:QValueFactoryCreate a newQValuewith typePropertyType.LONG.- Specified by:
createin interfaceQValueFactory- Parameters:
value- Alongcontaining the value of the newQValue.- Returns:
- a new
QValue. - Throws:
RepositoryException
-
create
Description copied from interface:QValueFactoryCreate a newQValuewith typePropertyType.BOOLEAN.- Specified by:
createin interfaceQValueFactory- Parameters:
value- Abooleancontaining the value of the newQValue.- Returns:
- a new
QValue. - Throws:
RepositoryException
-
create
Description copied from interface:QValueFactoryCreate a newQValuewith typePropertyType.NAME.- Specified by:
createin interfaceQValueFactory- Parameters:
value- A non-nullName.- Returns:
- a new
QValue. - Throws:
RepositoryException
-
create
Description copied from interface:QValueFactoryCreate a newQValuewith typePropertyType.PATH.- Specified by:
createin interfaceQValueFactory- Parameters:
value- A non-nullPath.- Returns:
- a new
QValue. - Throws:
RepositoryException
-
create
Description copied from interface:QValueFactoryCreate a newQValuewith typePropertyType.URI.- Specified by:
createin interfaceQValueFactory- Parameters:
value- A non-nullURI.- Returns:
- a new
QValue. - Throws:
RepositoryException
-
create
Description copied from interface:QValueFactoryCreate a newQValuewith typePropertyType.DECIMAL.- Specified by:
createin interfaceQValueFactory- Parameters:
value- A non-nullBigDecimal.- Returns:
- a new
QValue. - Throws:
RepositoryException
-
create
Description copied from interface:QValueFactoryCreate a newQValuewith typePropertyType.BINARY.- Specified by:
createin interfaceQValueFactory- Parameters:
value-- Returns:
- a new
QValue. - Throws:
RepositoryException
-
create
Description copied from interface:QValueFactoryCreates a QValue that contains the given binary stream. The given stream is consumed and closed by this method. The type of the resulting QValue will bePropertyType.BINARY.- Specified by:
createin interfaceQValueFactory- Parameters:
value- binary stream- Returns:
- a new binary
QValue. - Throws:
RepositoryException- if the value could not be createdIOException- if the stream can not be consumed
-
create
Description copied from interface:QValueFactoryCreate a newQValuewith typePropertyType.BINARY.- Specified by:
createin interfaceQValueFactory- Parameters:
value-- Returns:
- a new binary
QValue. - Throws:
IOExceptionRepositoryException
-
computeAutoValues
public QValue[] computeAutoValues(QPropertyDefinition propertyDefinition) throws RepositoryException Description copied from interface:QValueFactoryGiven theQPropertyDefinitionof an autocreated property, compute suitable values to be used in transient space until the newly created node gets saved.- Specified by:
computeAutoValuesin interfaceQValueFactory- Parameters:
propertyDefinition- definition of property for which values should be created- Returns:
- computed value
- Throws:
RepositoryException
-