You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@asterixdb.apache.org by "Till Westmann (Code Review)" <do...@asterixdb.incubator.apache.org> on 2016/02/22 08:03:52 UTC

Change in asterixdb[master]: remove unused pagacke org/apache/asterix/om/io

Till Westmann has uploaded a new change for review.

  https://asterix-gerrit.ics.uci.edu/652

Change subject: remove unused pagacke org/apache/asterix/om/io
......................................................................

remove unused pagacke org/apache/asterix/om/io

Change-Id: Ib1239b5e6c83b6b93da4f02d83492118bd0e97c2
---
D asterix-om/src/main/java/org/apache/asterix/om/io/AsterixIOException.java
D asterix-om/src/main/java/org/apache/asterix/om/io/IALocation.java
D asterix-om/src/main/java/org/apache/asterix/om/io/IAOMReader.java
D asterix-om/src/main/java/org/apache/asterix/om/io/IAOMReaderWriterFactory.java
D asterix-om/src/main/java/org/apache/asterix/om/io/IAOMWriter.java
5 files changed, 0 insertions(+), 145 deletions(-)


  git pull ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb refs/changes/52/652/1

diff --git a/asterix-om/src/main/java/org/apache/asterix/om/io/AsterixIOException.java b/asterix-om/src/main/java/org/apache/asterix/om/io/AsterixIOException.java
deleted file mode 100644
index 498db12..0000000
--- a/asterix-om/src/main/java/org/apache/asterix/om/io/AsterixIOException.java
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * 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.asterix.om.io;
-
-import org.apache.asterix.common.exceptions.AsterixException;
-
-public abstract class AsterixIOException extends AsterixException {
-
-    /**
-     *
-     */
-    private static final long serialVersionUID = -6833106041007638556L;
-
-}
diff --git a/asterix-om/src/main/java/org/apache/asterix/om/io/IALocation.java b/asterix-om/src/main/java/org/apache/asterix/om/io/IALocation.java
deleted file mode 100644
index ea974dc..0000000
--- a/asterix-om/src/main/java/org/apache/asterix/om/io/IALocation.java
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * 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.asterix.om.io;
-
-public interface IALocation {
-    public String getCollectionURI();
-}
diff --git a/asterix-om/src/main/java/org/apache/asterix/om/io/IAOMReader.java b/asterix-om/src/main/java/org/apache/asterix/om/io/IAOMReader.java
deleted file mode 100644
index 93da32c..0000000
--- a/asterix-om/src/main/java/org/apache/asterix/om/io/IAOMReader.java
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * 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.asterix.om.io;
-
-import org.apache.asterix.om.base.IAObject;
-
-public interface IAOMReader {
-
-    // Initializes a reader for the collection defined by a certain location.
-    public void init(IALocation location) throws AsterixIOException;
-
-    // Reads the current object and goes to the next item in the collection.
-    // When it reaches the end, it returns null.
-    public IAObject read() throws AsterixIOException;
-
-    public void close() throws AsterixIOException;
-}
diff --git a/asterix-om/src/main/java/org/apache/asterix/om/io/IAOMReaderWriterFactory.java b/asterix-om/src/main/java/org/apache/asterix/om/io/IAOMReaderWriterFactory.java
deleted file mode 100644
index 0ccad8e..0000000
--- a/asterix-om/src/main/java/org/apache/asterix/om/io/IAOMReaderWriterFactory.java
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * 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.asterix.om.io;
-
-public interface IAOMReaderWriterFactory {
-    public IAOMWriter createOMWriter();
-
-    public IAOMReader createOMReader();
-}
diff --git a/asterix-om/src/main/java/org/apache/asterix/om/io/IAOMWriter.java b/asterix-om/src/main/java/org/apache/asterix/om/io/IAOMWriter.java
deleted file mode 100644
index 7ba09af..0000000
--- a/asterix-om/src/main/java/org/apache/asterix/om/io/IAOMWriter.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * 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.asterix.om.io;
-
-import org.apache.asterix.om.base.IAObject;
-
-public interface IAOMWriter {
-
-    // Initializes a writer for the collection defined by a certain location.
-    public void init(IALocation location) throws AsterixIOException;
-
-    // Appends the object to the previously opened collection.
-    public void append(IAObject object) throws AsterixIOException;
-
-    // Closes the writer, deallocates any additional structures.
-    public void close() throws AsterixIOException;
-
-}

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/652
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib1239b5e6c83b6b93da4f02d83492118bd0e97c2
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Till Westmann <ti...@apache.org>

Change in asterixdb[master]: remove unused pagacke org/apache/asterix/om/io

Posted by "Jenkins (Code Review)" <do...@asterixdb.incubator.apache.org>.
Jenkins has posted comments on this change.

Change subject: remove unused pagacke org/apache/asterix/om/io
......................................................................


Patch Set 1: Verified+1

Build Successful 

https://asterix-jenkins.ics.uci.edu/job/asterix-gerrit-notopic/858/ : SUCCESS

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/652
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Ib1239b5e6c83b6b93da4f02d83492118bd0e97c2
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Till Westmann <ti...@apache.org>
Gerrit-Reviewer: Ian Maxon <im...@apache.org>
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-Reviewer: abdullah alamoudi <ba...@gmail.com>
Gerrit-HasComments: No

Change in asterixdb[master]: remove unused pagacke org/apache/asterix/om/io

Posted by "abdullah alamoudi (Code Review)" <do...@asterixdb.incubator.apache.org>.
abdullah alamoudi has posted comments on this change.

Change subject: remove unused pagacke org/apache/asterix/om/io
......................................................................


Patch Set 1: Code-Review+2

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/652
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Ib1239b5e6c83b6b93da4f02d83492118bd0e97c2
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Till Westmann <ti...@apache.org>
Gerrit-Reviewer: Ian Maxon <im...@apache.org>
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-Reviewer: abdullah alamoudi <ba...@gmail.com>
Gerrit-HasComments: No

Change in asterixdb[master]: remove unused pagacke org/apache/asterix/om/io

Posted by "Jenkins (Code Review)" <do...@asterixdb.incubator.apache.org>.
Jenkins has posted comments on this change.

Change subject: remove unused pagacke org/apache/asterix/om/io
......................................................................


Patch Set 1:

Build Started https://asterix-jenkins.ics.uci.edu/job/asterix-gerrit-notopic/858/

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/652
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Ib1239b5e6c83b6b93da4f02d83492118bd0e97c2
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Till Westmann <ti...@apache.org>
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No

Change in asterixdb[master]: remove unused pagacke org/apache/asterix/om/io

Posted by "Till Westmann (Code Review)" <do...@asterixdb.incubator.apache.org>.
Till Westmann has submitted this change and it was merged.

Change subject: remove unused pagacke org/apache/asterix/om/io
......................................................................


remove unused pagacke org/apache/asterix/om/io

Change-Id: Ib1239b5e6c83b6b93da4f02d83492118bd0e97c2
Reviewed-on: https://asterix-gerrit.ics.uci.edu/652
Reviewed-by: abdullah alamoudi <ba...@gmail.com>
Tested-by: Jenkins <je...@fulliautomatix.ics.uci.edu>
---
D asterix-om/src/main/java/org/apache/asterix/om/io/AsterixIOException.java
D asterix-om/src/main/java/org/apache/asterix/om/io/IALocation.java
D asterix-om/src/main/java/org/apache/asterix/om/io/IAOMReader.java
D asterix-om/src/main/java/org/apache/asterix/om/io/IAOMReaderWriterFactory.java
D asterix-om/src/main/java/org/apache/asterix/om/io/IAOMWriter.java
5 files changed, 0 insertions(+), 145 deletions(-)

Approvals:
  abdullah alamoudi: Looks good to me, approved
  Jenkins: Verified



diff --git a/asterix-om/src/main/java/org/apache/asterix/om/io/AsterixIOException.java b/asterix-om/src/main/java/org/apache/asterix/om/io/AsterixIOException.java
deleted file mode 100644
index 498db12..0000000
--- a/asterix-om/src/main/java/org/apache/asterix/om/io/AsterixIOException.java
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * 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.asterix.om.io;
-
-import org.apache.asterix.common.exceptions.AsterixException;
-
-public abstract class AsterixIOException extends AsterixException {
-
-    /**
-     *
-     */
-    private static final long serialVersionUID = -6833106041007638556L;
-
-}
diff --git a/asterix-om/src/main/java/org/apache/asterix/om/io/IALocation.java b/asterix-om/src/main/java/org/apache/asterix/om/io/IALocation.java
deleted file mode 100644
index ea974dc..0000000
--- a/asterix-om/src/main/java/org/apache/asterix/om/io/IALocation.java
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * 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.asterix.om.io;
-
-public interface IALocation {
-    public String getCollectionURI();
-}
diff --git a/asterix-om/src/main/java/org/apache/asterix/om/io/IAOMReader.java b/asterix-om/src/main/java/org/apache/asterix/om/io/IAOMReader.java
deleted file mode 100644
index 93da32c..0000000
--- a/asterix-om/src/main/java/org/apache/asterix/om/io/IAOMReader.java
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * 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.asterix.om.io;
-
-import org.apache.asterix.om.base.IAObject;
-
-public interface IAOMReader {
-
-    // Initializes a reader for the collection defined by a certain location.
-    public void init(IALocation location) throws AsterixIOException;
-
-    // Reads the current object and goes to the next item in the collection.
-    // When it reaches the end, it returns null.
-    public IAObject read() throws AsterixIOException;
-
-    public void close() throws AsterixIOException;
-}
diff --git a/asterix-om/src/main/java/org/apache/asterix/om/io/IAOMReaderWriterFactory.java b/asterix-om/src/main/java/org/apache/asterix/om/io/IAOMReaderWriterFactory.java
deleted file mode 100644
index 0ccad8e..0000000
--- a/asterix-om/src/main/java/org/apache/asterix/om/io/IAOMReaderWriterFactory.java
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * 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.asterix.om.io;
-
-public interface IAOMReaderWriterFactory {
-    public IAOMWriter createOMWriter();
-
-    public IAOMReader createOMReader();
-}
diff --git a/asterix-om/src/main/java/org/apache/asterix/om/io/IAOMWriter.java b/asterix-om/src/main/java/org/apache/asterix/om/io/IAOMWriter.java
deleted file mode 100644
index 7ba09af..0000000
--- a/asterix-om/src/main/java/org/apache/asterix/om/io/IAOMWriter.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * 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.asterix.om.io;
-
-import org.apache.asterix.om.base.IAObject;
-
-public interface IAOMWriter {
-
-    // Initializes a writer for the collection defined by a certain location.
-    public void init(IALocation location) throws AsterixIOException;
-
-    // Appends the object to the previously opened collection.
-    public void append(IAObject object) throws AsterixIOException;
-
-    // Closes the writer, deallocates any additional structures.
-    public void close() throws AsterixIOException;
-
-}

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/652
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ib1239b5e6c83b6b93da4f02d83492118bd0e97c2
Gerrit-PatchSet: 2
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Till Westmann <ti...@apache.org>
Gerrit-Reviewer: Ian Maxon <im...@apache.org>
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-Reviewer: Till Westmann <ti...@apache.org>
Gerrit-Reviewer: abdullah alamoudi <ba...@gmail.com>