/******************************************************************************* * Copyright (c) 2015 BREDEX GmbH. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * BREDEX GmbH - initial API and implementation and/or initial documentation *******************************************************************************/ package org.eclipse.jubula.tools.internal.constants; /** * Interface containing the names for the standard profiles * @author BREDEX GmbH * */ public interface StandardProfileNames { /** Standard Profile */ public static final String STANDARD = "Standard"; //$NON-NLS-1$ /** Strict Profile */ public static final String STRICT = "Strict"; //$NON-NLS-1$ /** Given Names Profile */ public static final String GIVEN_NAMES = "Given Names"; //$NON-NLS-1$ }