com.adobe.acs.commons.users.impl.Group Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of acs-aem-commons-bundle Show documentation
Show all versions of acs-aem-commons-bundle Show documentation
Main ACS AEM Commons OSGi Bundle. Includes commons utilities.
/*
* ACS AEM Commons
*
* Copyright (C) 2013 - 2023 Adobe
*
* Licensed 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 com.adobe.acs.commons.users.impl;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
import org.apache.sling.commons.osgi.PropertiesUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class Group extends AbstractAuthorizable {
@SuppressWarnings("unused")
private static final Logger log = LoggerFactory.getLogger(Group.class);
private static final String PATH_GROUPS = "/home/groups";
private final List memberOf;
private final List membership = new ArrayList<>();
public Group(Map config) throws EnsureAuthorizableException {
super(config);
String[] memberOfArr = PropertiesUtil.toStringArray(config.get(EnsureGroup.PROP_MEMBER_OF), new String[0]);
memberOf = Arrays.asList(memberOfArr);
}
public List getMemberOf() {
return Collections.unmodifiableList(memberOf);
}
@Override
public String getDefaultPath() {
return PATH_GROUPS;
}
public void addMembership(String groupName) {
membership.add(groupName);
}
public List getMissingMemberOf() {
return memberOf.stream().filter(group -> !membership.contains(group)).collect(Collectors.toList());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy