blob: cd8eee9fb6ef3bf91da6eaa28b3d5c1576e90297 [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 io.mifos.identity.internal.service;
import io.mifos.identity.api.v1.domain.Permission;
import io.mifos.identity.internal.repository.AllowedOperationType;
import io.mifos.identity.internal.repository.PermissionType;
import java.util.List;
import java.util.Set;
import java.util.stream.Collectors;
import org.apache.fineract.cn.anubis.api.v1.domain.AllowedOperation;
/**
* @author Myrle Krantz
*/
public class RoleMapper {
@SuppressWarnings("WeakerAccess")
static Set<AllowedOperation> mapAllowedOperations(
final Set<AllowedOperationType> allowedOperations) {
return allowedOperations.stream()
.map(RoleMapper::mapAllowedOperation)
.collect(Collectors.toSet());
}
public static AllowedOperation mapAllowedOperation(final AllowedOperationType allowedOperationType) {
return AllowedOperation.valueOf(allowedOperationType.toString());
}
static List<Permission> mapPermissions(List<PermissionType> permissions) {
return permissions.stream()
.map(i -> new Permission(
i.getPermittableGroupIdentifier(),
RoleMapper.mapAllowedOperations(i.getAllowedOperations()))).collect(Collectors.toList());
}
}