Package org.apache.geronimo.security.network.protocol

Source Code of org.apache.geronimo.security.network.protocol.SubjectCarryingClientProtocol

/**
*
* Copyright 2004 The Apache Software Foundation
*
*  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.apache.geronimo.security.network.protocol;

import javax.security.auth.Subject;

import java.security.AccessController;
import java.util.Collection;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import org.apache.geronimo.network.protocol.AbstractProtocol;
import org.apache.geronimo.network.protocol.DownPacket;
import org.apache.geronimo.network.protocol.ProtocolException;
import org.apache.geronimo.network.protocol.UpPacket;
import org.apache.geronimo.security.IdentificationPrincipal;


/**
* @version $Revision: 1.3 $ $Date: 2004/03/17 03:16:10 $
*/
public class SubjectCarryingClientProtocol extends AbstractProtocol {

    final static private Log log = LogFactory.getLog(SubjectCarryingClientProtocol.class);

    private Subject clientSubject;

    public void setup() throws ProtocolException {
        log.trace("Starting");
    }

    public void drain() throws ProtocolException {
        log.trace("Stopping");
    }

    public void teardown() throws ProtocolException {
    }

    public void sendUp(UpPacket packet) throws ProtocolException {
        getUpProtocol().sendUp(packet);
    }

    public void sendDown(DownPacket packet) throws ProtocolException {
        Subject subject = Subject.getSubject(AccessController.getContext());
        if (clientSubject == subject) {
            PassthroughDownPacket passthroughPacket = new PassthroughDownPacket();
            passthroughPacket.setBuffers(packet.getBuffers());

            getDownProtocol().sendDown(passthroughPacket);
        } else {
            clientSubject = subject;
            Collection principals = clientSubject.getPrincipals(IdentificationPrincipal.class);

            if (principals.isEmpty()) {
                PassthroughDownPacket passthroughPacket = new PassthroughDownPacket();
                passthroughPacket.setBuffers(packet.getBuffers());

                getDownProtocol().sendDown(passthroughPacket);
            } else {
                IdentificationPrincipal principal = (IdentificationPrincipal) principals.iterator().next();

                SubjectCaryingDownPacket subjectPacket = new SubjectCaryingDownPacket();
                subjectPacket.setSubjectId(principal.getId());
                subjectPacket.setBuffers(packet.getBuffers());

                getDownProtocol().sendDown(subjectPacket);
            }
        }
    }

}
TOP

Related Classes of org.apache.geronimo.security.network.protocol.SubjectCarryingClientProtocol

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.