All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.avaje.ebeaninternal.server.deploy.DeployPropertyParser Maven / Gradle / Ivy

There is a newer version: 9.5.1
Show newest version
package com.avaje.ebeaninternal.server.deploy;

import java.util.HashSet;
import java.util.Set;

import com.avaje.ebeaninternal.server.el.ElPropertyDeploy;

/**
 * Converts logical property names to database columns with table alias.
 * 

* In doing so it builds an 'includes' set which becomes the joins required to * support the properties parsed. *

*/ public final class DeployPropertyParser extends DeployParser { private final BeanDescriptor beanDescriptor; private final Set includes = new HashSet(); public DeployPropertyParser(BeanDescriptor beanDescriptor) { this.beanDescriptor = beanDescriptor; } public Set getIncludes() { return includes; } @Override public String getDeployWord(String expression) { ElPropertyDeploy elProp = beanDescriptor.getElPropertyDeploy(expression); if (elProp == null){ return null; } else { addIncludes(elProp.getElPrefix()); return elProp.getElPlaceholder(encrypted); } } @Override public String convertWord() { String r = getDeployWord(word); return r == null ? word : r; } private void addIncludes(String prefix) { if (prefix != null){ includes.add(prefix); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy