blob: 15172a36308575cee7041490971fcb01e5d8538c [file] [log] [blame]
/*
*
* 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.data.manager.core;
import org.apache.airavata.data.manager.cpi.DataManagerException;
import org.apache.airavata.model.data.metadata.MetadataModel;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class MetadataCatalogService implements org.apache.airavata.data.manager.cpi.MetadataCatalogService {
private final static Logger logger = LoggerFactory.getLogger(MetadataCatalogService.class);
/**
* Create new metadata model
*
* @param metadataModel
* @return
* @throws DataManagerException
*/
@Override
public String createMetadata(MetadataModel metadataModel) throws DataManagerException {
return null;
}
/**
* Update existing metadata model
*
* @param metadataModel
* @throws DataManagerException
*/
@Override
public void updateMetadata(MetadataModel metadataModel) throws DataManagerException {
}
/**
* Delete existing metadata model
*
* @param metadataId
* @throws DataManagerException
*/
@Override
public void deleteMetadata(String metadataId) throws DataManagerException {
}
/**
* Retrieve metadata model
*
* @param metadataId
* @return
* @throws DataManagerException
*/
@Override
public MetadataModel getMetadata(String metadataId) throws DataManagerException {
return null;
}
}