INT-1527 moved MetadataStore from 'context.metadata' to 'store'

This commit is contained in:
Mark Fisher
2010-10-27 13:41:36 -04:00
committed by Chris Beams
parent 562f4d3dd1
commit 5c3a2185a3
9 changed files with 12 additions and 11 deletions

View File

@@ -21,8 +21,8 @@ import org.springframework.beans.factory.BeanFactory;
import org.springframework.core.convert.ConversionService;
import org.springframework.integration.MessageChannel;
import org.springframework.integration.context.metadata.MetadataStore;
import org.springframework.integration.scheduling.PollerMetadata;
import org.springframework.integration.store.MetadataStore;
import org.springframework.scheduling.TaskScheduler;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.integration.context.metadata;
package org.springframework.integration.store;
/**
* Strategy interface for storing metadata from certain adapters

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.integration.context.metadata;
package org.springframework.integration.store;
import java.io.File;
import java.io.FileInputStream;

View File

@@ -11,7 +11,7 @@
* specific language governing permissions and limitations under the License.
*/
package org.springframework.integration.context.metadata;
package org.springframework.integration.store;
import java.util.HashMap;
import java.util.Map;

View File

@@ -27,6 +27,7 @@ import org.junit.Test;
import org.springframework.core.io.FileSystemResource;
import org.springframework.core.io.support.PropertiesLoaderUtils;
import org.springframework.integration.store.PropertiesPersistingMetadataStore;
/**
* @author Oleg Zhurakousky