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

com.rapiddweller.jdbacl.identity.xml.IdentityParseContext Maven / Gradle / Ivy

Go to download

'jdbacl' stands for 'Java DataBase ACcess Layer' and provides utilities for accessing JDBC databases from Java programs, retrieving meta information in an object model and querying database data. 'rapiddweller jdbacl' is forked from Databene jdbacl by Volker Bergmann.

There is a newer version: 1.1.17-jdk-11
Show newest version
/*
 * (c) Copyright 2011 by Volker Bergmann. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, is permitted under the terms of the
 * GNU General Public License (GPL).
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * WITHOUT A WARRANTY OF ANY KIND. ALL EXPRESS OR IMPLIED CONDITIONS,
 * REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE
 * HEREBY EXCLUDED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

package com.rapiddweller.jdbacl.identity.xml;

import com.rapiddweller.format.xml.ParseContext;
import com.rapiddweller.format.xml.XMLElementParserFactory;
import com.rapiddweller.jdbacl.identity.IdentityProvider;

/**
 * {@link ParseContext} implementation for identity definition files.

* Created: 07.12.2011 15:45:13 * * @author Volker Bergmann * @since 0.7.1 */ public class IdentityParseContext extends ParseContext { /** * The Identity provider. */ protected final IdentityProvider identityProvider; /** * Instantiates a new Identity parse context. */ public IdentityParseContext() { this(new IdentityProvider()); } /** * Instantiates a new Identity parse context. * * @param identityProvider the identity provider */ public IdentityParseContext(IdentityProvider identityProvider) { super(Object.class, new XMLElementParserFactory<>()); this.identityProvider = identityProvider; createParsers(); } private void createParsers() { addParser(new IdentityParser()); } /** * Gets identity provider. * * @return the identity provider */ public IdentityProvider getIdentityProvider() { return identityProvider; } }