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

org.eclipse.persistence.internal.oxm.XMLAccessor Maven / Gradle / Ivy

There is a newer version: 5.0.0-B03
Show newest version
/*******************************************************************************
 * Copyright (c) 1998, 2013 Oracle and/or its affiliates. All rights reserved.
 * This program and the accompanying materials are made available under the 
 * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0 
 * which accompanies this distribution. 
 * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
 * and the Eclipse Distribution License is available at 
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * Contributors:
 *     Oracle - initial API and implementation from Oracle TopLink
 ******************************************************************************/  
package org.eclipse.persistence.internal.oxm;

import java.io.PrintWriter;
import java.io.StringWriter;
import org.eclipse.persistence.exceptions.DatabaseException;
import org.eclipse.persistence.internal.databaseaccess.DatasourceAccessor;
import org.eclipse.persistence.internal.helper.Helper;
import org.eclipse.persistence.internal.sessions.AbstractRecord;
import org.eclipse.persistence.internal.sessions.AbstractSession;
import org.eclipse.persistence.queries.Call;
import org.eclipse.persistence.sessions.Login;

/**
 * INTERNAL:
 * 

Purpose: This class implements the Accessor for XMLLogins. * Provides empty implementations of most methods, since the Accessor isn't * used apart from during the login.

* @author mmacivor * @since 10.1.3 */ public class XMLAccessor extends DatasourceAccessor { /** * Default Constructor. */ public XMLAccessor() { super(); } /** * By default the SDK does not have a connection, * so use an object as a placeholder. * Subclasses can make use of their own connection. */ protected void connectInternal(Login login, AbstractSession session) throws DatabaseException { setDatasourceConnection(new Object()); setIsInTransaction(false); setIsConnected(true); } /** * Begin a transaction on the "data store". */ public void basicBeginTransaction(AbstractSession session) { // do nothing } /** * Commit the transaction to the "data store". */ public void basicCommitTransaction(AbstractSession session) { // do nothing } /** * Rollback the transaction on the "data store". */ public void basicRollbackTransaction(AbstractSession session) { // do nothing } public Object basicExecuteCall(Call call, AbstractRecord translationRow, AbstractSession session) throws DatabaseException { //return null since this should never be called return null; } /* Close the connection to the "data source".*/ protected void closeDatasourceConnection() { // do nothing } /** * Return if the connection to the "data source" is connected. */ protected boolean isDatasourceConnected() { return isConnected; } /** * Log any driver level connection meta-data if available. */ protected void buildConnectLog(AbstractSession session) { } /** * Convert the specified row into something * suitable for the calls. * The default is to leave the row unconverted. */ protected AbstractRecord convert(AbstractRecord row, AbstractSession session) { return row; } /** * Call #toString(PrintWriter), to allow subclasses to * insert additional information. */ public String toString() { StringWriter sw = new StringWriter(); PrintWriter writer = new PrintWriter(sw); writer.write(Helper.getShortClassName(this)); writer.write("("); this.toString(writer); writer.write(")"); return sw.toString(); } /** * Append more information to the writer. */ protected void toString(PrintWriter writer) { writer.print(this.getLogin()); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy