Updated Branches:
  refs/heads/cassandra-1.2 ab8a28e36 -> 97bc9c7e2
  refs/heads/trunk 1d6bed3ba -> ef29c82e8


add ICompressedFile


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/97bc9c7e
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/97bc9c7e
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/97bc9c7e

Branch: refs/heads/cassandra-1.2
Commit: 97bc9c7e22c168b198e7d05f841f550105553f89
Parents: ab8a28e
Author: Jonathan Ellis <jbel...@apache.org>
Authored: Tue Jul 30 15:16:15 2013 -0500
Committer: Jonathan Ellis <jbel...@apache.org>
Committed: Tue Jul 30 15:16:15 2013 -0500

----------------------------------------------------------------------
 .../cassandra/io/util/ICompressedFile.java      | 25 ++++++++++++++++++++
 1 file changed, 25 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/97bc9c7e/src/java/org/apache/cassandra/io/util/ICompressedFile.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/cassandra/io/util/ICompressedFile.java 
b/src/java/org/apache/cassandra/io/util/ICompressedFile.java
new file mode 100644
index 0000000..3ca7718
--- /dev/null
+++ b/src/java/org/apache/cassandra/io/util/ICompressedFile.java
@@ -0,0 +1,25 @@
+/*
+ * 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.cassandra.io.util;
+
+import org.apache.cassandra.io.compress.CompressionMetadata;
+
+public interface ICompressedFile
+{
+    public CompressionMetadata getMetadata();
+}

Reply via email to