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

org.eclipse.persistence.internal.jpa.querydef.CriteriaDeleteImpl Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
/*
 * Copyright (c) 2011, 2018 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 v. 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0,
 * or the Eclipse Distribution License v. 1.0 which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
 */

// Contributors:
//     10/26/2012-2.5 Chris Delahunt
//       - 350469: JPA 2.1 Criteria Query framework Bulk Update/Delete support
package org.eclipse.persistence.internal.jpa.querydef;

import javax.persistence.criteria.CriteriaDelete;
import javax.persistence.criteria.Expression;
import javax.persistence.criteria.Predicate;
import javax.persistence.criteria.Root;
import javax.persistence.metamodel.EntityType;
import javax.persistence.metamodel.Metamodel;

import org.eclipse.persistence.expressions.ExpressionBuilder;
import org.eclipse.persistence.queries.DatabaseQuery;

/**
 * 

* Purpose: Contains the implementation of the CriteriaDelete interface of * the JPA criteria API. *

* Description: This is the container class for the components that * define a Delete Query. *

* * @see javax.persistence.criteria CriteriaDelete * * @author Chris Delahunt * @since EclipseLink 2.5 */ public class CriteriaDeleteImpl extends CommonAbstractCriteriaImpl implements CriteriaDelete { private static final long serialVersionUID = -3858349449764066901L; protected Root root; public CriteriaDeleteImpl(Metamodel metamodel, CriteriaBuilderImpl queryBuilder, Class resultType){ super(metamodel, queryBuilder, resultType); } @Override public Root from(Class entityClass) { return this.internalFrom(entityClass); } @Override public Root from(EntityType entity) { return this.internalFrom(entity); } @Override public Root getRoot() { if (this.root == null) { if (getResultType() !=null) { return this.from(getResultType()); } } return this.root; } @Override public CriteriaDelete where(Expression restriction) { return (CriteriaDelete)super.where(restriction); } @Override public CriteriaDelete where(Predicate... restrictions) { return (CriteriaDelete)super.where(restrictions); } @Override protected void integrateRoot(RootImpl root) { if (this.root !=root) { this.root =root; } } @Override protected org.eclipse.persistence.expressions.Expression getBaseExpression() { if (this.root == null) { return new ExpressionBuilder(); } else { return ((RootImpl)this.root).getCurrentNode(); } } @Override protected DatabaseQuery getDatabaseQuery() { org.eclipse.persistence.queries.DeleteAllQuery query = new org.eclipse.persistence.queries.DeleteAllQuery(this.queryType, getBaseExpression()); query.setShouldDeferExecutionInUOW(false); return query; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy