Package org.apache.geronimo.schema

Source Code of org.apache.geronimo.schema.SecurityElementConverter

/**
*  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.geronimo.schema;

import javax.xml.namespace.QName;

import org.apache.xmlbeans.XmlCursor;

/**
* @version $Rev: 476049 $ $Date: 2006-11-16 23:35:17 -0500 (Thu, 16 Nov 2006) $
*/
public class SecurityElementConverter implements ElementConverter {

    public static final String GERONIMO_SECURITY_NAMESPACE = "http://geronimo.apache.org/xml/ns/security-1.2";
    private static final QName PRINCIPAL_QNAME = new QName(GERONIMO_SECURITY_NAMESPACE, "principal");
    private static final QName REALM_NAME_QNAME = new QName("realm-name");

    public void convertElement(XmlCursor cursor, XmlCursor end) {
        cursor.push();
        end.toCursor(cursor);
        end.toEndToken();
        while (cursor.hasNextToken() && cursor.isLeftOf(end)) {
            if (cursor.isStart()) {
                if (GERONIMO_SECURITY_NAMESPACE.equals(cursor.getName().getNamespaceURI())) {
                    break;
                }
                cursor.setName(new QName(GERONIMO_SECURITY_NAMESPACE, cursor.getName().getLocalPart()));

            }
            cursor.toNextToken();
        }
        cursor.pop();
        XmlCursor source = null;
        try {
        while (cursor.hasNextToken() && cursor.isLeftOf(end)) {
            if (cursor.isStart()) {
                String localPart = cursor.getName().getLocalPart();
                if (localPart.equals("realm")) {
                    if (source == null) {
                        source = cursor.newCursor();
                    } else {
                        source.toCursor(cursor);
                    }
                    cursor.push();
                    cursor.toEndToken();
                    cursor.toNextToken();
                        if (source.toChild(PRINCIPAL_QNAME)) {
                            do {
                                source.copyXml(cursor);
                            } while (source.toNextSibling(PRINCIPAL_QNAME));
                        }

                    cursor.pop();
                    cursor.removeXml();
                } else if (localPart.equals("default-principal")) {
                    cursor.removeAttribute(REALM_NAME_QNAME);
                }
            }
            cursor.toNextToken();
        }
        } finally {
            if (source != null) {
                source.dispose();
            }
        }
    }
}
TOP

Related Classes of org.apache.geronimo.schema.SecurityElementConverter

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.