HHH-6109 bind sql result mapping and named query

This commit is contained in:
Strong Liu 2012-08-17 17:49:20 +08:00
parent cb394756c8
commit 1c26ef34cc
2 changed files with 79 additions and 0 deletions

View File

@ -0,0 +1,44 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* Copyright (c) 2012, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
* statements applied by the authors. All third-party contributions are
* distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this distribution; if not, write to:
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*/
package org.hibernate.internal.jaxb.mapping.hbm;
import java.io.Serializable;
import java.util.List;
/**
* @author Strong Liu <stliu@hibernate.org>
*/
public interface QuerySourceElement {
public List<Serializable> getContent();
public JaxbCacheModeAttribute getCacheMode();
public String getCacheRegion();
public boolean isCacheable();
public String getComment();
public Integer getFetchSize();
public JaxbFlushModeAttribute getFlushMode();
public String getName();
public boolean isReadOnly();
public Integer getTimeout();
}

View File

@ -0,0 +1,35 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* Copyright (c) 2012, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
* statements applied by the authors. All third-party contributions are
* distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this distribution; if not, write to:
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*/
package org.hibernate.internal.jaxb.mapping.hbm;
import java.util.List;
/**
* @author Strong Liu <stliu@hibernate.org>
*/
public interface ReturnElement {
public String getAlias();
public JaxbLockModeAttribute getLockMode();
public List<JaxbReturnPropertyElement> getReturnProperty();
}