Mark some classes as internal which should go away when transitioning to SqlAst based rendering
This commit is contained in:
parent
4361790205
commit
895ac83537
|
@ -9,6 +9,7 @@ import java.util.Iterator;
|
|||
import java.util.LinkedHashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import org.hibernate.Internal;
|
||||
import org.hibernate.dialect.Dialect;
|
||||
|
||||
/**
|
||||
|
@ -16,6 +17,7 @@ import org.hibernate.dialect.Dialect;
|
|||
*
|
||||
* @author Gavin King
|
||||
*/
|
||||
@Internal
|
||||
public class Delete {
|
||||
|
||||
protected String tableName;
|
||||
|
|
|
@ -10,6 +10,7 @@ import java.util.ArrayList;
|
|||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
import org.hibernate.Internal;
|
||||
import org.hibernate.internal.util.StringHelper;
|
||||
|
||||
/**
|
||||
|
@ -19,6 +20,7 @@ import org.hibernate.internal.util.StringHelper;
|
|||
*
|
||||
* @author Gavin King
|
||||
*/
|
||||
@Internal
|
||||
public class InFragment {
|
||||
|
||||
public static final String NULL = "null";
|
||||
|
|
|
@ -9,6 +9,7 @@ import java.util.Iterator;
|
|||
import java.util.LinkedHashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import org.hibernate.Internal;
|
||||
import org.hibernate.MappingException;
|
||||
import org.hibernate.dialect.Dialect;
|
||||
|
||||
|
@ -17,6 +18,7 @@ import org.hibernate.dialect.Dialect;
|
|||
*
|
||||
* @author Gavin King
|
||||
*/
|
||||
@Internal
|
||||
public class Insert {
|
||||
|
||||
protected String tableName;
|
||||
|
|
|
@ -14,6 +14,7 @@ import java.util.List;
|
|||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
import org.hibernate.Internal;
|
||||
import org.hibernate.LockMode;
|
||||
import org.hibernate.LockOptions;
|
||||
import org.hibernate.dialect.Dialect;
|
||||
|
@ -23,6 +24,7 @@ import org.hibernate.dialect.Dialect;
|
|||
*
|
||||
* @author Gavin King
|
||||
*/
|
||||
@Internal
|
||||
public class SimpleSelect {
|
||||
|
||||
public SimpleSelect(Dialect dialect) {
|
||||
|
|
|
@ -9,6 +9,7 @@ import java.util.Iterator;
|
|||
import java.util.LinkedHashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import org.hibernate.Internal;
|
||||
import org.hibernate.dialect.Dialect;
|
||||
|
||||
/**
|
||||
|
@ -16,6 +17,7 @@ import org.hibernate.dialect.Dialect;
|
|||
*
|
||||
* @author Gavin King
|
||||
*/
|
||||
@Internal
|
||||
public class Update {
|
||||
|
||||
protected String tableName;
|
||||
|
|
Loading…
Reference in New Issue