blob: 4295a81864ed1ccac36cb2c8dbe529e55f334bd9 [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2021 the Eclipse BaSyx Authors
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
******************************************************************************/
package org.eclipse.basyx.components.registry.servlet;
import org.eclipse.basyx.aas.registration.restapi.DirectoryModelProvider;
import org.eclipse.basyx.components.configuration.BaSyxSQLConfiguration;
import org.eclipse.basyx.components.registry.sql.SQLRegistry;
import org.eclipse.basyx.vab.protocol.http.server.VABHTTPInterface;
/**
* A registry servlet based on an SQL database. The servlet therefore provides an implementation
* for the IAASRegistryService interface with a permanent storage solution.
*
* @author kuhn, pschorn, espen
*/
public class SQLRegistryServlet extends VABHTTPInterface<DirectoryModelProvider> {
private static final long serialVersionUID = 1L;
/**
* Provide HTTP interface with JSONProvider to handle serialization and
* SQLDirectoryProvider as backend
*/
public SQLRegistryServlet() {
super(new DirectoryModelProvider(new SQLRegistry()));
}
public SQLRegistryServlet(BaSyxSQLConfiguration sqlConfig) {
super(new DirectoryModelProvider(new SQLRegistry(sqlConfig)));
}
}