// ============================================================================ // // Copyright (C) 2006-2016 Talend Inc. - www.talend.com // // This source code is available under agreement available at // %InstallDIR%\features\org.talend.rcp.branding.%PRODUCTNAME%\%PRODUCTNAME%license.txt // // You should have received a copy of the agreement // along with this program; if not, write to Talend SA // 9 rue Pages 92150 Suresnes, France // // ============================================================================ package org.talend.survivorship; /** * Constants are defined here. */ public class SurvivorshipConstants { public static final String PKG_ITEM_EXTENSION = "package"; //$NON-NLS-1$ public static final String MODEL_ITEM_EXTENTION = "model.drl"; //$NON-NLS-1$ public static final String RULE_ITEM_EXTENSION = "drl"; //$NON-NLS-1$ public static final String FLOW_ITEM_EXTENSION = "bpmn"; //$NON-NLS-1$ public static final String VERSION_SUFFIX = "_0.1."; //$NON-NLS-1$ public static final String DROOLS = "drools"; //$NON-NLS-1$ public static final String SURVIVOR_FLOW = "SurvivorFlow"; //$NON-NLS-1$ public static final String RECORD_IN = "RecordIn"; //$NON-NLS-1$ public static final String TALEND_INTERNAL_ID = "TALEND_INTERNAL_ID"; //$NON-NLS-1$ private SurvivorshipConstants() { // no need to implement } }