removing stale class
Project: http://git-wip-us.apache.org/repos/asf/airavata/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/69e71fbd Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/69e71fbd Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/69e71fbd Branch: refs/heads/master Commit: 69e71fbd04752e60e9dcbe6e2a2bbc78cac15ca1 Parents: 9dd7c14 Author: scnakandala <[email protected]> Authored: Mon Jun 27 15:25:51 2016 -0400 Committer: scnakandala <[email protected]> Committed: Mon Jun 27 15:25:51 2016 -0400 ---------------------------------------------------------------------- .../impl/LoggingExperimentCatalogImpl.java | 97 -------------------- 1 file changed, 97 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata/blob/69e71fbd/modules/registry/registry-core/src/main/java/org/apache/airavata/registry/core/experiment/catalog/impl/LoggingExperimentCatalogImpl.java ---------------------------------------------------------------------- diff --git a/modules/registry/registry-core/src/main/java/org/apache/airavata/registry/core/experiment/catalog/impl/LoggingExperimentCatalogImpl.java b/modules/registry/registry-core/src/main/java/org/apache/airavata/registry/core/experiment/catalog/impl/LoggingExperimentCatalogImpl.java deleted file mode 100644 index 4849385..0000000 --- a/modules/registry/registry-core/src/main/java/org/apache/airavata/registry/core/experiment/catalog/impl/LoggingExperimentCatalogImpl.java +++ /dev/null @@ -1,97 +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.airavata.registry.core.experiment.catalog.impl; - -import org.apache.airavata.registry.cpi.*; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import java.util.List; -import java.util.Map; - -public class LoggingExperimentCatalogImpl implements ExperimentCatalog { - private final static Logger logger = LoggerFactory.getLogger(LoggingExperimentCatalogImpl.class); - - @Override - public Object add(ExpCatParentDataType dataType, Object newObjectToAdd, String gatewayId) throws RegistryException { - return null; - } - - @Override - public Object add(ExpCatChildDataType dataType, Object newObjectToAdd, Object dependentIdentifiers) throws RegistryException { - return null; - } - - @Override - public void update(ExperimentCatalogModelType dataType, Object newObjectToUpdate, Object identifier) throws RegistryException { - - } - - @Override - public void update(ExperimentCatalogModelType dataType, Object identifier, String fieldName, Object value) throws RegistryException { - - } - - @Override - public Object get(ExperimentCatalogModelType dataType, Object identifier) throws RegistryException { - return null; - } - - @Override - public List<Object> get(ExperimentCatalogModelType dataType, String fieldName, Object value) throws RegistryException { - return null; - } - - @Override - public List<Object> get(ExperimentCatalogModelType dataType, String fieldName, Object value, int limit, int offset, Object orderByIdentifier, ResultOrderType resultOrderType) throws RegistryException { - return null; - } - - @Override - public List<Object> search(ExperimentCatalogModelType dataType, Map<String, String> filters) throws RegistryException { - return null; - } - - @Override - public List<Object> search(ExperimentCatalogModelType dataType, Map<String, String> filters, int limit, int offset, Object orderByIdentifier, ResultOrderType resultOrderType) throws RegistryException { - return null; - } - - @Override - public Object getValue(ExperimentCatalogModelType dataType, Object identifier, String field) throws RegistryException { - return null; - } - - @Override - public List<String> getIds(ExperimentCatalogModelType dataType, String fieldName, Object value) throws RegistryException { - return null; - } - - @Override - public void remove(ExperimentCatalogModelType dataType, Object identifier) throws RegistryException { - - } - - @Override - public boolean isExist(ExperimentCatalogModelType dataType, Object identifier) throws RegistryException { - return false; - } -}
