Uses of Class
org.axonframework.saga.AssociationValue

Packages that use AssociationValue
org.axonframework.saga   
org.axonframework.saga.annotation   
org.axonframework.saga.repository   
org.axonframework.saga.repository.inmemory   
org.axonframework.saga.repository.jpa   
 

Uses of AssociationValue in org.axonframework.saga
 

Methods in org.axonframework.saga that return types with arguments of type AssociationValue
 Set<AssociationValue> AssociationValueResolver.extractAssociationValue(Event event)
          Extracts the Association Values from the given event.
 

Methods in org.axonframework.saga with parameters of type AssociationValue
 void AssociationValues.ChangeListener.onAssociationValueAdded(AssociationValue newAssociationValue)
          Invoked when an AssociationValue has been added to the collection.
 void AssociationValues.ChangeListener.onAssociationValueRemoved(AssociationValue associationValue)
          Invoked when an AssociationValue is removed from the collection.
 

Method parameters in org.axonframework.saga with type arguments of type AssociationValue
<T extends Saga>
Set<T>
SagaRepository.find(Class<T> type, Set<AssociationValue> associationValue)
          Find saga instances of the given type that have been associated with the given associationValue.
 

Uses of AssociationValue in org.axonframework.saga.annotation
 

Methods in org.axonframework.saga.annotation that return types with arguments of type AssociationValue
 Iterator<AssociationValue> AssociationValuesImpl.iterator()
           
 

Methods in org.axonframework.saga.annotation with parameters of type AssociationValue
 boolean AssociationValuesImpl.add(AssociationValue associationValue)
           
protected  void AbstractAnnotatedSaga.associateWith(AssociationValue property)
          Registers a AssociationValue with the given saga.
protected  void AbstractAnnotatedSaga.removeAssociationWith(AssociationValue property)
          Removes the given association from this Saga.
 

Method parameters in org.axonframework.saga.annotation with type arguments of type AssociationValue
 boolean AssociationValuesImpl.addAll(Collection<? extends AssociationValue> c)
           
 

Uses of AssociationValue in org.axonframework.saga.repository
 

Methods in org.axonframework.saga.repository with parameters of type AssociationValue
 void AssociationValueMap.add(AssociationValue associationValue, String sagaIdentifier)
          Adds an association between the given associationValue and sagaIdentifier.
 Set<String> AssociationValueMap.findSagas(AssociationValue associationValue)
          Returns the identifiers of the Sagas that have been associated with the given associationValue.
 void AssociationValueMap.remove(AssociationValue associationValue, String sagaIdentifier)
          Removes an association between the given associationValue and sagaIdentifier.
protected abstract  void AbstractSagaRepository.removeAssociationValue(AssociationValue associationValue, String sagaIdentifier)
          Removes the association value that has been associated with Saga, identified with the given sagaIdentifier.
protected abstract  void AbstractSagaRepository.storeAssociationValue(AssociationValue associationValue, String sagaIdentifier)
          Store the given associationValue, which has been associated with given sagaIdentifier.
 

Method parameters in org.axonframework.saga.repository with type arguments of type AssociationValue
<T extends Saga>
Set<T>
AbstractSagaRepository.find(Class<T> type, Set<AssociationValue> associationValues)
           
 

Uses of AssociationValue in org.axonframework.saga.repository.inmemory
 

Method parameters in org.axonframework.saga.repository.inmemory with type arguments of type AssociationValue
<T extends Saga>
Set<T>
InMemorySagaRepository.find(Class<T> type, Set<AssociationValue> associationValues)
           
 

Uses of AssociationValue in org.axonframework.saga.repository.jpa
 

Methods in org.axonframework.saga.repository.jpa that return AssociationValue
 AssociationValue AssociationValueEntry.getAssociationValue()
          Returns the association value contained in this entry.
 

Methods in org.axonframework.saga.repository.jpa with parameters of type AssociationValue
protected  void JpaSagaRepository.removeAssociationValue(AssociationValue associationValue, String sagaIdentifier)
           
protected  void JpaSagaRepository.storeAssociationValue(AssociationValue associationValue, String sagaIdentifier)
           
 

Constructors in org.axonframework.saga.repository.jpa with parameters of type AssociationValue
AssociationValueEntry(String sagaIdentifier, AssociationValue associationValue)
          Initialize a new AssociationValueEntry for a saga with given sagaIdentifier and associationValue.
 



Copyright © 2011. All Rights Reserved.