All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wildfly.elytron.web.undertow.server.ElytronAccount Maven / Gradle / Ivy

Go to download

Integration project for integrating Elytron based HTTP authentication with Undertow.

The newest version!
/*
 * JBoss, Home of Professional Open Source.
 * Copyright 2015 Red Hat, Inc., and individual contributors
 * as indicated by the @author tags.
 *
 * 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 org.wildfly.elytron.web.undertow.server;

import static org.wildfly.common.Assert.checkNotNullParam;
import io.undertow.security.idm.Account;

import java.security.Principal;
import java.util.Collections;
import java.util.Set;
import java.util.stream.Collectors;
import java.util.stream.StreamSupport;

import org.wildfly.security.auth.server.SecurityIdentity;
import org.wildfly.security.authz.Roles;

/**
 * A wrapper around {@link SecurityIdentity} to provide an implementation
 * of {@link Account} as required by Undertow.
 *
 * @author Darran Lofthouse
 */
public class ElytronAccount implements Account {

    private final SecurityIdentity securityIdentity;
    private final Set roles;

    private ElytronAccount(final SecurityIdentity securityIdentity, final Roles roles) {
        this.securityIdentity = securityIdentity;
        this.roles = Collections.unmodifiableSet(
                StreamSupport.stream(roles.spliterator(), false).collect(Collectors.toSet()));
    }

    ElytronAccount(final SecurityIdentity securityIdentity) {
        this(checkNotNullParam("securityIdentity", securityIdentity), securityIdentity.getRoles());
    }

    ElytronAccount(final SecurityIdentity securityIdentity, final String rolesCategory) {
        this(checkNotNullParam("securityIdentity", securityIdentity), securityIdentity.getRoles(rolesCategory, true));
    }

    /**
     * @see io.undertow.security.idm.Account#getPrincipal()
     */
    @Override
    public Principal getPrincipal() {
        return securityIdentity.getPrincipal();
    }

    /**
     * @see io.undertow.security.idm.Account#getRoles()
     */
    @Override
    public Set getRoles() {
        return roles;
    }

    /**
     * Get the {@link SecurityIdentity} wrapped by this {@link Account}.
     *
     * @return the {@link SecurityIdentity} wrapped by this {@link Account}.
     */
    SecurityIdentity getSecurityIdentity() {
        return securityIdentity;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy