Java Code Examples for org.apache.tika.metadata.Metadata#NAMESPACE_PREFIX_DELIMITER

The following examples show how to use org.apache.tika.metadata.Metadata#NAMESPACE_PREFIX_DELIMITER . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: UpdatableInputStreamDigester.java    From extract with MIT License 4 votes vote down vote up
private String getMetadataKey() {
    return TikaCoreProperties.TIKA_META_PREFIX +
            "digest" + Metadata.NAMESPACE_PREFIX_DELIMITER +
            algorithmKeyName;
}
 
Example 2
Source File: Identifier.java    From extract with MIT License 4 votes vote down vote up
static String getKey(String algorithm) {
	return TikaCoreProperties.TIKA_META_PREFIX + "digest" + Metadata.NAMESPACE_PREFIX_DELIMITER + algorithm
			.replace("-", "");
}