Class BlobStoreBlob
- java.lang.Object
-
- org.apache.jackrabbit.oak.plugins.blob.BlobStoreBlob
-
- All Implemented Interfaces:
org.apache.jackrabbit.oak.api.Blob
public class BlobStoreBlob extends Object implements org.apache.jackrabbit.oak.api.Blob
A blob implementation.
-
-
Constructor Summary
Constructors Constructor Description BlobStoreBlob(org.apache.jackrabbit.oak.spi.blob.BlobStore blobStore, String blobId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object other)
String
getBlobId()
org.apache.jackrabbit.oak.spi.blob.BlobStore
getBlobStore()
String
getContentIdentity()
@NotNull InputStream
getNewStream()
@Nullable String
getReference()
int
hashCode()
boolean
isInlined()
long
length()
String
toString()
-
-
-
Constructor Detail
-
BlobStoreBlob
public BlobStoreBlob(org.apache.jackrabbit.oak.spi.blob.BlobStore blobStore, String blobId)
-
-
Method Detail
-
getNewStream
@NotNull public @NotNull InputStream getNewStream()
- Specified by:
getNewStream
in interfaceorg.apache.jackrabbit.oak.api.Blob
-
length
public long length()
- Specified by:
length
in interfaceorg.apache.jackrabbit.oak.api.Blob
-
getReference
@Nullable public @Nullable String getReference()
- Specified by:
getReference
in interfaceorg.apache.jackrabbit.oak.api.Blob
-
getContentIdentity
public String getContentIdentity()
- Specified by:
getContentIdentity
in interfaceorg.apache.jackrabbit.oak.api.Blob
-
isInlined
public boolean isInlined()
- Specified by:
isInlined
in interfaceorg.apache.jackrabbit.oak.api.Blob
-
getBlobId
public String getBlobId()
-
getBlobStore
public org.apache.jackrabbit.oak.spi.blob.BlobStore getBlobStore()
-
-