Uses of Interface
org.jboss.seam.core.Expressions.ValueExpression

Packages that use Expressions.ValueExpression
org.jboss.seam.core A set of Seam components that implement Seam. 
org.jboss.seam.drools Seam components for integrating Drools. 
org.jboss.seam.exception Implementation of Seam exception handling for JSF. 
org.jboss.seam.framework A framework for data access in Seam. 
org.jboss.seam.navigation Implementation of pages.xml based navigation 
org.jboss.seam.persistence Seam components for working with JPA or Hibernate3. 
org.jboss.seam.security Seam Security 
org.jboss.seam.security.management Seam Identity Management 
org.jboss.seam.security.permission Seam Security Permissions 
org.jboss.seam.transaction Abstracts all possible transaction management APIs behind a JTA-compatible interface. 
 

Uses of Expressions.ValueExpression in org.jboss.seam.core
 

Methods in org.jboss.seam.core that return Expressions.ValueExpression
 Expressions.ValueExpression<Object> Expressions.createValueExpression(String expression)
          Create a value expression.
<T> Expressions.ValueExpression<T>
Expressions.createValueExpression(String expression, Class<T> type)
          Create a value expression.
 Expressions.ValueExpression Init.FactoryExpression.getValueBinding()
           
 

Uses of Expressions.ValueExpression in org.jboss.seam.drools
 

Methods in org.jboss.seam.drools that return Expressions.ValueExpression
 Expressions.ValueExpression<org.drools.spi.ConsequenceExceptionHandler> RuleBase.getConsequenceExceptionHandler()
           
 Expressions.ValueExpression<org.drools.RuleBase> ManagedWorkingMemory.getRuleBase()
           
 

Methods in org.jboss.seam.drools with parameters of type Expressions.ValueExpression
 void RuleBase.setConsequenceExceptionHandler(Expressions.ValueExpression<org.drools.spi.ConsequenceExceptionHandler> consequenceExceptionHandler)
           
 void ManagedWorkingMemory.setRuleBase(Expressions.ValueExpression<org.drools.RuleBase> ruleBase)
           
 

Uses of Expressions.ValueExpression in org.jboss.seam.exception
 

Constructors in org.jboss.seam.exception with parameters of type Expressions.ValueExpression
ConfigRedirectHandler(Expressions.ValueExpression<String> id, Class clazz, boolean conversation, String message, javax.faces.application.FacesMessage.Severity messageSeverity)
          Construct a ConfigRedirectHandler.
 

Uses of Expressions.ValueExpression in org.jboss.seam.framework
 

Fields in org.jboss.seam.framework declared as Expressions.ValueExpression
protected  Expressions.ValueExpression<T> Home.newInstance
           
 

Methods in org.jboss.seam.framework that return Expressions.ValueExpression
protected  Expressions.ValueExpression Controller.createValueExpression(String expression)
           
protected
<T> Expressions.ValueExpression<T>
Controller.createValueExpression(String expression, Class<T> type)
           
 Expressions.ValueExpression Home.getCreatedMessage()
          Message displayed to user when the managed entity is created.
 Expressions.ValueExpression Home.getDeletedMessage()
          Message displayed to user when the managed entity is deleted.
 Expressions.ValueExpression Home.getNewInstance()
          ValueExpression to execute to load a new instance.
 Expressions.ValueExpression Home.getUpdatedMessage()
          Message displayed to user when the managed entity is updated.
 

Methods in org.jboss.seam.framework that return types with arguments of type Expressions.ValueExpression
protected  List<Expressions.ValueExpression> Query.getQueryParameters()
           
protected  List<Expressions.ValueExpression> Query.getRestrictionParameters()
           
 List<Expressions.ValueExpression> Query.getRestrictions()
          List of restrictions to apply to the query.
 

Methods in org.jboss.seam.framework with parameters of type Expressions.ValueExpression
 void Home.setCreatedMessage(Expressions.ValueExpression createdMessage)
          Message displayed to user when the managed entity is created.
 void Home.setDeletedMessage(Expressions.ValueExpression deletedMessage)
          Message displayed to user when the managed entity is deleted.
 void Home.setNewInstance(Expressions.ValueExpression newInstance)
          ValueExpression to execute to load a new instance.
 void Home.setUpdatedMessage(Expressions.ValueExpression updatedMessage)
          Message displayed to user when the managed entity is updated.
 

Method parameters in org.jboss.seam.framework with type arguments of type Expressions.ValueExpression
 void Query.setRestrictions(List<Expressions.ValueExpression> restrictions)
          Calling setRestrictions causes the restrictions to be reparsed and the query refreshed
 

Uses of Expressions.ValueExpression in org.jboss.seam.navigation
 

Fields in org.jboss.seam.navigation declared as Expressions.ValueExpression
 Expressions.ValueExpression<Object> Header.expression
           
 

Methods in org.jboss.seam.navigation that return Expressions.ValueExpression
 Expressions.ValueExpression<Boolean> ConversationControl.getBeginConversationCondition()
           
 Expressions.ValueExpression Rule.getCondition()
           
 Expressions.ValueExpression Param.getConverterValueExpression()
           
 Expressions.ValueExpression<Boolean> ConversationControl.getEndConversationCondition()
           
 Expressions.ValueExpression<String> Page.getNoConversationViewId()
           
 Expressions.ValueExpression<String> Pages.getNoConversationViewId()
          The global setting for no-conversation-viewid.
 Expressions.ValueExpression<Object> Navigation.getOutcome()
           
 Expressions.ValueExpression<Long> ProcessControl.getProcessId()
           
 Expressions.ValueExpression<Long> TaskControl.getTaskId()
           
 Expressions.ValueExpression<String> TaskControl.getTransition()
           
 Expressions.ValueExpression Param.getValidatorValueExpression()
           
 Expressions.ValueExpression<Object> Header.getValue()
           
 Expressions.ValueExpression Put.getValue()
           
 Expressions.ValueExpression Param.getValueExpression()
           
 Expressions.ValueExpression Action.getValueExpression()
           
 

Methods in org.jboss.seam.navigation with parameters of type Expressions.ValueExpression
 void ConversationControl.setBeginConversationCondition(Expressions.ValueExpression<Boolean> beginConversationCondition)
           
 void Rule.setCondition(Expressions.ValueExpression expression)
           
 void Param.setConverterValueExpression(Expressions.ValueExpression converterValueExpression)
           
 void ConversationControl.setEndConversationCondition(Expressions.ValueExpression<Boolean> endConversationCondition)
           
 void Page.setNoConversationViewId(Expressions.ValueExpression<String> noConversationViewId)
           
 void Pages.setNoConversationViewId(Expressions.ValueExpression<String> noConversationViewId)
           
 void Navigation.setOutcome(Expressions.ValueExpression<Object> outcomeValueExpression)
           
 void ProcessControl.setProcessId(Expressions.ValueExpression<Long> processId)
           
 void TaskControl.setTaskId(Expressions.ValueExpression<Long> taskId)
           
 void TaskControl.setTransition(Expressions.ValueExpression<String> transition)
           
 void Param.setValidatorValueExpression(Expressions.ValueExpression validatorValueExpression)
           
 void Put.setValue(Expressions.ValueExpression value)
           
 void Header.setValue(Expressions.ValueExpression<Object> valueExpression)
           
 void Param.setValueExpression(Expressions.ValueExpression valueExpression)
           
 void Action.setValueExpression(Expressions.ValueExpression valueExpression)
           
 

Constructors in org.jboss.seam.navigation with parameters of type Expressions.ValueExpression
RedirectNavigationHandler(Expressions.ValueExpression<String> viewId, Expressions.ValueExpression<String> url, List<Param> params, String message, javax.faces.application.FacesMessage.Severity severity, String control, boolean includePageParams)
           
RedirectNavigationHandler(Expressions.ValueExpression<String> viewId, Expressions.ValueExpression<String> url, List<Param> params, String message, javax.faces.application.FacesMessage.Severity severity, String control, boolean includePageParams)
           
RenderNavigationHandler(Expressions.ValueExpression<String> viewId, String message, javax.faces.application.FacesMessage.Severity severity, String control)
           
 

Uses of Expressions.ValueExpression in org.jboss.seam.persistence
 

Methods in org.jboss.seam.persistence that return Expressions.ValueExpression
 Expressions.ValueExpression Filter.getEnabled()
           
 Expressions.ValueExpression<javax.persistence.EntityManagerFactory> ManagedPersistenceContext.getEntityManagerFactory()
          A value binding expression that returns an EntityManagerFactory, for use of JPA outside of Java EE 5 / Embeddable EJB3.
 Expressions.ValueExpression<org.hibernate.SessionFactory> ManagedHibernateSession.getSessionFactory()
           
 

Methods in org.jboss.seam.persistence that return types with arguments of type Expressions.ValueExpression
 Map<String,Expressions.ValueExpression> Filter.getParameters()
          The filter parameters.
 List<Expressions.ValueExpression> QueryParser.getParameterValueBindings()
           
 

Methods in org.jboss.seam.persistence with parameters of type Expressions.ValueExpression
 void Filter.setEnabled(Expressions.ValueExpression enabled)
           
 void ManagedPersistenceContext.setEntityManagerFactory(Expressions.ValueExpression<javax.persistence.EntityManagerFactory> entityManagerFactory)
           
 void ManagedHibernateSession.setSessionFactory(Expressions.ValueExpression<org.hibernate.SessionFactory> sessionFactory)
          A value binding expression that returns a SessionFactory, if it is to be obtained as a Seam component reference
 

Method parameters in org.jboss.seam.persistence with type arguments of type Expressions.ValueExpression
 void Filter.setParameters(Map<String,Expressions.ValueExpression> parameters)
           
 

Uses of Expressions.ValueExpression in org.jboss.seam.security
 

Methods in org.jboss.seam.security that return Expressions.ValueExpression
 Expressions.ValueExpression JpaTokenStore.getEntityManager()
           
 

Methods in org.jboss.seam.security with parameters of type Expressions.ValueExpression
 void JpaTokenStore.setEntityManager(Expressions.ValueExpression expression)
           
 

Uses of Expressions.ValueExpression in org.jboss.seam.security.management
 

Methods in org.jboss.seam.security.management that return Expressions.ValueExpression
 Expressions.ValueExpression JpaIdentityStore.getEntityManager()
           
 

Methods in org.jboss.seam.security.management with parameters of type Expressions.ValueExpression
 void JpaIdentityStore.setEntityManager(Expressions.ValueExpression expression)
           
 

Uses of Expressions.ValueExpression in org.jboss.seam.security.permission
 

Methods in org.jboss.seam.security.permission that return Expressions.ValueExpression
 Expressions.ValueExpression JpaPermissionStore.getEntityManager()
           
 

Methods in org.jboss.seam.security.permission with parameters of type Expressions.ValueExpression
 void JpaPermissionStore.setEntityManager(Expressions.ValueExpression expression)
           
 

Uses of Expressions.ValueExpression in org.jboss.seam.transaction
 

Methods in org.jboss.seam.transaction that return Expressions.ValueExpression
 Expressions.ValueExpression<javax.persistence.EntityManager> EntityTransaction.getEntityManager()
           
 Expressions.ValueExpression<org.hibernate.Session> HibernateTransaction.getSession()
           
 

Methods in org.jboss.seam.transaction with parameters of type Expressions.ValueExpression
 void EntityTransaction.setEntityManager(Expressions.ValueExpression<javax.persistence.EntityManager> entityManager)
           
 void HibernateTransaction.setSession(Expressions.ValueExpression<org.hibernate.Session> entityManager)