blob: 9e679cc3c487aaf636e7ffb4242ee52ac158b6a4 [file] [log] [blame]
/**
********************************************************************************
* Copyright (c) 2019-2020 Robert Bosch GmbH and others.
*
* 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
*
* Contributors:
* Robert Bosch GmbH - initial API and implementation
********************************************************************************
*/
package org.eclipse.app4mc.amalthea.validations.standard;
import org.eclipse.app4mc.validation.annotation.Profile;
import org.eclipse.app4mc.validation.annotation.ProfileGroup;
import org.eclipse.app4mc.validation.core.IProfileConfiguration;
import org.osgi.service.component.annotations.Component;
/**
* Standard validations for AMALTHEA
*/
@Profile(
name = "Amalthea Standard Validations",
description = "Standard validations for AMALTHEA models to ensure data consistency."
)
@ProfileGroup(
profiles = {
EMFProfile.class,
EMFScopeProfile.class,
BasicProfile.class,
HardwareProfile.class,
SoftwareProfile.class,
ConstraintsProfile.class,
MappingProfile.class
}
)
@Component
public class AmaltheaProfile implements IProfileConfiguration {
// Do nothing
}