Package org.codehaus.plexus.redback.rbac.jdo.io.stax

Examples of org.codehaus.plexus.redback.rbac.jdo.io.stax.RbacJdoModelStaxReader


    }

    public void restoreRBACDatabase( RBACManager manager, File backupDirectory )
        throws IOException, XMLStreamException, RbacManagerException
    {
        RbacJdoModelStaxReader reader = new RbacJdoModelStaxReader();

        FileReader fileReader = new FileReader( new File( backupDirectory, RBAC_XML_NAME ) );

        RbacDatabase database;
        try
        {
            database = reader.read( fileReader );
        }
        finally
        {
            IOUtil.close( fileReader );
        }
View Full Code Here

TOP

Related Classes of org.codehaus.plexus.redback.rbac.jdo.io.stax.RbacJdoModelStaxReader

Copyright © 2018 www.massapicom. 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.