Spring Integration

org.springframework.integration.store
Interface MetadataStore

All Known Implementing Classes:
PropertiesPersistingMetadataStore, SimpleMetadataStore

public interface MetadataStore

Strategy interface for storing metadata from certain adapters to avoid duplicate delivery of messages, for example.

Since:
2.0
Author:
Josh Long, Oleg Zhurakousky, Mark Fisher

Method Summary
 java.lang.String get(java.lang.String key)
          Reads a value for the given key from this MetadataStore.
 void put(java.lang.String key, java.lang.String value)
          Writes a key value pair to this MetadataStore.
 

Method Detail

put

void put(java.lang.String key,
         java.lang.String value)
Writes a key value pair to this MetadataStore.


get

java.lang.String get(java.lang.String key)
Reads a value for the given key from this MetadataStore.


Spring Integration