logdog.Common.BlobStore
Interface BlobFileWriter

All Known Implementing Classes:
GAEBlobWriter

public interface BlobFileWriter

BlobStore의 작업 중 쓰기와 삭제 작업을 추상화한 인터페이스이다.

Since:
2012. 11. 15.오전 5:52:48 TODO
Author:
Karuana

Method Summary
 boolean BlobDelete(com.google.appengine.api.blobstore.BlobKey key)
          Key가 가르키는 요소를 삭제한다.
 com.google.appengine.api.blobstore.BlobKey TextWrite(java.lang.String text)
          파라미터로 넘겨져오는 데이터를 BlobStore에 기록한다.
 

Method Detail

TextWrite

com.google.appengine.api.blobstore.BlobKey TextWrite(java.lang.String text)
파라미터로 넘겨져오는 데이터를 BlobStore에 기록한다. 기록 후 저장된 요소의 Key를 리턴한다.

Parameters:
text -
Returns:
BlobKey(저장된 데이터의 키 값)
Since:
2012. 11. 15.오전 5:53:21 TODO

BlobDelete

boolean BlobDelete(com.google.appengine.api.blobstore.BlobKey key)
Key가 가르키는 요소를 삭제한다.

Parameters:
key -
Returns:
작업의 결과
Since:
2012. 11. 15.오전 5:54:30 TODO