/* * Copyright (C) 2006-2016 DLR, Germany * * All rights reserved * * http://www.rcenvironment.de/ */ package de.rcenvironment.core.scripting.python; /** * Constants class. * * @author Sascha Zur */ public final class PythonComponentConstants { /** Constant. */ public static final String PYTHON_INSTALLATION = "pythonExecutionPath"; /** Constant. */ public static final String PYTHON_OS = "os"; /** Constant. */ public static final String COMPONENT_CONTEXT = "compCtx"; /** Constant. */ public static final String STATE_MAP = "stateMap"; /** Constant. */ public static final String RUN_NUMBER = "runNumber"; private PythonComponentConstants() { } }