package com.xaxis.alchemy.utils { public class Constants { public static const WARNING:String = "WARNING: Alchemy Reporting Error! "; public static const MISSING_IMP_TYPE:String = "Impression Type must be defined. Impression was not recorded "; public static const MISSING_IMP_STRING:String = "Impression string or url must be defined. Impression was not recorded "; public static const NOTICE:String = "NOTICE: Alchemy Reporting Issue! "; public static const MISSING_IMP_DESCRIPTION:String = "Impression descriptions are recommended to help with diagnostics. "; public static const INTERNAL_IMP:String = "INTERNAL"; public static const EXTERNAL_IMP:String = "EXTERNAL"; public static const CLICK_IMP:String = "CLICK"; public static const REPORTING_STR:String = "IMPRESSION: Alchemy Reporting Utility Recorded "; public static const CLICK_STR:String = "CLICK: Alchemy Reporting Utility Attempted To Resolve "; public static const EXTERNAL_STR:String = "EXTERNAL IMP: Alchemy Reporting Utility Attempted To Resovle "; public static const DESCRIPTION_STR:String = "DESCRIPTION: "; public static const SERVICES_NULL:String = "Services object is null. Impression was not reported. "; public function Constants() { // constructor code } } }