blob: be30809c3183a3084c5b66c8e282f67828ac198b [file] [log] [blame]
/*
* 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.sling.jcr.repoinit.impl;
import java.util.List;
import javax.jcr.Session;
import org.apache.sling.jcr.repoinit.JcrRepoInitOpsProcessor;
import org.apache.sling.repoinit.parser.operations.Operation;
import org.apache.sling.repoinit.parser.operations.OperationVisitor;
import org.osgi.framework.Constants;
import org.osgi.service.component.annotations.Component;
/**
* Apply Operations produced by the repoinit parser to a JCR Repository
*/
@Component(service = JcrRepoInitOpsProcessor.class,
property = {
Constants.SERVICE_VENDOR + "=The Apache Software Foundation"
})
public class JcrRepoInitOpsProcessorImpl implements JcrRepoInitOpsProcessor {
/** Apply the supplied operations: first the namespaces and nodetypes
* registrations, then the service users, paths and ACLs.
*/
@Override
public void apply(Session session, List<Operation> ops) {
final OperationVisitor [] visitors = {
new NamespacesVisitor(session),
new NodetypesVisitor(session),
new PrivilegeVisitor(session),
new UserVisitor(session),
new AclVisitor(session),
new GroupMembershipVisitor(session),
new NodePropertiesVisitor(session)
};
for(OperationVisitor v : visitors) {
for(Operation op : ops) {
op.accept(v);
}
}
}
}