org.modeshape.jcr.mimetype
Class MimeTypeDetectors
java.lang.Object
org.modeshape.jcr.api.mimetype.MimeTypeDetector
org.modeshape.jcr.mimetype.MimeTypeDetectors
@ThreadSafe
public final class MimeTypeDetectors
- extends MimeTypeDetector
Implementation of MimeTypeDetector
which holds an inner list of different MimeTypeDetector
implementations and
queries each of them, in order to determine a mime-type.
Method Summary |
String |
mimeTypeOf(String name,
Binary binaryValue)
Returns the first non-null result of iterating over the registered MIME-type detectors If the MIME-type cannot be
determined by any registered detector, "text/plain" or "application/octet-stream" will be returned, the former only if it
is determined the stream contains no nulls. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
MimeTypeDetectors
public MimeTypeDetectors()
MimeTypeDetectors
public MimeTypeDetectors(Environment environment)
mimeTypeOf
public String mimeTypeOf(String name,
Binary binaryValue)
throws RepositoryException,
IOException
- Returns the first non-null result of iterating over the registered MIME-type detectors If the MIME-type cannot be
determined by any registered detector, "text/plain" or "application/octet-stream" will be returned, the former only if it
is determined the stream contains no nulls.
- Specified by:
mimeTypeOf
in class MimeTypeDetector
- Parameters:
name
- The name of the data source; may be null
.binaryValue
- The value which contains the raw data for which the mime type should be returned; may be null
.
- Returns:
- The MIME-type of the data source, or optionally
null
if the MIME-type could not be determined.
- Throws:
RepositoryException
- if any error occurs while attempting to read the stream from the binary value
IOException
- If an error occurs reading the supplied content.- See Also:
MimeTypeDetector.mimeTypeOf(String, javax.jcr.Binary)
Copyright © 2008-2012 JBoss, a division of Red Hat. All Rights Reserved.