Skip to content
Snippets Groups Projects
process.js 29 KiB
Newer Older
/**
 * provides static functionality for a registry of keywords
 * The main reason for this is a convenient usage within jdito-code (autocomplete)
 * never use these registered keywords directly in an library - only within function definition that are called later
 * the reason behind this is that the registry is initalized at the position of the Keyword_lib-import;
 * That means, if a value of the registry is used before the import of the Keyword_lib the registry is not set
 * 
 * Not every KeywordContainer that exists has to be listed here (e.g. dynamic created keywords) but every keyword-container-name that is used within
 * JDito code should be listed here
 * 
 * This is a very special case of an object and should not be used as a refernece for own implementations since the requirements will be different
 * 
 * @class
 * 
 * @example
 * $KeywordRegistry.activityDirection()
 */
function $KeywordRegistry(){}
$KeywordRegistry.attributeType = function(){return "AttributeType";};
$KeywordRegistry.keywordAttributeType = function(){return "KeywordAttributeType";};
$KeywordRegistry.keywordAttributeType$char = function(){return "CHAR";};
$KeywordRegistry.keywordAttributeType$number = function(){return "NUMBER";};
$KeywordRegistry.keywordAttributeType$bool = function(){return "BOOLEAN";};
$KeywordRegistry.keywordAttributeType$longChar = function(){return "LONGCHAR";};

$KeywordRegistry.contractPayment = function(){return "ContractPayment";};
m.mansour's avatar
m.mansour committed

$KeywordRegistry.contractStatus = function(){return "ContractStatus";};
$KeywordRegistry.contractState$validLimited = function(){return "CONTRACTSTATVALIDLI";};
$KeywordRegistry.contractState$validUnlimited = function(){return "CONTRACTSTATVALIDUNLI";};
$KeywordRegistry.contractState$notSigned = function(){return "CONTRACTSTATSIGN";};
m.mansour's avatar
m.mansour committed

$KeywordRegistry.contractType = function(){return "ContractType";};
$KeywordRegistry.activityDirection = function(){return "ActivityDirection";};
$KeywordRegistry.activityDirection$incoming = function(){return "i";};
$KeywordRegistry.activityDirection$outgoing = function(){return "o";};
$KeywordRegistry.activityDirection$internal = function(){return "x";};
m.mansour's avatar
m.mansour committed
$KeywordRegistry.contactStatus = function(){return "ContactStatus";};
$KeywordRegistry.contactStatus$active = function(){return "CONTACTSTATACTIVE";};
$KeywordRegistry.contactStatus$inactive = function(){return "CONTACTSTATINACTIVE";};
$KeywordRegistry.contactStatus$inReview = function(){return "CONTACTSTATREVIEW";};
$KeywordRegistry.contactStatus$markToDelete = function(){return "CONTACTSTATDELETE";};
m.mansour's avatar
m.mansour committed

$KeywordRegistry.currency = function(){return "Currency";};
$KeywordRegistry.currency$eur = function(){return "EUR";};
m.mansour's avatar
m.mansour committed

$KeywordRegistry.productGroupcode = function(){return "ProductGroupcode";};
m.mansour's avatar
m.mansour committed

$KeywordRegistry.offerStatus = function(){return "OfferStatus";};
$KeywordRegistry.offerStatus$open = function(){return "OFFERSTATOPEN";};
$KeywordRegistry.offerStatus$checked = function(){return "OFFERSTATCHECK";};
$KeywordRegistry.offerStatus$sent = function(){return "OFFERSTATSENT";};
$KeywordRegistry.offerStatus$won = function(){return "OFFERSTATWON";};
$KeywordRegistry.offerStatus$lost = function(){return "OFFERSTATLOST";};
S.Listl's avatar
S.Listl committed
$KeywordRegistry.offerStatus$toCheck = function(){return "OFFERSTATTOCHECK";};
$KeywordRegistry.offerStatus$denied = function(){return "OFFERSTATDENIED";};
$KeywordRegistry.offerStatus$approved = function(){return "OFFERSTATAPPROVED";};
$KeywordRegistry.organisationType = function(){return "OrganisationType";};
$KeywordRegistry.organisationType$manufacturer = function(){return "ORGMANUF";};
$KeywordRegistry.organisationType$competitor = function(){return "ORGCOMP";};
$KeywordRegistry.personGender = function(){return "PersonGender";};
$KeywordRegistry.taskStatus = function(){return "TaskStatus";};
$KeywordRegistry.taskStatus$new = function(){return "NEW";};
$KeywordRegistry.taskStatus$unassigned = function(){return "UNASSIGNED";};
$KeywordRegistry.taskStatus$assigned = function(){return "ASSIGNED";};
$KeywordRegistry.taskStatus$inProgress = function(){return "IN-PROGRESS";};
$KeywordRegistry.taskStatus$waiting = function(){return "WAITING";};
$KeywordRegistry.taskStatus$ended = function(){return "ENDED";};
$KeywordRegistry.taskStatus$endedDone = function(){return "ENDED-DONE";};
$KeywordRegistry.taskStatus$endedAbandoned = function(){return "ENDED-ABANDONED";};
$KeywordRegistry.taskStatus$customerChecks = function(){return "CUSTOMER-CHECKS";};
$KeywordRegistry.taskType = function(){return "TaskType";};
$KeywordRegistry.taskType$task = function(){return "TASK";};
$KeywordRegistry.taskType$ticket = function(){return "TICKET";};

$KeywordRegistry.ticketType = function(){return "TicketType";};
$KeywordRegistry.ticketType$supportTicket = function(){return "SUPPORTTICKET";};
$KeywordRegistry.productPricelist = function(){return "ProductPricelist";};
$KeywordRegistry.productPricelist$standardList = function(){return "PRICELISTDEFAULT";};
$KeywordRegistry.productPricelist$keyList = function(){return "PRICELISTKEY";};
$KeywordRegistry.productPricelist$specialList = function(){return "PRICELISTSPECIAL";};
$KeywordRegistry.productPricelist$serviceList = function(){return "PRICELISTSERVICE";};
$KeywordRegistry.quantityUnit = function(){return "QuantityUnit";};
$KeywordRegistry.quantityUnit$pieces = function(){return "QUANTITYPIECES";};
m.mansour's avatar
m.mansour committed

$KeywordRegistry.MemberRole = function(){return "MemberRole";};
$KeywordRegistry.memberRoleProjManag = function(){return "MEMROLEPROJMANAG";};
$KeywordRegistry.memberRoleAdvise = function(){return "MEMROLEADVISE";};
$KeywordRegistry.memberRoleProjAssist = function(){return "MEMROLEPROJASSIST";};
$KeywordRegistry.memberRoleExSalemang = function(){return "MEMROLEEXSALEMANAG";};
$KeywordRegistry.memberRoleIntenDistrib = function(){return "MEMROLINSALEMANAG";};
$KeywordRegistry.memberRoleIntenDistribResp = function(){return "MEMROLEDISTRICTRESPONSIBLE";};
$KeywordRegistry.memberRoleInitiator = function(){return "MEMROLEINITIATOR";};
$KeywordRegistry.memberRoleDecisionMaker = function(){return "MEMROLEDECISIONMAKER";};
$KeywordRegistry.memberRoleUser = function(){return "MEMROLEUSER";};
$KeywordRegistry.memberRoleIntSales = function(){return "MEMROLEINTSALES";};
$KeywordRegistry.memberRoleIntResp = function(){return "MEMROLEINTRESPONSIBLE";};
$KeywordRegistry.salesprojectSource = function(){return "SalesprojectSource";};
$KeywordRegistry.salesorderState = function(){return "SalesorderState";};
$KeywordRegistry.salesorderState$checked = function(){return "SALORDERSTATCHECK";};
$KeywordRegistry.salesorderState$sent = function(){return "SALORDERSTATSENT";};
$KeywordRegistry.salesorderState$won = function(){return "SALORDERSTATWON";};
$KeywordRegistry.salesorderState$lost = function(){return "SALORDERSTATLOST";};
$KeywordRegistry.salesprojectWonLost = function(){return "SalesprojectWonLost";};
$KeywordRegistry.stockWarehouse = function(){return "StockWarehouse";};
m.mansour's avatar
m.mansour committed

$KeywordRegistry.activityCategory = function(){return "ActivityCategory";};
$KeywordRegistry.activityCategory$mail = function(){return "MAIL";};
$KeywordRegistry.activityCategory$letter = function(){return "LETTER";};
$KeywordRegistry.activityCategory$visit = function(){return "VISIT";};
$KeywordRegistry.activityCategory$phone = function(){return "PHONE";};
$KeywordRegistry.activityCategory$onlineMeeting = function(){return "ONLINE-MEETING";};
$KeywordRegistry.activityCategory$approval = function(){return "APPROVAL";};
$KeywordRegistry.addressType = function(){return "AddressType";};
$KeywordRegistry.addressType$private = function(){return "HOMEADDR";};
$KeywordRegistry.addressType$office = function(){return "OFFICEADDR";};
$KeywordRegistry.addressType$post = function(){return "POSTADDR";};
$KeywordRegistry.communicationMedium = function(){return "CommunicationMedium";};
$KeywordRegistry.communicationMedium$mail = function(){return "COMMEMAIL";};
$KeywordRegistry.communicationMedium$mobil = function(){return "COMMMOBIL";};
$KeywordRegistry.communicationMedium$phone = function(){return "COMMPHONE";};
$KeywordRegistry.communicationMedium$linkedin = function(){return "COMMLINKEDIN";};
$KeywordRegistry.communicationMedium$internet = function(){return "COMMINTERNET";};
$KeywordRegistry.salesprojectPricePolitics = function(){return "SalesprojectPricePolitics";};
$KeywordRegistry.salesprojectWeakness = function(){return "SalesprojectWeakness";};
$KeywordRegistry.salesprojectStrenght = function(){return "SalesprojectStrenght";};
m.mansour's avatar
m.mansour committed

$KeywordRegistry.salesprojectState = function(){return "SalesprojectState";};
$KeywordRegistry.salesprojectState$open = function(){return "SALPROJSTATOPEN";};
$KeywordRegistry.salesprojectState$postponed = function(){return "SALPROJSTATPOSTPONED";};
$KeywordRegistry.salesprojectState$aborted = function(){return "SALPROJSTATABORT";};
$KeywordRegistry.salesprojectState$partialOrder = function(){return "SALPROJSTATPARTIAL";};
$KeywordRegistry.salesprojectState$order = function(){return "SALPROJSTATORDER";};
$KeywordRegistry.salesprojectState$lost = function(){return "SALPROJSTATLOST";};
m.mansour's avatar
m.mansour committed

$KeywordRegistry.salesprojectPhase = function(){return "SalesprojectPhase";};
$KeywordRegistry.salesprojectPhase$nqc = function(){return "SALPROJPHASENQC";};
$KeywordRegistry.salesprojectPhase$nego = function(){return "SALPROJPHASENEGO";};
$KeywordRegistry.salesprojectPhase$mal = function(){return "SALPROJPHASEMAL"};
$KeywordRegistry.salesprojectPhase$mql = function(){return "SALPROJPHASEMQL"};
$KeywordRegistry.salesprojectPhase$offer = function(){return "SALPROJPHASEOFFER"};
$KeywordRegistry.salesprojectPhase$sal = function(){return "SALPROJPHASESAL"};
$KeywordRegistry.salesprojectPhase$sqo = function(){return "SALPROJPHASESQO"};
$KeywordRegistry.salesprojectPhase$mqc = function(){return "SALPROJPHASEMQC"};
m.mansour's avatar
m.mansour committed

$KeywordRegistry.probabilitySalesproject = function(){return "ProbabilitySalesproject";};
$KeywordRegistry.probabilityOffer = function(){return "ProbabilityOffer";};

$KeywordRegistry.taskPriority = function(){return "TaskPriority";};
$KeywordRegistry.taskPriority$none = function(){return "TASKPRIONONE";};
$KeywordRegistry.taskPriority$low = function(){return "TASKPRIOLOW";};
$KeywordRegistry.taskPriority$medium = function(){return "TASKPRIOMEDIUM";};
$KeywordRegistry.taskPriority$high = function(){return "TASKPRIOHIGH";};
m.mansour's avatar
m.mansour committed

$KeywordRegistry.taskProgress = function(){return "TaskProgress";};
$KeywordRegistry.taskProgress$0 = function(){return "TASKPROG0";};
m.mansour's avatar
m.mansour committed

$KeywordRegistry.competitionState = function(){return "CompetitionState";};
$KeywordRegistry.competitionState$lost = function(){return "COMPSTATELOST";};
$KeywordRegistry.objectRelationType = function(){return "ObjectRelationType";};
$KeywordRegistry.deliveryTerm = function(){return "DeliveryTerm";};
$KeywordRegistry.paymentTerm = function(){return "PaymentTerm";};
$KeywordRegistry.contactDepartment = function(){return "ContactDepartment";};
$KeywordRegistry.contactPosition = function(){return "ContactPosition";};
$KeywordRegistry.contactContactrole = function(){return "ContactContactrole";};
m.mansour's avatar
m.mansour committed

$KeywordRegistry.campaignState = function(){return "CampaignManagementStates";};
$KeywordRegistry.campaignState$planning = function(){return "PLANNING";};
$KeywordRegistry.campaignState$approved = function(){return "APPROVED";};
$KeywordRegistry.campaignState$completed = function(){return "COMPLETED";};
m.mansour's avatar
m.mansour committed

$KeywordRegistry.campaignStepState = function(){return "CampaignManagementStepStates";};
$KeywordRegistry.campaignStepState$open = function(){return "OPEN";};
m.mansour's avatar
m.mansour committed

Johannes Hörmann's avatar
Johannes Hörmann committed
$KeywordRegistry.campaignStepCostCategory = function(){return "CampaignManagementCostCategory";};
m.mansour's avatar
m.mansour committed

Dominik Lechner's avatar
Dominik Lechner committed
$KeywordRegistry.documentTemplateType = function(){return "DocumentTemplateType";};
$KeywordRegistry.documentTemplateType$letter = function(){return "LET";};
$KeywordRegistry.documentTemplateType$textModular = function(){return "TEX";};
$KeywordRegistry.documentTemplateType$mail = function(){return "MAI";};
$KeywordRegistry.documentTemplateType$attachment = function(){return "ATT";};
m.mansour's avatar
m.mansour committed

S.Listl's avatar
S.Listl committed
$KeywordRegistry.documentTemplateTypeCategory = function(){return "DocumentTemplateTypeCategory";};
$KeywordRegistry.documentTemplateTypeCategory$single = function(){return "1";};
$KeywordRegistry.documentTemplateTypeCategory$serial = function(){return "2";};
$KeywordRegistry.documentTemplateTypeCategory$offerHeader = function(){return "3";};
$KeywordRegistry.documentTemplateTypeCategory$offerFooter = function(){return "4";};
$KeywordRegistry.documentTemplateTypeCategory$receiptHeader = function(){return "5";};
$KeywordRegistry.documentTemplateTypeCategory$receiptFooter = function(){return "6";};
$KeywordRegistry.documentTemplateTypeCategory$htmlTemplate = function(){return "7";};
$KeywordRegistry.documentTemplateTypeCategory$workflow = function(){return "8";};
m.mansour's avatar
m.mansour committed

$KeywordRegistry.classificationType = function(){return "ClassificationType";};
$KeywordRegistry.classificationType$salesproject = function(){return "Salesproject";};
$KeywordRegistry.classificationType$organisation = function(){return "Organisation";};
m.mansour's avatar
m.mansour committed

$KeywordRegistry.personGender = function(){return "PersonGender";};
$KeywordRegistry.personGender$other = function(){return "o";};
m.mansour's avatar
m.mansour committed

$KeywordRegistry.permissionCondType = function(){return "PermissionCondType";};
$KeywordRegistry.permissionAccessType = function(){return "PermissionAccessType";};
$KeywordRegistry.dsgvoPurpose = function(){return "DSGVOPurpose";};
$KeywordRegistry.dsgvoStatuoritysource = function(){return "DSGVOStatuoritysource";};

$KeywordRegistry.dsgvoType = function() {return "DSGVOType";};
$KeywordRegistry.dsgvoType$birth = function(){return "TYPE_BIRTH";};
$KeywordRegistry.dsgvoType$privacyNotice = function(){return "TYPE_PRIVACY_NOTICE";};

$KeywordRegistry.dsgvoTransmission = function() {return "DSGVOTransmission";};
$KeywordRegistry.dsgvoTransmission$none = function(){return "DSGVONONE";};
$KeywordRegistry.dsgvoTransmission$inland = function(){return "DSGVOINLAND";};
$KeywordRegistry.dsgvoTransmission$foreign = function(){return "DSGVOFOREIGN";};

$KeywordRegistry.dsgvoDeadline = function() {return "DSGVODeadline";};
$KeywordRegistry.dsgvoDeadline$onTime = function(){return "DSGVOONTIME";};
$KeywordRegistry.dsgvoDeadline$complex = function(){return "DSGVODEADLINECOMPLEX";};
$KeywordRegistry.dsgvoDeadline$count = function(){return "DSGVODEADLINECOUNT";};
$KeywordRegistry.dsgvoGuarantee = function() {return "DSGVOGuarantee";};
m.mansour's avatar
m.mansour committed

$KeywordRegistry.dsgvoConfiguration = function() {return "DSGVOConfiguration";};
$KeywordRegistry.dsgvoConfiguration$config = function() {return "DSGVO_CONFIGURATION";};
$KeywordRegistry.dsgvoConfiguration$configId = function() {return "51f106b6-b593-4279-bf39-c8d226ebc607";};

$KeywordRegistry.dsgvoReason = function(){ return "DSGVOReason";};
$KeywordRegistry.dsgvoReason$manuel = function(){ return "607cfce8-1cc3-466e-9a69-4f0c9cf7e391";};

S.Listl's avatar
S.Listl committed
$KeywordRegistry.textPlaceholder = function(){return "textPlaceholder";};

$KeywordRegistry.communicationMediumCampaign = function(){return "CommunicationMediumCampaign";};
$KeywordRegistry.communicationMediumCampaign$mail = function(){return "CAMPAIGNEMAIL";};
$KeywordRegistry.communicationMediumCampaign$letter = function(){return "CAMPAIGNLETTER";};
S.Listl's avatar
S.Listl committed
$KeywordRegistry.bulkMailRecipientStatus = function(){return "BulkMailRecipientStatus";};
$KeywordRegistry.bulkMailRecipientStatus$pending = function(){return "EMAILPENDING";};
$KeywordRegistry.bulkMailRecipientStatus$sent = function(){return "EMAILSENT";};
$KeywordRegistry.bulkMailRecipientStatus$failed = function(){return "EMAILFAILED";};
$KeywordRegistry.bulkMailRecipientStatus$softBounce = function(){return "EMAILBOUNCED_SOFT";};
$KeywordRegistry.bulkMailRecipientStatus$hardBounce = function(){return "EMAILBOUNCED_HARD";};
$KeywordRegistry.bulkMailRecipientStatus$added = function(){return "EMAILADDED";};
S.Listl's avatar
S.Listl committed

$KeywordRegistry.bulkMailStatus = function(){return "BulkMailStatus";};
$KeywordRegistry.bulkMailStatus$notSent = function(){return "BULKMAILNOTSENT";};
$KeywordRegistry.bulkMailStatus$beingSent = function(){return "BULKMAILBEINGSENT";};
$KeywordRegistry.bulkMailStatus$sent = function(){return "BULKMAILSENT";};
$KeywordRegistry.bulkMailStatus$planned = function(){return "BULKMAILPLANNED";};
$KeywordRegistry.bulkMailStatus$missed = function(){return "BULKMAILMISSED";};
S.Listl's avatar
S.Listl committed
$KeywordRegistry.serialLetterStatus = function(){return "SerialLetterStatus";};
$KeywordRegistry.serialLetterStatus$notSent = function(){return "SERIALLETTERNOTSENT";};
$KeywordRegistry.serialLetterStatus$sent = function(){return "SERIALLETTERSENT";};
$KeywordRegistry.callDirection = function(){return "CallDirection";};
$KeywordRegistry.callDirection$incoming = function(){return "INC";};
$KeywordRegistry.callDirection$outgoing = function(){return "OUT";};

$KeywordRegistry.callAnswerMode = function(){return "CallAnswerMode";};
$KeywordRegistry.callAnswerMode$accepted = function(){return "ACCEPTED";};
$KeywordRegistry.callAnswerMode$missed = function(){return "MISSED";};
m.mansour's avatar
m.mansour committed

$KeywordRegistry.orderType = function(){return "OrderType";};
$KeywordRegistry.orderType$confirmation = function(){return "ORDTYPECONF";};
$KeywordRegistry.orderType$deliverynote = function(){return "ORDTYPENOTE";};
$KeywordRegistry.orderType$invoice = function(){return "ORDTYPEINVO";};
$KeywordRegistry.orderType$credit = function(){return "ORDTYPECRED";};
$KeywordRegistry.orderType$cancellation = function(){return "ORDTYPECANC";};
$KeywordRegistry.dunningLevel = function(){return "DunningLevel";};

$KeywordRegistry.bulkMailProblem = function(){return "BulkMailProblem";};

$KeywordRegistry.importStatus = function(){return "ImportStatus";};
$KeywordRegistry.importStatus$created = function(){return "CREATED";};
$KeywordRegistry.importStatus$loaded = function(){return "LOADED";};
$KeywordRegistry.importStatus$transfered = function(){return "TRANSFERED";};
$KeywordRegistry.importFields = function(){return "ImportFields";};
S.Listl's avatar
S.Listl committed
$KeywordRegistry.dupStatus = function(){return "DupStatus";};

$KeywordRegistry.workflowTrigger = function(){return "WorkflowTrigger";};
$KeywordRegistry.workflowTrigger$manual = function(){return "WORKFLOWTRIGGERMANUAL";};
$KeywordRegistry.workflowTrigger$create = function(){return "WORKFLOWTRIGGERINSERT";};
$KeywordRegistry.workflowTrigger$update = function(){return "WORKFLOWTRIGGERUPDATE";};
S.Listl's avatar
S.Listl committed
$KeywordRegistry.workflowTrigger$delete = function(){return "WORKFLOWTRIGGERDELETE";};

$KeywordRegistry.workflowSignalTrigger = function(){return "WorkflowSignalTrigger";};
$KeywordRegistry.workflowSignalTrigger$create = function(){return "TRIGGEREVENTINSERT";};
$KeywordRegistry.workflowSignalTrigger$update = function(){return "TRIGGEREVENTUPDATE";};
$KeywordRegistry.workflowSignalTrigger$delete = function(){return "TRIGGEREVENTDELETE";};

$KeywordRegistry.permissionCalendarType = function(){return "PermissionCalendarType";};
$KeywordRegistry.permissionCalendarType$user = function(){return "USER";};
$KeywordRegistry.permissionCalendarType$department = function(){return "DEPARTMENT";};
$KeywordRegistry.workflowActivityType = function(){return "WorkflowActivityType";};
$KeywordRegistry.workflowActivityType$sequenceFlow = function(){return "sequenceFlow";};
$KeywordRegistry.workflowActivityType$startEvent = function(){return "startEvent";};
$KeywordRegistry.workflowActivityType$endEvent = function(){return "endEvent";};
$KeywordRegistry.workflowActivityType$userTask = function(){return "userTask";};
$KeywordRegistry.workflowActivityType$serviceTask = function(){return "serviceTask";};
$KeywordRegistry.workflowActivityType$scriptTask = function(){return "scriptTask";};
$KeywordRegistry.workflowActivityType$businessRuleTask = function(){return "businessRuleTask";};
$KeywordRegistry.workflowActivityType$receiveTask = function(){return "receiveTask";};
$KeywordRegistry.workflowActivityType$manualTask = function(){return "manualTask";};
$KeywordRegistry.workflowActivityType$exclusiveGateway = function(){return "exclusiveGateway";};
$KeywordRegistry.workflowActivityType$parallelGateway = function(){return "parallelGateway";};
$KeywordRegistry.workflowActivityType$inclusiveGateway = function(){return "inclusiveGateway";};
$KeywordRegistry.workflowActivityType$eventBasedGateway = function(){return "eventBasedGateway";};
$KeywordRegistry.workflowActivityType$boundaryEvent = function(){return "boundaryEvent";};
$KeywordRegistry.workflowActivityType$intermediateCatchEvent = function(){return "intermediateCatchEvent";};
$KeywordRegistry.workflowActivityType$intermediateThrowEvent = function(){return "intermediateThrowEvent";};
$KeywordRegistry.exportTemplateSeparator$tab = function(){return "TAB";};

$KeywordRegistry.visitRecommendationPriority = function(){return "VisitRecommendationPriority";};
$KeywordRegistry.visitRecommendationPriority$critical = function(){return "VISITPRIOCRITICAL";};
$KeywordRegistry.visitRecommendationPriority$veryHigh = function(){return "VISITPRIOCVERYHIGH";};
$KeywordRegistry.visitRecommendationPriority$high = function(){return "VISITPRIOHIGH";};
$KeywordRegistry.visitRecommendationPriority$medium = function(){return "VISITPRIOMEDIUM";};
$KeywordRegistry.visitRecommendationPriority$low = function(){return "VISITPRIOLOW";};
$KeywordRegistry.visitPlanEntryStatus = function(){return "VisitPlanEntryStatus";};
$KeywordRegistry.visitPlanEntryStatus$planned = function(){return "VISITSTATUSPLANNED";};
$KeywordRegistry.visitPlanEntryStatus$Appointmentarranged = function(){return "VISITSTATUSAPPPLANED";};
$KeywordRegistry.visitPlanEntryStatus$Visitreportcreated = function(){return "VISITSTATUSREPORTCREATED";};
$KeywordRegistry.visitRecommendationPrioSource = function(){return "VisitRecommendationPrioSource";};
$KeywordRegistry.visitRecommendationPrioSource$visitFrequency = function(){return "VISITFREQUENCY";};
$KeywordRegistry.visitRecommendationPrioSource$manual = function(){return "MANUAL";};
$KeywordRegistry.workflowCategory = function(){return "WorkflowCategory";};

$KeywordRegistry.campaignType = function(){return "CampaignType";}; 
$KeywordRegistry.campaignType$Campaign = function(){return "CAMPAIGN";}; 
$KeywordRegistry.campaignType$Event = function(){return "EVENT";}; 

$KeywordRegistry.eventType = function(){return "EventType";}; 
$KeywordRegistry.eventType$fair = function(){return "FAIR";}; 
$KeywordRegistry.eventType$other = function(){return "OTHER";}; 
$KeywordRegistry.eventType$training = function(){return "TRAINING";};
$KeywordRegistry.notificationState = function(){ return "NotificationState";};
$KeywordRegistry.notificationState$unseen = function(){return "UNSEEN";};
$KeywordRegistry.notificationState$seen = function(){return "SEEN";};
$KeywordRegistry.adviserRole = function(){ return "ADVISER_ROLE";};
$KeywordRegistry.districtOrigin = function(){ return "DISTRICT_ORIGIN";};
$KeywordRegistry.districtOrigin$manual = function(){ return "DistrictOrigin_manual";};
$KeywordRegistry.districtOrigin$auto = function(){ return "DistrictOrigin_auto";};
$KeywordRegistry.discussionStatus = function(){return "DiscussionStatus";}
$KeywordRegistry.discussionStatus$acitve = function(){return "ACTIVE";}
$KeywordRegistry.discussionStatus$closed = function(){return "CLOSED";}

$KeywordRegistry.knowledgeType = function(){return "KnowledgeType";}
$KeywordRegistry.knowledgeType$knowledgeBase = function(){return "KNOWLEDGEBASE";}
$KeywordRegistry.knowledgeType$editorial = function(){return "EDITORIAL";}

$KeywordRegistry.knowledgePublishLevel = function(){return "KnowledgePublishLevel";}
$KeywordRegistry.knowledgePublishLevel$internal = function(){return "INTERNAL";}
$KeywordRegistry.knowledgePublishLevel$partner = function(){return "PARTNER";}
$KeywordRegistry.knowledgePublishLevel$public = function(){return "PUBLIC";}
$KeywordRegistry.visitPlanEntryStatusAppointment = function(){return "VisitPlanEntryStatusAppointment";};
$KeywordRegistry.visitPlanEntryStatusAppointment$requested = function(){return "VISITSTATUSAPPOINTMENTREQUESTED";};
$KeywordRegistry.visitPlanEntryStatusAppointment$confirmed = function(){return "VISITSTATUSAPPOINTMENTCONFIRMED";};
$KeywordRegistry.knowledgePublishLevel$public = function(){return "PUBLIC";}

$KeywordRegistry.notificationPriority = function(){ return "NotificationPriority";};
$KeywordRegistry.notificationPriority$none = function(){ return "NONE";};
$KeywordRegistry.notificationPriority$low = function(){ return "LOW";};
$KeywordRegistry.notificationPriority$normal = function(){ return "NORMAL";};
$KeywordRegistry.notificationPriority$hight = function(){ return "HIGH";};
$KeywordRegistry.notificationPriority$max = function(){ return "MAX";};

$KeywordRegistry.checklistEntryType = function(){return "ChecklistEntryType";}
$KeywordRegistry.checklistEntryType$manual = function(){return "MANUAL";}
$KeywordRegistry.checklistEntryType$auto = function(){return "AUTO";}

$KeywordRegistry.forecastKind = function(){return "ForecastKind";}
$KeywordRegistry.forecastKind$forecast = function(){return "FORECAST";}
$KeywordRegistry.forecastKind$planning = function(){return "PLANNING";}

$KeywordRegistry.forecastStatus = function(){return "ForecastStatus";}
$KeywordRegistry.forecastStatus$inPlanning = function(){return "IN_PLANNING";}
$KeywordRegistry.forecastStatus$locked = function(){return "LOCKED";}
$KeywordRegistry.forecastStatus$planned = function(){return "PLANNED";}
$KeywordRegistry.checklistEntryType$auto = function(){return "AUTO";}

$KeywordRegistry.communicationSettingStatus = function(){return "CommunicationSettingStatus";};
$KeywordRegistry.communicationSettingStatus$pending = function(){return "COMMUNICATION_PENDING";};
$KeywordRegistry.communicationSettingStatus$allowed = function(){return "COMMUNICATION_ALLOWED";};
$KeywordRegistry.communicationSettingStatus$rejected = function(){return "COMMUNICATION_REJECTED";};

$KeywordRegistry.communicationChannelType = function(){return "CommunicationChannelType";};
$KeywordRegistry.communicationChannelType$profiling = function(){return "COMMUNICATIONCHANNEL_PROFILING";};
$KeywordRegistry.communicationChannelType$global = function(){return "COMMUNICATIONCHANNEL_GLOBAL";};
Sebastian Listl's avatar
Sebastian Listl committed
$KeywordRegistry.communicationChannelType$communication = function(){return "COMMUNICATIONCHANNEL_COMMUNICATION";};
$KeywordRegistry.communicationChannelType$address = function(){return "COMMUNICATIONCHANNEL_ADDRESS";};

$KeywordRegistry.weblinkType = function(){return "WeblinkType";};
$KeywordRegistry.weblinkType$EMail = function() {return "WEBLINK_EMAIL"};
$KeywordRegistry.weblinkTags = function(){return "WeblinkTags";};

$KeywordRegistry.interestStatus = function(){return "InterestStatus";};
$KeywordRegistry.interestStatus$active = function(){return "INTEREST_ACTIVE";};
$KeywordRegistry.interestStatus$inactive = function(){return "INTEREST_INACTIVE";};

$KeywordRegistry.interestLinkStatus = function(){return "InterestLinkStatus";};
$KeywordRegistry.interestLinkStatus$subscribed = function(){return "INTERESTLINK_SUBSCRIBED";};
$KeywordRegistry.interestLinkStatus$notSubscribed = function(){return "INTERESTLINK_NOTSUBSCRIBED";};

$KeywordRegistry.deviceType = function(){return "DeviceType";};
$KeywordRegistry.deviceType$mobile = function(){return "mobile";};
$KeywordRegistry.deviceType$desktop = function(){return "desktop";};
$KeywordRegistry.deviceType$tablet = function(){return "tablet";};
Sebastian Listl's avatar
Sebastian Listl committed
$KeywordRegistry.weblinkActionType = function(){return "WeblinkActionType";};
$KeywordRegistry.weblinkActionType$startWorkflow = function(){return "LINKACTION_STARTWORKFLOW";};
$KeywordRegistry.weblinkActionType$sendWorkflowSignal = function(){return "LINKACTION_SENDSIGNAL";};

$KeywordRegistry.advertisingStatus = function(){return "AdvertisingStatus";};
$KeywordRegistry.advertisingStatus$Open = function(){return "ADVERTISINGSTATOPEN";};
$KeywordRegistry.advertisingStatus$Sent = function(){return "ADVERTISINGSTATSENT";}; 
$KeywordRegistry.advertisingStatus$followedUp = function(){return "ADVERTISINGFOLLOWEDUP";};

$KeywordRegistry.advertisingDelivery = function(){return "AdvertisingDelivery";};
$KeywordRegistry.advertisingDelivery$personal = function(){return "ADVERTDELIVERYPERSONAL";};
$KeywordRegistry.advertisingDelivery$post = function(){return "ADVERTDELIVERYPOST";}; 
$KeywordRegistry.advertisingDelivery$mail = function(){return "ADVERTDELIVERYMAIL";};

$KeywordRegistry.emailFilterType = function(){return "EmailFilterType";};
$KeywordRegistry.emailFilterType$blacklist = function(){return "EMAIL_FILTER_BLACKLIST";};
$KeywordRegistry.emailFilterType$bounceSoft = function(){return "EMAIL_FILTER_BOUNCESOFT";};
$KeywordRegistry.emailFilterType$bounceHard = function(){return "EMAIL_FILTER_BOUNCEHARD";};
$KeywordRegistry.emailFilterType$autoResponder = function(){return "EMAIL_FILTER_AUTORESPONDER";};

$KeywordRegistry.visitFrequency = function(){return "VISITFREQUENCY";};
$KeywordRegistry.visitFrequency$yearly = function(){return "VISITFREQUENCYYEARLY";};
$KeywordRegistry.visitFrequency$semiannualy = function(){return "VISITFREQUENCYSEMIANNUALLY";};
$KeywordRegistry.visitFrequency$quarterly = function(){return "VISITFREQUENCYQUARTERLY";};
$KeywordRegistry.visitFrequency$monthly = function(){return "VISITFREQUENCYMONTHLY";};
$KeywordRegistry.visitFrequency$weekly = function(){return "VISITFREQUENCYWEEKLY";};

$KeywordRegistry.linkEvaluationType = function(){return "LinkEvaluationType";};
$KeywordRegistry.linkEvaluationType$default = function(){return "LINKEVALUATION_DEFAULT";};
$KeywordRegistry.linkEvaluationType$ignore = function(){return "LINKEVALUATION_IGNORE";};
$KeywordRegistry.linkEvaluationType$unsubscribe = function(){return "LINKEVALUATION_UNSUBSCRIBE";};