blob: c27e2f5b832022c8e312b1b0ed878e769d0327c8 [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.feature.cpconverter.accesscontrol;
import java.io.IOException;
import java.util.List;
import org.apache.jackrabbit.vault.fs.spi.PrivilegeDefinitions;
import org.apache.sling.feature.cpconverter.ConverterException;
import org.apache.sling.feature.cpconverter.features.FeaturesManager;
import org.apache.sling.feature.cpconverter.vltpkg.VaultPackageAssembler;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* The Manager able to collect and build System Users and related ACL policies.
*/
public interface AclManager {
boolean addUser(@NotNull User user);
boolean addGroup(@NotNull Group group);
boolean addSystemUser(@NotNull SystemUser systemUser);
void addMapping(@NotNull Mapping mapping);
boolean addAccessControlEntry(@NotNull String systemUser, @NotNull AccessControlEntry acl);
void addRepoinitExtension(@NotNull List<VaultPackageAssembler> packageAssemblers, @NotNull FeaturesManager featureManager)
throws IOException, ConverterException;
void addRepoinitExtention(@NotNull String source, @Nullable String repoInitText, @Nullable String runMode, @NotNull FeaturesManager featuresManager)
throws IOException, ConverterException;
void addNodetypeRegistration(@NotNull String cndStatements);
void addPrivilegeDefinitions(@NotNull PrivilegeDefinitions privilegeDefinitions);
void reset();
}