blob: a9ce51bf5d8fd0112295b90b4ae4e1e5d6e2878b [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
/*
* Created on 08-oct-2003
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package javax.jdo;
import java.util.Collection;
import java.util.Map;
/**
* @author agallardo
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
abstract public interface Query
{
abstract public void close(Object o);
abstract public void closeAll();
abstract public void compile();
abstract public void declareImports(String s);
abstract public void declareParameters(String s);
abstract public void declareVariables(String s);
abstract public Object execute();
abstract public Object execute(Object o);
abstract public Object execute(Object o, Object p);
abstract public Object execute(Object o, Object p, Object q);
abstract public Object executeWithArray(Object[] o);
abstract public Object executeWithMap(Map m);
abstract public boolean getIgnoreCache();
abstract public PersistenceManager getPersistentManager();
abstract public void setIgnoreCandidates(Collection c);
abstract public void setClass(Class c);
abstract public void setFilter(String s);
abstract public void setIgnoreCache(boolean b);
abstract public void setOrdering(String s);
}