blob: 4cda615f17ffc9b074b5fea154e7bc80ce6ea7d2 [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.testsuite.regression.vab.protocol.http;
import org.eclipse.basyx.testsuite.regression.vab.modelprovider.SimpleVABElement;
import org.eclipse.basyx.vab.modelprovider.map.VABMapProvider;
import org.eclipse.basyx.vab.protocol.http.server.VABHTTPInterface;
/**
* Servlet interface for AAS
*
* @author kuhn
*
*/
public class SimpleVABElementServlet extends VABHTTPInterface<VABMapProvider> {
/**
* Version information to identify the version of serialized instances
*/
private static final long serialVersionUID = 1L;
/**
* Constructor
*/
public SimpleVABElementServlet() {
// Invoke base constructor, instantiate a VABElement
super(new VABMapProvider(new SimpleVABElement()));
}
}