
com.mysema.query.jdo.AbstractJDOQuery Maven / Gradle / Ivy
/*
* Copyright 2015, The Querydsl Team (http://www.querydsl.com/team)
*
* Licensed 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 com.mysema.query.jdo;
import java.io.Closeable;
import java.io.IOException;
import java.util.*;
import javax.annotation.Nullable;
import javax.jdo.PersistenceManager;
import javax.jdo.Query;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.slf4j.MDC;
import com.google.common.collect.Lists;
import com.mysema.commons.lang.CloseableIterator;
import com.mysema.commons.lang.IteratorAdapter;
import com.mysema.query.*;
import com.mysema.query.support.ProjectableQuery;
import com.mysema.query.types.EntityPath;
import com.mysema.query.types.Expression;
import com.mysema.query.types.FactoryExpression;
/**
* Abstract base class for custom implementations of the JDOCommonQuery interface.
*
* @author tiwe
*
* @param
*/
public abstract class AbstractJDOQuery> extends ProjectableQuery implements JDOQLQuery{
private static final Logger logger = LoggerFactory.getLogger(JDOQuery.class);
private final Closeable closeable = new Closeable() {
@Override
public void close() throws IOException {
AbstractJDOQuery.this.close();
}
};
private final boolean detach;
private List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy