You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@olingo.apache.org by ch...@apache.org on 2013/09/13 13:05:22 UTC

git commit: JPA: Remove deprecated classes

Updated Branches:
  refs/heads/master b53806707 -> 1b9ae13f4


JPA: Remove deprecated classes


Project: http://git-wip-us.apache.org/repos/asf/incubator-olingo-odata2/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-olingo-odata2/commit/1b9ae13f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-olingo-odata2/tree/1b9ae13f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-olingo-odata2/diff/1b9ae13f

Branch: refs/heads/master
Commit: 1b9ae13f42ec00deec016b2a924f81a180171536
Parents: b538067
Author: Chandan V A <ch...@sap.com>
Authored: Fri Sep 13 16:34:57 2013 +0530
Committer: Chandan V A <ch...@sap.com>
Committed: Fri Sep 13 16:34:57 2013 +0530

----------------------------------------------------------------------
 .../api/jpa/access/JPAProcessorExtension.java   | 45 --------------------
 .../api/jpa/access/JPAProcessorOperation.java   | 23 ----------
 .../api/jpa/access/JPAProcessorRegistry.java    | 28 ------------
 3 files changed, 96 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-olingo-odata2/blob/1b9ae13f/jpa-api/src/main/java/org/apache/olingo/odata2/processor/api/jpa/access/JPAProcessorExtension.java
----------------------------------------------------------------------
diff --git a/jpa-api/src/main/java/org/apache/olingo/odata2/processor/api/jpa/access/JPAProcessorExtension.java b/jpa-api/src/main/java/org/apache/olingo/odata2/processor/api/jpa/access/JPAProcessorExtension.java
deleted file mode 100644
index fb1364e..0000000
--- a/jpa-api/src/main/java/org/apache/olingo/odata2/processor/api/jpa/access/JPAProcessorExtension.java
+++ /dev/null
@@ -1,45 +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.olingo.odata2.processor.api.jpa.access;
-
-import java.util.HashMap;
-import java.util.List;
-
-public class JPAProcessorExtension {
-
-  private JPAProcessor jpaProcessor;
-  private HashMap<JPAProcessorOperation, List<String>> operationEntityMap;
-
-  public JPAProcessor getJpaProcessor() {
-    return jpaProcessor;
-  }
-
-  public void setJpaProcessor(final JPAProcessor jpaProcessor) {
-    this.jpaProcessor = jpaProcessor;
-  }
-
-  public HashMap<JPAProcessorOperation, List<String>> getOperationEntityMap() {
-    return operationEntityMap;
-  }
-
-  public void setOperationEntityMap(final HashMap<JPAProcessorOperation, List<String>> operationEntityMap) {
-    this.operationEntityMap = operationEntityMap;
-  }
-
-}

http://git-wip-us.apache.org/repos/asf/incubator-olingo-odata2/blob/1b9ae13f/jpa-api/src/main/java/org/apache/olingo/odata2/processor/api/jpa/access/JPAProcessorOperation.java
----------------------------------------------------------------------
diff --git a/jpa-api/src/main/java/org/apache/olingo/odata2/processor/api/jpa/access/JPAProcessorOperation.java b/jpa-api/src/main/java/org/apache/olingo/odata2/processor/api/jpa/access/JPAProcessorOperation.java
deleted file mode 100644
index 7ee0df9..0000000
--- a/jpa-api/src/main/java/org/apache/olingo/odata2/processor/api/jpa/access/JPAProcessorOperation.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.olingo.odata2.processor.api.jpa.access;
-
-public enum JPAProcessorOperation {
-  Read, Query, Create, Update, Delete
-}

http://git-wip-us.apache.org/repos/asf/incubator-olingo-odata2/blob/1b9ae13f/jpa-api/src/main/java/org/apache/olingo/odata2/processor/api/jpa/access/JPAProcessorRegistry.java
----------------------------------------------------------------------
diff --git a/jpa-api/src/main/java/org/apache/olingo/odata2/processor/api/jpa/access/JPAProcessorRegistry.java b/jpa-api/src/main/java/org/apache/olingo/odata2/processor/api/jpa/access/JPAProcessorRegistry.java
deleted file mode 100644
index 57ea227..0000000
--- a/jpa-api/src/main/java/org/apache/olingo/odata2/processor/api/jpa/access/JPAProcessorRegistry.java
+++ /dev/null
@@ -1,28 +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.olingo.odata2.processor.api.jpa.access;
-
-/**
- * 
- *  
- *
- */
-public class JPAProcessorRegistry {
-
-}