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

io.ebeaninternal.server.el.ElPropertyValue Maven / Gradle / Ivy

There is a newer version: 15.8.1
Show newest version
package io.ebeaninternal.server.el;

import io.ebean.plugin.ExpressionPath;
import io.ebeaninternal.api.SpiExpressionRequest;

/**
 * The expression language object that can get values.
 * 

* This can be used for local sorting and filtering. *

*/ public interface ElPropertyValue extends ElPropertyDeploy, ExpressionPath { /** * Return the logical id value expression taking into account embedded id's. */ String assocIdInValueExpr(boolean not, int size); /** * Return the logical id in expression taking into account embedded id's. */ String assocIdInExpr(String prefix); /** * Return the logical where clause to support "Is empty". */ String assocIsEmpty(SpiExpressionRequest request, String path); /** * Return true if this is an ManyToOne or OneToOne associated bean property. */ @Override boolean isAssocId(); /** * Return true if the property is a OneToMany or ManyToMany associated bean property. */ boolean isAssocMany(); /** * Return true if any path of this path contains a Associated One or Many. */ boolean isAssocProperty(); /** * Return true if the property is encrypted via Java. */ boolean isLocalEncrypted(); /** * Return true if the property is encrypted in the DB. */ boolean isDbEncrypted(); /** * Encrypt the input value return the encrypted value. */ Object localEncrypt(Object value); /** * Return the value ensuring objects prior to the top scalar property are * automatically populated. */ Object pathGetNested(Object bean); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy