#1747 - Refactor tidy tighten access on ebeaninternal/server/deploy

Adds PropertyAssocMany to ensure public access on BeanPropertyAssocMany helper methods for ebean-elastic integration.
This commit is contained in:
rob bygrave
2019-07-02 20:46:49 +12:00
parent 140178bb47
commit 5f2454831e
40 changed files with 275 additions and 268 deletions
@@ -56,7 +56,7 @@ public class TableJoinColumn {
this.queryHash = hash();
}
int hash() {
private int hash() {
int result = localDbColumn != null ? localDbColumn.hashCode() : 0;
result = 92821 * result + (foreignDbColumn != null ? foreignDbColumn.hashCode() : 0);
result = 92821 * result + (localSqlFormula != null ? localSqlFormula.hashCode() : 0);
@@ -93,7 +93,7 @@ public class TableJoinColumn {
/**
* Return a hash for including in a query plan.
*/
public int queryHash() {
int queryHash() {
return queryHash;
}
@@ -121,7 +121,7 @@ public class TableJoinColumn {
/**
* Return true if this column should be updateable.
*/
public boolean isUpdateable() {
boolean isUpdateable() {
return updateable;
}