/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * 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.jcr2spi.operation; import javax.jcr.AccessDeniedException; import javax.jcr.ItemExistsException; import javax.jcr.RepositoryException; import javax.jcr.UnsupportedRepositoryOperationException; import javax.jcr.ValueFormatException; import javax.jcr.lock.LockException; import javax.jcr.nodetype.ConstraintViolationException; import javax.jcr.version.VersionException; import org.apache.jackrabbit.jcr2spi.state.NodeState; import org.apache.jackrabbit.spi.Name; import org.apache.jackrabbit.spi.NodeId; import org.apache.jackrabbit.spi.QPropertyDefinition; import org.apache.jackrabbit.spi.QValue; /** * <code>AddProperty</code>... */ public class AddProperty extends TransientOperation { private final NodeId parentId; private final NodeState parentState; private final Name propertyName; private final int propertyType; private final QValue[] values; private final QPropertyDefinition definition; private AddProperty(NodeState parentState, Name propName, int propertyType, QValue[] values, QPropertyDefinition definition) throws RepositoryException { this(parentState, propName, propertyType, values, definition, DEFAULT_OPTIONS); } AddProperty(NodeState parentState, Name propName, int propertyType, QValue[] values, QPropertyDefinition definition, int options) throws RepositoryException { super(options); this.parentId = parentState.getNodeId(); this.parentState = parentState; this.propertyName = propName; this.propertyType = propertyType; this.values = values; this.definition = definition; addAffectedItemState(parentState); } //----------------------------------------------------------< Operation >--- /** * * @param visitor */ public void accept(OperationVisitor visitor) throws ValueFormatException, LockException, ConstraintViolationException, AccessDeniedException, ItemExistsException, UnsupportedRepositoryOperationException, VersionException, RepositoryException { assert status == STATUS_PENDING; visitor.visit(this); } /** * @see Operation#persisted() */ public void persisted() throws RepositoryException { assert status == STATUS_PENDING; status = STATUS_PERSISTED; parentState.getHierarchyEntry().complete(this); } /** * @see Operation#undo() */ @Override public void undo() throws RepositoryException { status = STATUS_UNDO; parentState.getHierarchyEntry().complete(this); } //----------------------------------------< Access Operation Parameters >--- public NodeId getParentId() { return parentId; } public NodeState getParentState() { return parentState; } public Name getPropertyName() { return propertyName; } public int getPropertyType() { return propertyType; } public QValue[] getValues() { return values; } public boolean isMultiValued() { return definition.isMultiple(); } public QPropertyDefinition getDefinition() { return definition; } //------------------------------------------------------------< Factory >--- /** * * @param parentState * @param propName * @param propertyType * @param def * @param values * @return */ public static Operation create(NodeState parentState, Name propName, int propertyType, QPropertyDefinition def, QValue[] values) throws RepositoryException { AddProperty ap = new AddProperty(parentState, propName, propertyType, values, def); return ap; } }