blob: db419e2e9392a27b1d45c213ec7c162e5d39647d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. The ASF licenses this file to You
* under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.jackrabbit.decorator;
import javax.jcr.ValueFactory;
import javax.jcr.Value;
import javax.jcr.ValueFormatException;
import javax.jcr.Node;
import javax.jcr.RepositoryException;
import javax.jcr.Session;
import java.util.Calendar;
import java.io.InputStream;
/**
*/
public class ValueFactoryDecorator
extends AbstractDecorator implements ValueFactory {
protected final ValueFactory valueFactory;
public ValueFactoryDecorator(DecoratorFactory factory, Session session, ValueFactory valueFactory) {
super(factory, session);
this.valueFactory = valueFactory;
}
/**
* @inheritDoc
*/
public Value createValue(String value) {
return valueFactory.createValue(value);
}
/**
* @inheritDoc
*/
public Value createValue(String value, int type)
throws ValueFormatException {
return valueFactory.createValue(value, type);
}
/**
* @inheritDoc
*/
public Value createValue(long value) {
return valueFactory.createValue(value);
}
/**
* @inheritDoc
*/
public Value createValue(double value) {
return valueFactory.createValue(value);
}
/**
* @inheritDoc
*/
public Value createValue(boolean value) {
return valueFactory.createValue(value);
}
/**
* @inheritDoc
*/
public Value createValue(Calendar value) {
return valueFactory.createValue(value);
}
/**
* @inheritDoc
*/
public Value createValue(InputStream value) {
return valueFactory.createValue(value);
}
/**
* @inheritDoc
*/
public Value createValue(Node value) throws RepositoryException {
return valueFactory.createValue(NodeDecorator.unwrap(value));
}
}