HHH-5881 - Add getter for "namedParameters" to QueryKey
This commit is contained in:
parent
dddc959311
commit
c8431ce5d9
|
@ -25,6 +25,7 @@ package org.hibernate.cache.spi;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
import java.util.Collections;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
|
@ -54,7 +55,7 @@ public class QueryKey implements Serializable {
|
||||||
private final String tenantIdentifier;
|
private final String tenantIdentifier;
|
||||||
private final Set filterKeys;
|
private final Set filterKeys;
|
||||||
|
|
||||||
// the user provided resulttransformer, not the one used with "select new". Here to avoid mangling
|
// the explicit user-provided result transformer, not the one used with "select new". Here to avoid mangling
|
||||||
// transformed/non-transformed results.
|
// transformed/non-transformed results.
|
||||||
private final CacheableResultTransformer customTransformer;
|
private final CacheableResultTransformer customTransformer;
|
||||||
|
|
||||||
|
@ -174,10 +175,25 @@ public class QueryKey implements Serializable {
|
||||||
this.hashCode = generateHashCode();
|
this.hashCode = generateHashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provides access to the explicitly user-provided result transformer.
|
||||||
|
*
|
||||||
|
* @return The result transformer.
|
||||||
|
*/
|
||||||
public CacheableResultTransformer getResultTransformer() {
|
public CacheableResultTransformer getResultTransformer() {
|
||||||
return customTransformer;
|
return customTransformer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provide (unmodifiable) access to the named parameters that are part of this query.
|
||||||
|
*
|
||||||
|
* @return The (unmodifiable) map of named parameters
|
||||||
|
*/
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
public Map getNamedParameters() {
|
||||||
|
return Collections.unmodifiableMap( namedParameters );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Deserialization hook used to re-init the cached hashcode which is needed for proper clustering support.
|
* Deserialization hook used to re-init the cached hashcode which is needed for proper clustering support.
|
||||||
*
|
*
|
||||||
|
@ -206,9 +222,6 @@ public class QueryKey implements Serializable {
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
public boolean equals(Object other) {
|
public boolean equals(Object other) {
|
||||||
if ( !( other instanceof QueryKey ) ) {
|
if ( !( other instanceof QueryKey ) ) {
|
||||||
|
@ -251,17 +264,11 @@ public class QueryKey implements Serializable {
|
||||||
&& EqualsHelper.equals( tenantIdentifier, that.tenantIdentifier );
|
&& EqualsHelper.equals( tenantIdentifier, that.tenantIdentifier );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
return hashCode;
|
return hashCode;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
StringBuilder buffer = new StringBuilder( "sql: " ).append( sqlQueryString );
|
StringBuilder buffer = new StringBuilder( "sql: " ).append( sqlQueryString );
|
||||||
|
|
Loading…
Reference in New Issue