blob: c7d9ece8c77bcbe78d97fba58ccc49297fe6a03d [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.unomi.shell.migration;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.karaf.shell.api.console.Session;
import org.osgi.framework.BundleContext;
import java.io.IOException;
import java.util.Map;
/**
* @author dgaillard
* @deprecated use groovy script for implementing new migrations
*/
public interface Migration {
/**
* This method is called to execute the migration
* @param session the shell's session
* @param httpClient CloseableHttpClient
* @param migrationConfig config used to perform the migration, like esAddress, trustAllCertificates, etc ...
* @param bundleContext the bundle context object
* @throws IOException if there was an error while executing the migration
* @deprecated do groovy script for implementing new migrations
*/
void execute(Session session, CloseableHttpClient httpClient, MigrationConfig migrationConfig, BundleContext bundleContext) throws IOException;
}