org.apache.gora.store
Interface FileBackedDataStore<K,T extends Persistent>

All Superinterfaces:
DataStore<K,T>
All Known Implementing Classes:
AvroStore, DataFileAvroStore, FileBackedDataStoreBase

public interface FileBackedDataStore<K,T extends Persistent>
extends DataStore<K,T>

FileBackedDataStore supplies necessary interfaces to set input and output paths for data stored which are file based.


Method Summary
 String getInputPath()
           
 InputStream getInputStream()
           
 String getOutputPath()
           
 OutputStream getOutputStream()
           
 void setInputPath(String inputPath)
           
 void setInputStream(InputStream inputStream)
           
 void setOutputPath(String outputPath)
           
 void setOutputStream(OutputStream outputStream)
           
 
Methods inherited from interface org.apache.gora.store.DataStore
close, createSchema, delete, deleteByQuery, deleteSchema, execute, flush, get, get, getBeanFactory, getKeyClass, getPartitions, getPersistentClass, getSchemaName, initialize, newKey, newPersistent, newQuery, put, schemaExists, setBeanFactory, setKeyClass, setPersistentClass, truncateSchema
 

Method Detail

setInputPath

void setInputPath(String inputPath)

setOutputPath

void setOutputPath(String outputPath)

getInputPath

String getInputPath()

getOutputPath

String getOutputPath()

setInputStream

void setInputStream(InputStream inputStream)

setOutputStream

void setOutputStream(OutputStream outputStream)

getInputStream

InputStream getInputStream()

getOutputStream

OutputStream getOutputStream()


Copyright © 2010-2013 The Apache Software Foundation. All Rights Reserved.