# $SnapHashLicense:
#
# SnapLogic - Open source data services
#
# Copyright (C) 2009, SnapLogic, Inc. All rights reserved.
#
# See http://www.snaplogic.org for more information about
# the SnapLogic project.
#
# This program is free software, distributed under the terms of
# the GNU General Public License Version 2. See the LEGAL file
# at the top of the source tree.
#
# "SnapLogic" is a trademark of SnapLogic, Inc.
#
#
# $
#
# $Id: snap_params.py 8793 2009-08-31 21:32:17Z grisha $
#
# The Parameter names used by SnapLogic. These always begin with the prefix "sn."
#
TRACE_DATA_CONFIG = "trace_data"
SNAP_PARAM_PREFIX = "sn."
TRACE_DATA = SNAP_PARAM_PREFIX + TRACE_DATA_CONFIG
FIELD_NUMBERS = SNAP_PARAM_PREFIX + "field_numbers"
LEVEL = SNAP_PARAM_PREFIX + "level"
#
# Some constant values for the params.
#
VALUE_INPUT = "input"
VALUE_OUTPUT = "output"
VALUE_DETAIL = "detail"
VALUE_DESCRIBE = "describe"
|