You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by ma...@apache.org on 2007/09/21 17:08:13 UTC

svn commit: r578162 - /incubator/tika/trunk/src/main/java/org/apache/tika/metadata/TikaMimeKeys.java

Author: mattmann
Date: Fri Sep 21 08:08:13 2007
New Revision: 578162

URL: http://svn.apache.org/viewvc?rev=578162&view=rev
Log:
- patch for TIKA-6 (cont.)

Added:
    incubator/tika/trunk/src/main/java/org/apache/tika/metadata/TikaMimeKeys.java

Added: incubator/tika/trunk/src/main/java/org/apache/tika/metadata/TikaMimeKeys.java
URL: http://svn.apache.org/viewvc/incubator/tika/trunk/src/main/java/org/apache/tika/metadata/TikaMimeKeys.java?rev=578162&view=auto
==============================================================================
--- incubator/tika/trunk/src/main/java/org/apache/tika/metadata/TikaMimeKeys.java (added)
+++ incubator/tika/trunk/src/main/java/org/apache/tika/metadata/TikaMimeKeys.java Fri Sep 21 08:08:13 2007
@@ -0,0 +1,33 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.tika.metadata;
+
+/**
+ * @author mattmann
+ * @version $Revision$
+ * 
+ * <p>
+ * A collection of Tika metadata keys used in Mime Type resolution
+ * </p>.
+ */
+public interface TikaMimeKeys {
+
+    public static final String TIKA_MIME_FILE = "tika.mime.file";
+
+    public static final String MIME_TYPE_MAGIC = "mime.type.magic";
+}