var collections,NGenConstants,SettingType,EXTERNAL_LOGIN_RESULT,UserOrigin,Roles,LineOfBusiness,CMSConstants,ControlParamTypes,NotificationType,Tip,DevelopMeConstants,SiteType,TalentCloudConstants,ADDRESSTYPES,EDUCATIONTYPES,SKILLTYPES,DOCUMENTCATEGORY,AdminConstants,ContentCategories,SSOConstants,PublicConstants,LoginConstants,MentorConstants,UsersConstants,FileConstants,RoadmapCompletionType,NewUserConstants,CompaniesConstants,AuditConstants,JobsConstants,CalendarsConstants,__extends,MessagingConstants,LHH;(function(collections){function defaultCompare(a,b){return a=0;i--)if(equals(array[i],item))return i;return-1}function contains(array,item,equalsFunction){return arrays.indexOf(array,item,equalsFunction)>=0}function remove(array,item,equalsFunction){var index=arrays.indexOf(array,item,equalsFunction);return index<0?!1:(array.splice(index,1),!0)}function frequency(array,item,equalsFunction){for(var equals=equalsFunction||collections.defaultEquals,length=array.length,freq=0,i=0;i=array.length||j<0||j>=array.length)return!1;var temp=array[i];return array[i]=array[j],array[j]=temp,!0}function toString(array){return"["+array.toString()+"]"}function forEach(array,callback){for(var lenght=array.length,i=0;ithis.nElements||collections.isUndefined(item))?!1:(newNode=this.createNode(item),this.nElements===0?(this.firstNode=newNode,this.lastNode=newNode):index===this.nElements?(this.lastNode.next=newNode,this.lastNode=newNode):index===0?(newNode.next=this.firstNode,this.firstNode=newNode):(prev=this.nodeAtIndex(index-1),newNode.next=prev.next,prev.next=newNode),this.nElements++,!0)},LinkedList.prototype.first=function(){return this.firstNode!==null?this.firstNode.element:undefined},LinkedList.prototype.last=function(){return this.lastNode!==null?this.lastNode.element:undefined},LinkedList.prototype.elementAtIndex=function(index){var node=this.nodeAtIndex(index);return node===null?undefined:node.element},LinkedList.prototype.indexOf=function(item,equalsFunction){var equalsF=equalsFunction||collections.defaultEquals,currentNode,index;if(collections.isUndefined(item))return-1;for(currentNode=this.firstNode,index=0;currentNode!==null;){if(equalsF(currentNode.element,item))return index;index++;currentNode=currentNode.next}return-1},LinkedList.prototype.contains=function(item,equalsFunction){return this.indexOf(item,equalsFunction)>=0},LinkedList.prototype.remove=function(item,equalsFunction){var equalsF=equalsFunction||collections.defaultEquals,previous,currentNode;if(this.nElements<1||collections.isUndefined(item))return!1;for(previous=null,currentNode=this.firstNode;currentNode!==null;){if(equalsF(currentNode.element,item))return currentNode===this.firstNode?(this.firstNode=this.firstNode.next,currentNode===this.lastNode&&(this.lastNode=null)):currentNode===this.lastNode?(this.lastNode=previous,previous.next=currentNode.next,currentNode.next=null):(previous.next=currentNode.next,currentNode.next=null),this.nElements--,!0;previous=currentNode;currentNode=currentNode.next}return!1},LinkedList.prototype.clear=function(){this.firstNode=null;this.lastNode=null;this.nElements=0},LinkedList.prototype.equals=function(other,equalsFunction){var eqF=equalsFunction||collections.defaultEquals;return(other instanceof collections.LinkedList)?this.size()!==other.size()?!1:this.equalsAux(this.firstNode,other.firstNode,eqF):!1},LinkedList.prototype.equalsAux=function(n1,n2,eqF){while(n1!==null){if(!eqF(n1.element,n2.element))return!1;n1=n1.next;n2=n2.next}return!0},LinkedList.prototype.removeElementAtIndex=function(index){var element,previous;return index<0||index>=this.nElements?undefined:(this.nElements===1?(element=this.firstNode.element,this.firstNode=null,this.lastNode=null):(previous=this.nodeAtIndex(index-1),previous===null?(element=this.firstNode.element,this.firstNode=this.firstNode.next):previous.next===this.lastNode&&(element=this.lastNode.element,this.lastNode=previous),previous!==null&&(element=previous.next.element,previous.next=previous.next.next)),this.nElements--,element)},LinkedList.prototype.forEach=function(callback){for(var currentNode=this.firstNode;currentNode!==null;){if(callback(currentNode.element)===!1)break;currentNode=currentNode.next}},LinkedList.prototype.reverse=function(){for(var previous=null,current=this.firstNode,temp=null;current!==null;)temp=current.next,current.next=previous,previous=current,current=temp;temp=this.firstNode;this.firstNode=this.lastNode;this.lastNode=temp},LinkedList.prototype.toArray=function(){for(var array=[],currentNode=this.firstNode;currentNode!==null;)array.push(currentNode.element),currentNode=currentNode.next;return array},LinkedList.prototype.size=function(){return this.nElements},LinkedList.prototype.isEmpty=function(){return this.nElements<=0},LinkedList.prototype.toString=function(){return collections.arrays.toString(this.toArray())},LinkedList.prototype.nodeAtIndex=function(index){var node,i;if(index<0||index>=this.nElements)return null;if(index===this.nElements-1)return this.lastNode;for(node=this.firstNode,i=0;i=this.data.length?leftChild>=this.data.length?-1:leftChild:this.compare(this.data[leftChild],this.data[rightChild])<=0?leftChild:rightChild},Heap.prototype.siftUp=function(index){for(var parent=this.parentIndex(index);index>0&&this.compare(this.data[parent],this.data[index])>0;)collections.arrays.swap(this.data,parent,index),index=parent,parent=this.parentIndex(index)},Heap.prototype.siftDown=function(nodeIndex){for(var min=this.minIndex(this.leftChildIndex(nodeIndex),this.rightChildIndex(nodeIndex));min>=0&&this.compare(this.data[nodeIndex],this.data[min])>0;)collections.arrays.swap(this.data,min,nodeIndex),nodeIndex=min,min=this.minIndex(this.leftChildIndex(nodeIndex),this.rightChildIndex(nodeIndex))},Heap.prototype.peek=function(){return this.data.length>0?this.data[0]:undefined},Heap.prototype.add=function(element){return collections.isUndefined(element)?undefined:(this.data.push(element),this.siftUp(this.data.length-1),!0)},Heap.prototype.removeRoot=function(){if(this.data.length>0){var obj=this.data[0];return this.data[0]=this.data[this.data.length-1],this.data.splice(this.data.length-1,1),this.data.length>0&&this.siftDown(0),obj}return undefined},Heap.prototype.contains=function(element){var equF=collections.compareToEquals(this.compare);return collections.arrays.contains(this.data,element,equF)},Heap.prototype.size=function(){return this.data.length},Heap.prototype.isEmpty=function(){return this.data.length<=0},Heap.prototype.clear=function(){this.data.length=0},Heap.prototype.forEach=function(callback){collections.arrays.forEach(this.data,callback)},Heap}();collections.Heap=Heap;Stack=function(){function Stack(){this.list=new LinkedList}return Stack.prototype.push=function(elem){return this.list.add(elem,0)},Stack.prototype.add=function(elem){return this.list.add(elem,0)},Stack.prototype.pop=function(){return this.list.removeElementAtIndex(0)},Stack.prototype.peek=function(){return this.list.first()},Stack.prototype.size=function(){return this.list.size()},Stack.prototype.contains=function(elem,equalsFunction){return this.list.contains(elem,equalsFunction)},Stack.prototype.isEmpty=function(){return this.list.isEmpty()},Stack.prototype.clear=function(){this.list.clear()},Stack.prototype.forEach=function(callback){this.list.forEach(callback)},Stack}();collections.Stack=Stack;Queue=function(){function Queue(){this.list=new LinkedList}return Queue.prototype.enqueue=function(elem){return this.list.add(elem)},Queue.prototype.add=function(elem){return this.list.add(elem)},Queue.prototype.dequeue=function(){if(this.list.size()!==0){var el=this.list.first();return this.list.removeElementAtIndex(0),el}return undefined},Queue.prototype.peek=function(){return this.list.size()!==0?this.list.first():undefined},Queue.prototype.size=function(){return this.list.size()},Queue.prototype.contains=function(elem,equalsFunction){return this.list.contains(elem,equalsFunction)},Queue.prototype.isEmpty=function(){return this.list.size()<=0},Queue.prototype.clear=function(){this.list.clear()},Queue.prototype.forEach=function(callback){this.list.forEach(callback)},Queue}();collections.Queue=Queue;PriorityQueue=function(){function PriorityQueue(compareFunction){this.heap=new Heap(collections.reverseCompareFunction(compareFunction))}return PriorityQueue.prototype.enqueue=function(element){return this.heap.add(element)},PriorityQueue.prototype.add=function(element){return this.heap.add(element)},PriorityQueue.prototype.dequeue=function(){if(this.heap.size()!==0){var el=this.heap.peek();return this.heap.removeRoot(),el}return undefined},PriorityQueue.prototype.peek=function(){return this.heap.peek()},PriorityQueue.prototype.contains=function(element){return this.heap.contains(element)},PriorityQueue.prototype.isEmpty=function(){return this.heap.isEmpty()},PriorityQueue.prototype.size=function(){return this.heap.size()},PriorityQueue.prototype.clear=function(){this.heap.clear()},PriorityQueue.prototype.forEach=function(callback){this.heap.forEach(callback)},PriorityQueue}();collections.PriorityQueue=PriorityQueue;Set=function(){function Set(toStringFunction){this.dictionary=new Dictionary(toStringFunction)}return Set.prototype.contains=function(element){return this.dictionary.containsKey(element)},Set.prototype.add=function(element){return this.contains(element)||collections.isUndefined(element)?!1:(this.dictionary.setValue(element,element),!0)},Set.prototype.intersection=function(otherSet){var set=this;this.forEach(function(element){return otherSet.contains(element)||set.remove(element),!0})},Set.prototype.union=function(otherSet){var set=this;otherSet.forEach(function(element){return set.add(element),!0})},Set.prototype.difference=function(otherSet){var set=this;otherSet.forEach(function(element){return set.remove(element),!0})},Set.prototype.isSubsetOf=function(otherSet){if(this.size()>otherSet.size())return!1;var isSub=!0;return this.forEach(function(element){return otherSet.contains(element)?!0:(isSub=!1,!1)}),isSub},Set.prototype.remove=function(element){return this.contains(element)?(this.dictionary.remove(element),!0):!1},Set.prototype.forEach=function(callback){this.dictionary.forEach(function(k,v){return callback(v)})},Set.prototype.toArray=function(){return this.dictionary.values()},Set.prototype.isEmpty=function(){return this.dictionary.isEmpty()},Set.prototype.size=function(){return this.dictionary.size()},Set.prototype.clear=function(){this.dictionary.clear()},Set.prototype.toString=function(){return collections.arrays.toString(this.toArray())},Set}();collections.Set=Set;Bag=function(){function Bag(toStrFunction){this.toStrF=toStrFunction||collections.defaultToString;this.dictionary=new Dictionary(this.toStrF);this.nElements=0}return Bag.prototype.add=function(element,nCopies){if(typeof nCopies=="undefined"&&(nCopies=1),collections.isUndefined(element)||nCopies<=0)return!1;if(this.contains(element))this.dictionary.getValue(element).copies+=nCopies;else{var node={value:element,copies:nCopies};this.dictionary.setValue(element,node)}return this.nElements+=nCopies,!0},Bag.prototype.count=function(element){return this.contains(element)?this.dictionary.getValue(element).copies:0},Bag.prototype.contains=function(element){return this.dictionary.containsKey(element)},Bag.prototype.remove=function(element,nCopies){if(typeof nCopies=="undefined"&&(nCopies=1),collections.isUndefined(element)||nCopies<=0)return!1;if(this.contains(element)){var node=this.dictionary.getValue(element);return this.nElements-=nCopies>node.copies?node.copies:nCopies,node.copies-=nCopies,node.copies<=0&&this.dictionary.remove(element),!0}return!1},Bag.prototype.toArray=function(){for(var j,a=[],values=this.dictionary.values(),vl=values.length,i=0;i0&&(node=node.rightCh);return node},BSTree.prototype.transplant=function(n1,n2){n1.parent===null?this.root=n2:n1===n1.parent.leftCh?n1.parent.leftCh=n2:n1.parent.rightCh=n2;n2!==null&&(n2.parent=n1.parent)},BSTree.prototype.removeNode=function(node){if(node.leftCh===null)this.transplant(node,node.rightCh);else if(node.rightCh===null)this.transplant(node,node.leftCh);else{var y=this.minimumAux(node.rightCh);y.parent!==node&&(this.transplant(y,y.rightCh),y.rightCh=node.rightCh,y.rightCh.parent=y);this.transplant(node,y);y.leftCh=node.leftCh;y.leftCh.parent=y}},BSTree.prototype.inorderTraversalAux=function(node,callback,signal){node===null||signal.stop||(this.inorderTraversalAux(node.leftCh,callback,signal),signal.stop)||(signal.stop=callback(node.element)===!1,signal.stop)||this.inorderTraversalAux(node.rightCh,callback,signal)},BSTree.prototype.levelTraversalAux=function(node,callback){var queue=new Queue;for(node!==null&&queue.enqueue(node);!queue.isEmpty();){if(node=queue.dequeue(),callback(node.element)===!1)return;node.leftCh!==null&&queue.enqueue(node.leftCh);node.rightCh!==null&&queue.enqueue(node.rightCh)}},BSTree.prototype.preorderTraversalAux=function(node,callback,signal){node===null||signal.stop||(signal.stop=callback(node.element)===!1,signal.stop)||(this.preorderTraversalAux(node.leftCh,callback,signal),signal.stop)||this.preorderTraversalAux(node.rightCh,callback,signal)},BSTree.prototype.postorderTraversalAux=function(node,callback,signal){node===null||signal.stop||(this.postorderTraversalAux(node.leftCh,callback,signal),signal.stop)||(this.postorderTraversalAux(node.rightCh,callback,signal),signal.stop)||(signal.stop=callback(node.element)===!1)},BSTree.prototype.minimumAux=function(node){while(node.leftCh!==null)node=node.leftCh;return node},BSTree.prototype.maximumAux=function(node){while(node.rightCh!==null)node=node.rightCh;return node},BSTree.prototype.heightAux=function(node){return node===null?-1:Math.max(this.heightAux(node.leftCh),this.heightAux(node.rightCh))+1},BSTree.prototype.insertNode=function(node){for(var parent=null,position=this.root,cmp=null;position!==null;){if(cmp=this.compare(node.element,position.element),cmp===0)return null;cmp<0?(parent=position,position=position.leftCh):(parent=position,position=position.rightCh)}return node.parent=parent,parent===null?this.root=node:this.compare(node.element,parent.element)<0?parent.leftCh=node:parent.rightCh=node,node},BSTree.prototype.createNode=function(element){return{element:element,leftCh:null,rightCh:null,parent:null}},BSTree}();collections.BSTree=BSTree})(collections||(collections={}));NGenConstants=function(){function NGenConstants(){}return NGenConstants.NGEN_MODULE="lhh.ngen",NGenConstants.SUCCESS="1",NGenConstants.UI_ROUTER="ui.router",NGenConstants.UI_BOOTSTRAP="ui.bootstrap",NGenConstants.NGEN_DATA_MODULE="ngen.data",NGenConstants.UI_SORTABLE="ui.sortable",NGenConstants.ANGULAR_CROPPIE="ngCroppie",NGenConstants.ROOT="root",NGenConstants.ROOT_CONTROLS=NGenConstants.ROOT+".controls",NGenConstants.ROOT_HOME=NGenConstants.ROOT_CONTROLS+".home",NGenConstants.ROOT_PATH="#/",NGenConstants.ROOT_DIALOG=NGenConstants.ROOT_CONTROLS+".dialog",NGenConstants.STATE="$state",NGenConstants.STATE_PARAMS="$stateParams",NGenConstants.STATE_PROVIDER="$stateProvider",NGenConstants.ISCE_SERVICE="$sce",NGenConstants.ANCHOR_SCROLL="$anchorScroll",NGenConstants.SCOPE="$scope",NGenConstants.ROOT_SCOPE="$rootScope",NGenConstants.COMPILE="$compile",NGenConstants.ELEMENTSVC="$element",NGenConstants.FILTER="$filter",NGenConstants.ROUTE_PARAMS="$routeParams",NGenConstants.API_ADDRESS="/api",NGenConstants.DEFAULT_LANGUAGE_ID=2,NGenConstants.SETTING_ID=1,NGenConstants.DEFAULT_BASE_LANGUAGE_CODE="EN",NGenConstants.PAGELOOK_PARM="pageLook",NGenConstants.TIMEOUT="$timeout",NGenConstants.STATE_HOME="home",NGenConstants.VIEW_TOP="topView",NGenConstants.VIEW_BOTTOM="bottomView",NGenConstants.ADJUST_FEEDBACK_BUTTON="AdjustFeedbackButton",NGenConstants.RESTANGULAR_MODULE="restangular",NGenConstants.RESTANGULAR="Restangular",NGenConstants.RESTANGULAR_PROVIDER="RestangularProvider",NGenConstants.ANGULAR_FLEXSLIDER="angular-flexslider",NGenConstants.NEW_MODE="new",NGenConstants.EDIT_MODE="edit",NGenConstants.ID="ID",NGenConstants.ANGULAR_UI_PARENT="^",NGenConstants.ANGULAR_LOADING_BAR="angular-loading-bar",NGenConstants.NEW_ID=-1,NGenConstants.MODAL="$modal",NGenConstants.MODAL_INSTANCE="$modalInstance",NGenConstants.DEFAULT_CSS_BUNDLE="default",NGenConstants.CSS_2019_BUNDLE="css2019",NGenConstants.LOCALE="$locale",NGenConstants.LOCATION="$location",NGenConstants.REFRESH_FWD_URL="refreshfwdurl",NGenConstants.NGEN_APP_MODULE="ngen.app",NGenConstants.NGEN_APP_ROUTE_MODULE="ngen.app.route",NGenConstants.AUTOCOMPLETE_MODULE="ngAutocomplete",NGenConstants.PUBLIC_ROUTE_MODULE="public.route",NGenConstants.NGEN_APP_CONTROLLER="NGenAppCtrl",NGenConstants.HEADER_VIEW="Spa/cms/views/header.htm",NGenConstants.HEADER_CONTROLLER="header.controller",NGenConstants.HEADER_ID="headerId",NGenConstants.MENU_VIEW="Spa/cms/views/menu.htm",NGenConstants.MENU_CONTROLLER="menu.controller",NGenConstants.MENU_ID="mainNavID",NGenConstants.HOME_VIEW="Spa/ngen/app/home/home.htm",NGenConstants.HOME_CONTROLLER="HomeCtrl",NGenConstants.FOOTER_VIEW="Spa/cms/views/footer.htm",NGenConstants.FOOTER_CONTROLLER="footer.controller",NGenConstants.FOOTER_LOGIN_CONTROLLER="footerLogin.controller",NGenConstants.SSO="/sso",NGenConstants.SELF_ENROLLMENT="/selfenrollment",NGenConstants.SSO_LOGIN_B2C="SSOLoginB2C",NGenConstants.SSO_IN_PROGRESS="SSOInProgress",NGenConstants.REGISTRATION_IN_PROGRESS="RegistrationInProgress",NGenConstants.SSO_IN_PROGRESS_BASIC_AUTH="SSOInProgressBasicAuth",NGenConstants.SELF_REGISTRATION_LOGIN_B2C="SelfRegistrationLoginB2C",NGenConstants.SP_Login="SPLogin",NGenConstants.GenrateNewLinkandVerifyexitigMagicKey="GenrateNewLinkandVerifyexitigMagicKey",NGenConstants.ClearApplicationCookies="ClearApplicationCookies",NGenConstants.SupportLinkClicked="SupportLinkClicked",NGenConstants.UPDATE_SSO_KEY_STATUS="UpdateSSOKeyStatus",NGenConstants.ADD_MFA_SESSION="AddMfaSession",NGenConstants.GET_USER_SESSION_DATA="GetUserSessionData",NGenConstants.SESSION_DATA_B2C="SessionDataB2C",NGenConstants.SESSION_DATA="SessionData",NGenConstants.CALENDAR_EVENT_INVITE="calendarEventInvite",NGenConstants.LOGIN_PAGE_GET_BY_URL="LoginPageGetByUrl?url=",NGenConstants.BRANDING_URL="brandingURL",NGenConstants.KMSI="kmsi",NGenConstants.EXTRA_QUERY_PARAMETERS="extraQueryParameters",NGenConstants.DOMAIN_HINT="domain_hint",NGenConstants.NGEN_UID="ngenUId",NGenConstants.BRANDING_CUSTOMER="branding_customer",NGenConstants.NGEN_MESSAGE_BOX="ngen.messagebox",NGenConstants.PAGINATION_ID="#Pagination",NGenConstants.DEFAULT_PAGE_SIZE=10,NGenConstants.DEFAULT_PAGE_SIZE_50=50,NGenConstants.DEFAULT_ROW_COUNT="DefaultRowCount",NGenConstants.EDIT_URL="/edit/:ID",NGenConstants.EDIT_STATE=".edit",NGenConstants.INFO_URL="/info/:ID",NGenConstants.TRANSLATE_API=NGenConstants.API_ADDRESS+"/Translation",NGenConstants.TRANSLATE_LOADER_API="/Translation",NGenConstants.PASCALPRECHT_TRANSLATE_MODULE="pascalprecht.translate",NGenConstants.PASCALPRECHT_TRANSLATE="$translate",NGenConstants.PASCALPRECHT_TRANSLATE_PROVIDER="$translateProvider",NGenConstants.TRANSLATE_MANAGER="TranslateManager",NGenConstants.DYNAMIC_LOCALE_MODULE="tmh.dynamicLocale",NGenConstants.INFINITE_SCROLL="infinite-scroll",NGenConstants.FROALA_MODULE="froala",NGenConstants.TRANSLATE_LANGUAGEKEY_EN_US="EN-US",NGenConstants.LANGUAGE_KEY="languageKey",NGenConstants.FALLBACK_LANGUAGE="fallbacklanguage",NGenConstants.COUNTRY_CODE_US="US",NGenConstants.ID_FIELD="Id",NGenConstants.NAME_FIELD="Name",NGenConstants.USERNAME_FIELD="UserName",NGenConstants.LOAD_DATE="LoadDate",NGenConstants.NAME_PARAM="name",NGenConstants.DESCRIPTION_FIELD="Description",NGenConstants.DATE_FIELD="Date",NGenConstants.LOCATION_FIELD="Location",NGenConstants.COUNTRY_FIELD="Country",NGenConstants.KEY="Key",NGenConstants.ACTIVE="Active",NGenConstants.SORT_ORDER_FIELD="SortOrder",NGenConstants.ORDER_FIELD="Order",NGenConstants.EMAIL_FIELD="Email",NGenConstants.EMPTY_FORM="emptyForm",NGenConstants.OPTOUT="OptOut",NGenConstants.OPTOUT_EDIT_CONTROLLER="OptOutEditCtrl",NGenConstants.OPTOUT_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".optout",NGenConstants.OPTOUT_EDIT_VIEW="Spa/admin/optout/optout.edit.htm",NGenConstants.VALID_CHAR="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",NGenConstants.NOTIFICATION_ROW_COLOR="red",NGenConstants.MAX_PAGINATION_SIZE=5,NGenConstants.DEFAULT_INITIATIVE_PAGINATION_SIZE=50,NGenConstants.BOUNDARY_LINKS_VISIBLE=!0,NGenConstants.ADB2C_LOGIN_FLAG="true",NGenConstants.MAX_SESSION_DURATION_TIME="MaxSessionDurationTime",NGenConstants.NG_SANITIZE="ngSanitize",NGenConstants.NG_ANIMATE="ngAnimate",NGenConstants.NG_INPUT_DATE="ngInputDate",NGenConstants.TOGGLE_SWITCH="toggle-switch",NGenConstants.ANGULAR_UI_SELECT2="ui.select2",NGenConstants.DEFAULT_PAGE_NUMBER=1,NGenConstants.PAGE_SIZE_GET_ALL=-1,NGenConstants.SMART_LINK_EXPIRATION_CONTENT_ID="SmartLinkExpirationContentID",NGenConstants.Q_SERVICE="$q",NGenConstants.Q_SERVICE_PROVIDER="$qProvider",NGenConstants.ACCOUNT="Account",NGenConstants.MAGIC_LINK="MagicLink",NGenConstants.LOGIN="Login",NGenConstants.SSO_LOGIN="SSOLogin",NGenConstants.SESSION_LOGIN="SessionLogin",NGenConstants.LOGOFF="LogOff",NGenConstants.EXTERNAL_LOGIN_PROVIDER="ExternalLoginProvider",NGenConstants.EXTERNAL_LOGIN_CHECK="ExternalLoginCheck",NGenConstants.VERIFY_EXTERNAL_LOGIN="VerifyExternalLogin",NGenConstants.CHECK_USERNAME_AVAIL="CheckUserNameAvail",NGenConstants.CHANGE_USERNAME_AND_PASSWORD="ChangeUserNameAndPassword",NGenConstants.UPDATE_SET_PASSWORD="UpdateSetPassword",NGenConstants.IS_PREVIOUS_PASSWORD="IsPreviousPassword",NGenConstants.EXTERNAL_ACCOUNT_NOT_ASSOCIATED="NGEN_EXTERNAL_ACCOUNT_NOT_ASSOCIATED",NGenConstants.REGISTER_EXTERNAL_ACCOUNT_MESSAGE="NGEN_REGISTER_EXTERNAL_ACCOUNT",NGenConstants.REGISTER_EXTERNAL_ACCOUNT_FACEBOOK="NGEN_FACEBOOK",NGenConstants.REGISTER_EXTERNAL_ACCOUNT_LINKEDIN="NGEN_LINKEDIN",NGenConstants.REGISTER_EXTERNAL_ACCOUNT_GOOGLEPLUS="NGEN_GOOGLEPLUS",NGenConstants.SELF_REGISTRATION="SelfRegistration",NGenConstants.SELF_ENROLL="SelfEnroll",NGenConstants.CANDIDATE_CREATE="CandidateCreate",NGenConstants.GET_CUSTOMER_ATTRIBUTE_WITH_OPTIONS="GetCustomerAttributesWithOptions",NGenConstants.USER_DATA="UserData",NGenConstants.SPECIFIC_USER_DATA="SpecificUserData",NGenConstants.CONSULTANT_ON_CALL="ConsultantOnCallContent",NGenConstants.BRANDINGCONSULTANT_ON_CALL="BrandingConsultantOnCallContent",NGenConstants.ALUMNI_SUPPORT="AlumniSupport",NGenConstants.USER_MANAGER="UserManager",NGenConstants.SESSION_INFO="SessionInfo",NGenConstants.SESSION_TIMEOUT_TIME="SessionTimeoutTime",NGenConstants.SESSION_OWIN_TIMEOUT_TIME="SessionOwinTimeoutTime",NGenConstants.SELF_MANAGER="SelfEnrollmentManager",NGenConstants.SETTING_MANAGER="SettingManager",NGenConstants.ADMIN_ROLE=1,NGenConstants.LEARNING_SERVICE="learningServiceSvc",NGenConstants.COUNTRY_SERVICE="countrySvc",NGenConstants.USER_PROFILE="UserProfile",NGenConstants.DEVELOPME_PROFILE="DevelopMeProfile",NGenConstants.USER_PROFILE_SOCIAL_NETWORKING_TABS="externallogin",NGenConstants.AUDIT_SERVICE="AuditMSSvc",NGenConstants.EXTERNAL_LOGIN_REGISTRATION="ExternalLoginRegistration",NGenConstants.RETRIEVE_USERNAME="RetrieveUserName",NGenConstants.REQUEST_RESET="RequestResetSPA",NGenConstants.REQUEST_RESET_PASSWORD="RequestReset",NGenConstants.FORGOT_USERNAME="forgotusername",NGenConstants.REQUEST_RESET_MULTIPLE_EMAIL_MATCH_EXCEPTION="NGEN_MULTIPLE_EMAIL_MATCH_EXCEPTION",NGenConstants.REQUEST_RESET_MINIMUM_PASSWORD_AGE="NGEN_MINIMUM_PASSWORD_AGE",NGenConstants.NGEN_GOOGLE_RECAPTCHA_RESPONSE_VALIDATION_ERROR="NGEN_GOOGLE_RECAPTCHA_RESPONSE_VALIDATION_ERROR",NGenConstants.REQUEST_RESET_MINIMUM_PASSWORD_AGE_DAYS="MinimumPasswordAgeDays",NGenConstants.REQUEST_RESET_DAYS="NGEN_DAYS",NGenConstants.RESET_PASSWORD="ResetPassword",NGenConstants.CHANGE_PASSWORD="ChangePassword",NGenConstants.CHANGE_PASSWORD_STATE=NGenConstants.ROOT_CONTROLS+".changePassword",NGenConstants.CHANGE_PASSWORD_CONTROLLER="ChangePasswordCtrl",NGenConstants.SESSION_STORAGE="sessionStorageBackup",NGenConstants.TOKEN_DATA="TokenData",NGenConstants.JOB_TRACKER_USER_JOBS_RESPONSE_SESSION_KEY="JOB_TRACKER_USER_JOBS_RESPONSE_SESSION_KEY",NGenConstants.USER_DYNAMIC_LINKS="UserDynamicLinks",NGenConstants.REMEMBER_USER="RememberUser",NGenConstants.SELFENROLLMENT_STATUS="selfenrollmentstatus",NGenConstants.CODE_FIELD="code",NGenConstants.CONTENT_TYPE_JSON="application/json",NGenConstants.LOGIN_RETURN_URL="/#/sso/externallogin",NGenConstants.SLASH="/",NGenConstants.ANGULAR_FILE_UPLOAD="angularFileUpload",NGenConstants.FILE_UPLOADER_SERVICE="$fileUploader",NGenConstants.ADMIN_FILES_PAGE="root.controls.admin.files",NGenConstants.LOCATIONS="Location",NGenConstants.COUNTRY="Country",NGenConstants.LINE_OF_BUSINESS="LineOfBusiness",NGenConstants.UTC_DATE_FORMAT="dd-MMMM-yyyyZ",NGenConstants.ANGULAR_STRAP="mgcrea.ngStrap",NGenConstants.ANGULAR_STRAP_DATEPICKER="mgcrea.ngStrap.datepicker",NGenConstants.ANGULAR_STRAP_TIMEPICKER="mgcrea.ngStrap.timepicker",NGenConstants.DATE_FILTER_UTC="utcDateFormat",NGenConstants.PROFILE_VIEW="Spa/ngen/app/home/profile.htm",NGenConstants.PROFILE_CONTROLLER="ProfileCtrl",NGenConstants.CREATED_BY="CreatedBy",NGenConstants.UPDATED_BY="UpdatedBy",NGenConstants.LAST_UPDATED="LastUpdated",NGenConstants.WINDOW="$window",NGenConstants.PARSE="$parse",NGenConstants.TIMEOUT_SERVICE="$timeout",NGenConstants.INTERVAL_SERVICE="$interval",NGenConstants.SURVEY_FORMS="SurveyForm",NGenConstants.ADB2C_KEY_VALUE="AdB2cKeyValues",NGenConstants.SPAClientKey="SPAClientKey",NGenConstants.AUTHENTICATION="authentication",NGenConstants.EXTERNAL_SESSION_USER_DATA="externalsessionuserdata",NGenConstants.UNDEFINED="undefined",NGenConstants.CURRENT_USER="CurrentUser",NGenConstants.COLLEAGUE="Colleague",NGenConstants.USER="User",NGenConstants.USER_LOAD_DEFAULT="UserLoadDefault",NGenConstants.DATE="Date",NGenConstants.TIMESTAMP="TimeStamp",NGenConstants.FRANCE="France",NGenConstants.BREADCRUMB_DIRECTIVE="ngenBreadcrumb",NGenConstants.BREADCRUMB_VIEW="Spa/ngen/ui/breadcrumb.htm",NGenConstants.EMBED_HTML_DIRECTIVE="ngenEmbedHtml",NGenConstants.NGEN_ID="NGEN_ID",NGenConstants.NGEN_ERROR="NGEN_ERROR",NGenConstants.NGEN_EDIT="NGEN_EDIT",NGenConstants.NGEN_HOME="NGEN_HOME",NGenConstants.NGEN_INFO="NGEN_INFO",NGenConstants.NGEN_REPORT="NGEN_REPORT",NGenConstants.NGEN_SETTING="NGEN_SETTING",NGenConstants.NGEN_USER="NGEN_USER",NGenConstants.NGEN_ROLE="NGEN_ROLE",NGenConstants.NGEN_CONTENT="NGEN_CONTENT",NGenConstants.NGEN_ENVIRONMENT="NGEN_ENVIRONMENT",NGenConstants.NGEN_ANGULAR_VERSION="NGEN_ANGULAR_VERSION",NGenConstants.NGEN_RELEASE_NOTES="NGEN_RELEASE_NOTES",NGenConstants.NGEN_BOOTSTRAP_VERSION="NGEN_BOOTSTRAP_VERSION",NGenConstants.NGEN_ACTION="NGEN_ACTION",NGenConstants.NGEN_ACTIONS="NGEN_ACTIONS",NGenConstants.NGEN_NAME="NGEN_NAME",NGenConstants.NGEN_DATE="NGEN_DATE",NGenConstants.NGEN_TIMESTAMP="NGEN_TIMESTAMP",NGenConstants.NGEN_DELETE_CONFIRM="NGEN_DELETE_CONFIRM",NGenConstants.NGEN_MFA_SESSION_TIMEOUT="MFA_SESSION_TIMEOUT",NGenConstants.NGEN_MFA_SESSION_EXPIRED="MFA_SESSION_EXPIRED",NGenConstants.SESSION_CONCURRENT_ERROR_MSG="SESSION_CONCURRENT_ERROR_MSG",NGenConstants.NGEN_LOADING_TXT="NGEN_LOADING_TXT",NGenConstants.GLOBAL_LOADER="globalLoader",NGenConstants.BODY="body",NGenConstants.GLOBAL_LOADER_TEXT="globalLoaderText",NGenConstants.ADB2C_LOADER_TEXT="ADB2CLoaderText",NGenConstants.NGEN_REDIRECT_CONFIRM="NGEN_REDIRECT_CONFIRM",NGenConstants.NGEN_RESOURCE_KEY="NGEN_RESOURCE_KEY",NGenConstants.NGEN_USERNAME="NGEN_USERNAME",NGenConstants.NGEN_LASTNAME="NGEN_LASTNAME",NGenConstants.NGEN_LIVE_MEETING="NGEN_LIVE_MEETING",NGenConstants.NGEN_WEBEX="NGEN_WEBEX",NGenConstants.NGEN_UPLOAD="NGEN_UPLOAD",NGenConstants.NGEN_SUCCESSFUL="NGEN_SUCCESSFUL",NGenConstants.NGEN_WARNING="NGEN_WARNING",NGenConstants.NGEN_FAILED_TO="NGEN_FAILED_TO",NGenConstants.NGEN_INPUT_INVALID="NGEN_INPUT_INVALID",NGenConstants.NGEN_CLOSE_PAGE_LOSE_CHANGES="NGEN_CLOSE_PAGE_LOSE_CHANGES",NGenConstants.NGEN_ARE_YOU_SURE="NGEN_ARE_YOU_SURE",NGenConstants.NGEN_PERMISSIONS="NGEN_PERMISSIONS",NGenConstants.NGEN_CLICK_FOR_DETAILS="NGEN_CLICK_FOR_DETAILS",NGenConstants.NGEN_NO="NGEN_NO",NGenConstants.NGEN_YES="NGEN_YES",NGenConstants.NGEN_NO_CANDIDATES_SELECTED="NGEN_NO_CANDIDATES_SELECTED",NGenConstants.NGEN_SITE="NGEN_SITE",NGenConstants.NGEN_TEMPLATE="NGEN_TEMPLATE",NGenConstants.NGEN_STATE="NGEN_STATE",NGenConstants.NGEN_ABOUT_US="NGEN_ABOUT_US",NGenConstants.NGEN_CONTACT_US="NGEN_CONTACT_US",NGenConstants.NGEN_PRIVACY_POLICY="NGEN_PRIVACY_POLICY",NGenConstants.NGEN_PROFILE_REVIEW="NGEN_PROFILE_REVIEW",NGenConstants.NGEN_TERMS_CONDITIONS="NGEN_TERMS_CONDITIONS",NGenConstants.NGEN_COOKIE_POLICY="NGEN_COOKIE_POLICY",NGenConstants.NGEN_MARKETING_POLICY="NGEN_MARKETING_POLICY",NGenConstants.NGEN_SITE_SUPPORT="NGEN_SITE_SUPPORT",NGenConstants.NGEN_SEARCH="NGEN_SEARCH",NGenConstants.NGEN_BANNER="NGEN_BANNER",NGenConstants.NGEN_SUBJECT="NGEN_SUBJECT",NGenConstants.NGEN_EMAIL="NGEN_EMAIL",NGenConstants.POLL_FEEDBACK_BTN="POLL_FEEDBACK_BTN",NGenConstants.POLICIES_INFORMATION="policesInformation",NGenConstants.GET_POLICIES_INFORMATION_API="/GetPoliciesInformation",NGenConstants.NGEN_PRIVACYPOLICY_AGREE="NGEN_PRIVACYPOLICY_AGREE",NGenConstants.NGEN_PRIVACYPOLICY_AGREED="NGEN_PRIVACYPOLICY_AGREED",NGenConstants.NGEN_TERMSANDCONDITIONS_AGREE="NGEN_TERMSANDCONDITIONS_AGREE",NGenConstants.NGEN_TERMSANDCONDITIONS_AGREED="NGEN_TERMSANDCONDITIONS_AGREED",NGenConstants.NGEN_COOKIEPOLICY_AGREE="NGEN_COOKIEPOLICY_AGREE",NGenConstants.NGEN_COOKIEPOLICY_AGREED="NGEN_COOKIEPOLICY_AGREED",NGenConstants.NGEN_MARKETINGPOLICY_AGREE="NGEN_MARKETINGPOLICY_AGREE",NGenConstants.NGEN_MARKETINGPOLICY_AGREED="NGEN_MARKETINGPOLICY_AGREED",NGenConstants.NGEN_OK="NGEN_OK",NGenConstants.NGEN_CANCEL="NGEN_CANCEL",NGenConstants.AUTH_LEAVING_LHH="AUTH_LEAVING_LHH",NGenConstants.AUTH_CONFIRM_LEAVING_SITE="AUTH_CONFIRM_LEAVING_SITE",NGenConstants.CANDIDATE_JOBS_SEARCH_IS_CONFIDENTIAL="CANDIDATE_JOBS_SEARCH_IS_CONFIDENTIAL",NGenConstants.LIVE_EVENTS_ALL_LANGUAGE="LIVE_EVENTS_ALL_LANGUAGE",NGenConstants.USERS_MYPROFILE_RESUME_FILE_TYPE_NOT_VALID="USERS_MYPROFILE_RESUME_FILE_TYPE_NOT_VALID",NGenConstants.RESUME_UPLOAD_FILE_TYPE_NOT_VALID="RESUME_UPLOAD_FILE_TYPE_NOT_VALID",NGenConstants.NOT_ACCEPTABLE_STATUS=406,NGenConstants.NICKNAME_LENGTH_FOR_USER=100,NGenConstants.MOBILE_NUMBER_LENGTH_FOR_USER=25,NGenConstants.SKYPEID_LENGTH_FOR_USER=50,NGenConstants.WEBEX_ROOM_LENGTH_FOR_COLLEAGUE=200,NGenConstants.TITLE_LENGTH_FOR_COLLEAGUE=100,NGenConstants.TIMEOUT_STATUS=504,NGenConstants.TEXT="text",NGenConstants.NUMBER="number",NGenConstants.INTEGER="integer",NGenConstants.DATE_TIME_LOCAL="datetime-local",NGenConstants.CHECKBOX="checkbox",NGenConstants.INTEGER_REGEX=/^\d+$/,NGenConstants.FLOAT_REGEX=/^\d+?(\.\d+)?$/,NGenConstants.ELEMENT="E",NGenConstants.ATTRIBUTE="A",NGenConstants.PLUS="+",NGenConstants.US_COUNTRY_ID=9,NGenConstants.FILTER_COUNTRY_BY_CODE="CountryCode",NGenConstants.FILTER_COUNTRY_BY_ID="ID",NGenConstants.EXPESSION_QUOTE_BEGIN="{{",NGenConstants.EXPESSION_QUOTE_END="}}",NGenConstants.ANGULAR_TRANSLATE_FILTER="translate",NGenConstants.HAS_TIMEZONE_REGEX=/Z|\\+/i,NGenConstants.HAS_ISO_NOTIMEZONE_REGEX=/\d{4}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d/,NGenConstants.SMART_PHONE_REGEX="/iPad|iPhone|Blackberry|Android/i",NGenConstants.TOKEN_PATTERN_REGEX="\\[[A-Z0-9]+\\]",NGenConstants.REGEX_GLOBAL="g",NGenConstants.DELIMINATOR_TOKEN_BEGIN="[",NGenConstants.DELIMINATOR_TOKEN_END="]",NGenConstants.MILLISECONDS_IN_MINUTE=6e4,NGenConstants.YEAR_1970=1970,NGenConstants.ANALYTICS_MODULE="angular-google-analytics",NGenConstants.ANALYTICS_PROVIDER="Analytics",NGenConstants.ANALYTICS_ACCOUNT="UA-47923441-1",NGenConstants.ANALYTICS_DOMAIN="none",NGenConstants.AUTH_INTERCEPT="AuthIntercept",NGenConstants.TRANSLATE_LOADER="TranslateLoaderAsync",NGenConstants.HTTP_PROVIDER="$httpProvider",NGenConstants.PROVIDE="$provide",NGenConstants.INJECTOR="$injector",NGenConstants.DBM_GUID="2FB55E8A-1F4F-45EE-9344-D5ECF56F29CA",NGenConstants.JWPLAYER="ng-jwplayer",NGenConstants.JWPLAYER_SERVICE="jwplayerService",NGenConstants.SETTING_GET_ALL="SettingGetAll",NGenConstants.SETTING_BY_NAME="SettingByName",NGenConstants.SETTING_PASSWORD_RESET_LINK="PasswordResetLink",NGenConstants.SETTING_DOMAIN_URL="DomainURL",NGenConstants.SETTING_LAUNCH_LINK_URL="LaunchLinkURL",NGenConstants.SETTING_COOKIE_POLICY_CONTENTID="CookiePolicyContentID",NGenConstants.SETTING_RESUMEUPLOADPOLICY_CONTENTID="GDPRResumeUploadPolicyContentID",NGenConstants.USERNAME_PARAM="Username",NGenConstants.USERGUID_PARAM="UserGuid",NGenConstants.SSO_KEY_PARAM="SSOKey",NGenConstants.REDIRECT_PATH_PARAM="RedirectPath",NGenConstants.SITE_TYPE_PARAM="SiteType",NGenConstants.SUMMARY="Summary",NGenConstants.KEYWORD="Keyword",NGenConstants.BANNER="Banner",NGenConstants.HOME_BANNER_TIMER="HomeBannerTimer",NGenConstants.AllowNewJobtracker="AllowNewJobtracker",NGenConstants.PAGE_TRACKING_MANAGER="PageTrackingManager",NGenConstants.PAGE_TRACKING="PageTracking",NGenConstants.TRACK_PAGE="PostPageTracking",NGenConstants.FUTURE_STATE_PROVIDER="$futureStateProvider",NGenConstants.RUNTIME_STATES="RuntimeStates",NGenConstants.NGEN_SAVE_CHANGES="NGEN_SAVE_CHANGES",NGenConstants.COLLEAGUE_WEBEX_BASE_URL="ColleagueWebExBaseURL",NGenConstants.PATHEER_URL="PatheerURL",NGenConstants.MESSAGING="Messaging",NGenConstants.MESSAGING_EDIT_CONTROLLER="MessagingEditCtrl",NGenConstants.MESSAGING_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".messaging",NGenConstants.MESSAGING_EDIT_VIEW="Spa/ngen/messaging/messaging.edit.htm",NGenConstants.MESSAGING_RECIPIENT="MessagingRecipient",NGenConstants.MESSAGING_TYPE_CANDIDATE="candidate",NGenConstants.MESSAGING_TYPE_CONSULTANT="consultant",NGenConstants.MESSAGING_TYPE_BRANDINGCONSULTANT="brandingconsultant",NGenConstants.TIME_ZONE="TimeZone",NGenConstants.CONSULTANT_ROLE_ID=5,NGenConstants.OFFICE="Office",NGenConstants.CONTRACT="Contract",NGenConstants.COMPANY="Company",NGenConstants.ADDRESS="Address",NGenConstants.LINKEDIN_PROVIDER_NAME="LinkedIn",NGenConstants.FACEBOOK_PROVIDER_NAME="Facebook",NGenConstants.GOOGLE_PROVIDER_NAME="GooglePlus",NGenConstants.CAREERSEARCH_URL="CareerSearchUrl",NGenConstants.JOBSCOUT_URL="JobScoutUrl",NGenConstants.INTERVIEWCENTER_URL="InterviewCenterUrl",NGenConstants.ISAAC_URL="IsaacUrl",NGenConstants.PORTALSUPPORT_EMAIL="portalsupport@lhh.com",NGenConstants.ISPEAK_URL="ISpeakURL",NGenConstants.ECAREERFIT_URL="EcareerFitUrl",NGenConstants.LEARNING_CENTER_URL="/#/learning/session/candidate",NGenConstants.GETABINTEGRO_URL="SSO/GetAbintegroURL",NGenConstants.ABINTEGRO_LINK="SSO/GetABIntegroLink",NGenConstants.ABINTEGRO_ACTIVITY="ABIntegroSSO",NGenConstants.LEGACY_CRN_SSO_REDIRECT_URL="SSO/GetLegacyCRNSSORedirectURL",NGenConstants.SET_LOGIN_VALUES="SetLoginValues",NGenConstants.GET_LOGIN_COUNT="GetLoginCount",NGenConstants.CONTROL_CONTROLLERS="ControlControllers",NGenConstants.CONTROL_VIEWS="ControlViews",NGenConstants.JOBFUNCTION_KEYWORDS=11,NGenConstants.TRANSITIONTYPE_KEYWORDS=10,NGenConstants.REQUEST_RESET_NO_EMAIL_MATCH_EXCEPTION="NGEN_NO_EMAIL_MATCH_EXCEPTION",NGenConstants.TWITTER_USER="TwitterUser",NGenConstants.TWEET_COUNT="TweetCount",NGenConstants.TWITTER_OAUTH_TOKEN="Twitter_Oauth_Token",NGenConstants.TWITTER_OAUTH_TOKEN_SECRET="Twitter_Oauth_Token_Secret",NGenConstants.TWITTER_OAUTH_CONSUMER_KEY="Twitter_Oauth_Consumer_Key",NGenConstants.TWITTER_OAUTH_CONSUMER_KEY_SECRET="Twitter_Oauth_Consumer_Secret",NGenConstants.HELP_ON_CLICK_CONTROLLER="HelpOnClickCtrl",NGenConstants.JOBSCOUT_PAGENAME="FindJobs.aspx",NGenConstants.MYRESUME_PAGENAME="MyResume.aspx?Mode=Insert",NGenConstants.MYRESUME_RESERVE_PAGENAME="MyResumes.aspx",NGenConstants.SAVEDSEARCH_PAGENAME="SavedSearches.aspx",NGenConstants.DEFAULT_PAGENAME="Default.aspx",NGenConstants.SAMPLE_DOCUMENTS_PAGENAME="SampleDocuments.aspx",NGenConstants.INSALA_PAGENAME="InSala.aspx",NGenConstants.RED_RESUME_BUILDER="RedResumeBuilder.aspx",NGenConstants.RESUME_CRITIQUE_PAGENAME="ResumeCritique.aspx",NGenConstants.MY_DOCUMENT_PAGENAME="MyDocuments.aspx",NGenConstants.CANDIDATE_CONNECT_PAGENAME="CandidateConnect.aspx",NGenConstants.ASSESSMENT_DE_PAGENAME="assessmentsDE.aspx",NGenConstants.ASSESSMENT_ES_PAGENAME="assessmentsES.aspx",NGenConstants.ASSESSMENT_FR_PAGENAME="assessmentsFR.aspx",NGenConstants.ASSESSMENT_IT_PAGENAME="assessmentsIT.aspx",NGenConstants.ASSESSMENT_JP_PAGENAME="assessmentsJP.aspx",NGenConstants.ASSESSMENT_NL_PAGENAME="assessmentsNL.aspx",NGenConstants.ASSESSMENT_GERMANY_PAGENAME="assessmentsgermany.aspx",NGenConstants.ASSESSMENT_EN_US_1_PAGENAME="assessmentsENUS1.aspx",NGenConstants.ASSESSMENT_EN_US_2_PAGENAME="assessmentsENUS2.aspx",NGenConstants.ASSESSMENT_EN_US_3_PAGENAME="assessmentsENUS3.aspx",NGenConstants.ASSESSMENT_EN_US_4_PAGENAME="assessmentsENUS4.aspx",NGenConstants.ASSESSMENT_EN_US_5_PAGENAME="assessmentsENUS5.aspx",NGenConstants.ASSESSMENT_EN_US_6_PAGENAME="assessmentsENUS6.aspx",NGenConstants.ASSESSMENT_EN_GB_1_PAGENAME="assessmentsENGB1.aspx",NGenConstants.ASSESSMENT_EN_GB_2_PAGENAME="assessmentsENGB2.aspx",NGenConstants.ASSESSMENT_EN_GB_3_PAGENAME="assessmentsENGB3.aspx",NGenConstants.ASSESSMENT_EN_GB_4_PAGENAME="assessmentsENGB4.aspx",NGenConstants.ASSESSMENT_EN_GB_5_PAGENAME="assessmentsENGB5.aspx",NGenConstants.ASSESSMENT_EN_GB_6_PAGENAME="assessmentsENGB6.aspx",NGenConstants.ASSESSMENT_NL_NL_1_PAGENAME="assessmentsNLNL1.aspx ",NGenConstants.ASSESSMENT_NL_NL_2_PAGENAME="assessmentsNLNL2.aspx ",NGenConstants.ASSESSMENT_NL_NL_3_PAGENAME="assessmentsNLNL3.aspx ",NGenConstants.ASSESSMENT_NL_NL_4_PAGENAME="assessmentsNLNL4.aspx ",NGenConstants.ASSESSMENT_NL_NL_5_PAGENAME="assessmentsNLNL5.aspx ",NGenConstants.ASSESSMENT_NL_NL_6_PAGENAME="assessmentsNLNL6.aspx ",NGenConstants.ASSESSMENT_EN_NL_7_PAGENAME="assessmentsNLNL7.aspx ",NGenConstants.MYJOBS_PAGENAME="MyJobs.aspx",NGenConstants.HOPPENSTEDT_URL="HoppenstedtURL",NGenConstants.WHOWHO_URL="WhoWhoURL",NGenConstants.NEXT_GEN_CRN_TITLE="Next Gen CRN",NGenConstants.TITLE_RESOURCE_KEY="NGEN_LHH_CANDIDATE",NGenConstants.HOMEPAGE_TITLE_RESOURCE_KEY="NGEN_LHH_CANDIDATE_HOMEPAGE",NGenConstants.JOB_SEARCH_TITLE_RESOURCE_KEY="NGEN_LHH_CANDIDATE_JOB_SEARCH",NGenConstants.JOB_MATCHES_TITLE_RESOURCE_KEY="NGEN_LHH_CANDIDATE_JOB_MATCHES",NGenConstants.JOB_TRACKER_TITLE_RESOURCE_KEY="NGEN_LHH_CANDIDATE_JOB_TRACKER",NGenConstants.CAREER_PATH_TITLE_RESOURCE_KEY="NGEN_LHH_CANDIDATE_CAREER_PATH",NGenConstants.ROADMAP_TITLE_RESOURCE_KEY="NGEN_LHH_CANDIDATE_ROADMAP",NGenConstants.CAREER_RESOURCES_TITLE_RESOURCE_KEY="NGEN_LHH_CANDIDATE_CAREER_RESOURCES",NGenConstants.UPSKILL_TITLE_RESOURCE_KEY="NGEN_LHH_CANDIDATE_UPSKILL",NGenConstants.LIVE_EVENTS_TITLE_RESOURCE_KEY="NGEN_LHH_CANDIDATE_LIVE_EVENTS",NGenConstants.SETTINGS_TITLE_RESOURCE_KEY="NGEN_LHH_CANDIDATE_SETTING",NGenConstants.ABOUT_ME_TITLE_RESOURCE_KEY="NGEN_LHH_CANDIDATE_ABOUT_ME",NGenConstants.RESUME_TITLE_RESOURCE_KEY="NGEN_LHH_CANDIDATE_RESUME",NGenConstants.MY_DOCUMENTS_TITLE_RESOURCE_KEY="NGEN_LHH_CANDIDATE_MY_DOCUMENTS",NGenConstants.MY_IDEAL_JOB_TITLE_RESOURCE_KEY="NGEN_LHH_CANDIDATE_MY_IDEAL_JOB",NGenConstants.TO_DO_TITLE_RESOURCE_KEY="NGEN_LHH_CANDIDATE_TO_DOS",NGenConstants.BOOKMARKS_TITLE_RESOURCE_KEY="NGEN_LHH_CANDIDATE_BOOKMARKS",NGenConstants.JOB_TRACKER_DETAILS_TITLE="Job Tracker Details",NGenConstants.ASK_A_COACH_TITLE_RESOURCE_KEY="NGEN_LHH_CANDIDATE_ASK_A_COACH",NGenConstants.MENTORSHIP_TITLE_RESOURCE_KEY="NGEN_LHH_CANDIDATE_MENTORSHIP",NGenConstants.RESUME_REVIEW_TITLE_RESOURCE_KEY="NGEN_LHH_CANDIDATE_RESUME_REVIEW",NGenConstants.ASK_A_COACH_SCHEDULE_A_MEETING_TITLE_RESOURCE_KEY="LHH Candidate Ask a Coach - Schedule a meeting",NGenConstants.ASK_A_COACH_EMAIL_TITLE_RESOURCE_KEY="LHH Candidate Ask a Coach - Email",NGenConstants.LIST_OF_MENTORS_TITLE_RESOURCE_KEY="LHH Candidate List of Mentors",NGenConstants.SOCIAL_NETWORKING_PROVIDER_EXTERNAL_LOGIN_CANNOT_REGISTER="NGEN_CANNOT_ASSOCIATE_ACCOUNT",NGenConstants.CONSULTANT_MEETINGS="ConsultantMeetings",NGenConstants.RATING_FIELD="Rating",NGenConstants.DEEP_LINK_MANAGER="DeepLinkManager",NGenConstants.BADGE="Badge",NGenConstants.LEGACY_AUTHENTICATION_CHANGE_PASSWORD_EXCEPTION="LHH.NGen.LegacyAuthenticationChangePasswordException",NGenConstants.NGEN_REDIRECT="NGEN_REDIRECT",NGenConstants.COMMUNITY="Community",NGenConstants.REGISTRY_URL="RegistryURL",NGenConstants.USER_RECORD_USER_STATUS_EXCEPTION="USER_RECORD_USER_STATUS_EXCEPTION",NGenConstants.USER_RECORD_EMAIL_ADDRESS_EXCEPTION="USER_RECORD_EMAIL_ADDRESS_EXCEPTION",NGenConstants.NGEN_USERNAME_INVALID="NGEN_USERNAME_INVALID",NGenConstants.FORM_ELEMENT="form",NGenConstants.HIDDEN_ELEMENT="hidden",NGenConstants.INPUT_ELEMENT="input",NGenConstants.NAME_ATTRIBUTE="name",NGenConstants.ID_ATTRIBUTE="id",NGenConstants.ACTION_ATTRIBUTE="action",NGenConstants.METHOD_ATTRIBUTE="method",NGenConstants.TARGET_ATTRIBUTE="target",NGenConstants.BLANK_TARGET="_blank",NGenConstants.DYNAMIC_LINK="dynamicLink",NGenConstants.USER_DATA_LOADED="UserDataLoaded",NGenConstants.CONCURRENT_SESSION="$ConcurrentSession",NGenConstants.INTERPOLATE="$interpolate",NGenConstants.USER_LOGGED_OFF="UserLoggedOff",NGenConstants.REFRESHING_YOUR_ENTIRE_USER_EXPERIENCE="RefreshingEntireExperience",NGenConstants.PROGRAM_GROUP="programGroup",NGenConstants.CUSTOMER_ATTRIBUTE_INPUT="customerAttributeInput",NGenConstants.CUSTOMER_ATTRIBUTE_INPUT_VIEW="Spa/ngen/ui/customerAttributeInput.htm",NGenConstants.CAREER_ANCHORS_URL="CareerAnchorsUrl",NGenConstants.CAREER_ANCHORS_PAGENAME="onlineexercises.aspx",NGenConstants.skillSoftv8_WINDOW="skillSoftWindow",NGenConstants.skillSoftv8_LAUNCH="skillSoftLaunch",NGenConstants.skillSoftv8_METHOD="post",NGenConstants.skillSoftv8_LOGIN_USERNAME="loginUserName",NGenConstants.skillSoftv8_LOGIN_PASSWORD="loginPassword",NGenConstants.skillSoftv8_USERNAME="username",NGenConstants.skillSoftv8_PASSWORD="Password",NGenConstants.skillSoftv8_FIRST_NAME="_sys_firstname",NGenConstants.skillSoftv8_LAST_NAME="_sys_lastname",NGenConstants.skillSoftv8_EMAIL="_sys_emailaddress",NGenConstants.skillSoftv8_DISPLAYFIRST_NAME="_sys_display_first_name",NGenConstants.skillSoftv8_DISPLAYLAST_NAME="_sys_display_last_name",NGenConstants.skillSoftv8_LOCATION="_sys_location",NGenConstants.skillSoftv8_IMAGE_URL="_sys_image_url",NGenConstants.skillSoftv8_ORGCODE="orgcode",NGenConstants.skillSoftv8_CCNUMBER="ccnumber",NGenConstants.skillSoftv8_CCEXPR="ccexpr",NGenConstants.skillSoftv8_CCTYPE="cctype",NGenConstants.skillSoftv8_COUNTRY="country",NGenConstants.skillSoftv8_RESTYPE="restype",NGenConstants.skillSoftv8_RESTYPE_VALUE="1",NGenConstants.skillSoftv8_DETAILED_MSG="detailedMsg",NGenConstants.skillSoftv8_PROFILE_FIELDVALUES="profileFieldValues",NGenConstants.skillSoftv8_DETAILED_MSG_VALUE="0",NGenConstants.skillSoftv8_CDATA_OPEN="![CDATA[",NGenConstants.skillSoftv8_CDATA_CLOSE="]]",NGenConstants.skillSoftv8_COURSE_ACTION="courseAction",NGenConstants.skillSoftv8_COURSE_NAME="courseName",NGenConstants.skillSoftv8_REDIRECT_TO="redirectTo",NGenConstants.skillSoftv8_REDIRECT_URL="SkillSoftv8RedirectUrl",NGenConstants.SKILLSOFT_WINDOW="skillSoftWindow",NGenConstants.SKILLSOFT_LAUNCH="skillSoftLaunch",NGenConstants.SKILLSOFT_METHOD="post",NGenConstants.SKILLSOFT_LOGIN_USERNAME="loginUserName",NGenConstants.SKILLSOFT_LOGIN_PASSWORD="loginPassword",NGenConstants.SKILLSOFT_USERNAME="userName",NGenConstants.SKILLSOFT_PASSWORD="password",NGenConstants.SKILLSOFT_FIRST_NAME="fname",NGenConstants.SKILLSOFT_LAST_NAME="lname",NGenConstants.SKILLSOFT_EMAIL="email",NGenConstants.SKILLSOFT_ORGCODE="orgcode",NGenConstants.SKILLSOFT_CCNUMBER="ccnumber",NGenConstants.SKILLSOFT_CCEXPR="ccexpr",NGenConstants.SKILLSOFT_CCTYPE="cctype",NGenConstants.SKILLSOFT_COUNTRY="country",NGenConstants.SKILLSOFT_RESTYPE="restype",NGenConstants.SKILLSOFT_RESTYPE_VALUE="1",NGenConstants.SKILLSOFT_DETAILED_MSG="detailedMsg",NGenConstants.SKILLSOFT_DETAILED_MSG_VALUE="0",NGenConstants.EXEC_GRAPEVINE_GROUP_NAME_LABEL="groupName",NGenConstants.EXEC_GRAPEVINE_GROUP_PASS_LABEL="groupPass",NGenConstants.EXEC_GRAPEVINE_USERNAME_LABEL="userName",NGenConstants.EXEC_GRAPEVINE_FAIL_URL_LABEL="failURL",NGenConstants.SSO_FAIL_URL_RELATIVE_PATH="/#/site/page/errorSSOFail",NGenConstants.EXEC_GRAPEVINE_BACK_URL_LABEL="backURL",NGenConstants.EXEC_GRAPEVINE_SSO_URL="ExecGrapevineSSOUrl",NGenConstants.POST_METHOD="post",NGenConstants.SMART_SEARCH_URL="SmartSearchURL",NGenConstants.SMART_SEARCH_REPLACE_TOKEN="@REPLACE_TOKEN@",NGenConstants.SMART_SEARCH_CISCO_PATH="",NGenConstants.SMART_SEARCH_CISCO_NAME="Cisco Systems Inc",NGenConstants.SMART_SEARCH_CISCO_CONTRACT_ID=51345,NGenConstants.SMART_SEARCH_CISCO_CONTRACT_ID_ALT=51352,NGenConstants.SMART_SEARCH_SCE_PATH="sce/",NGenConstants.SMART_SEARCH_SCE_NAME="SCE",NGenConstants.SMART_SEARCH_SCE_CONTRACT_ID=52008,NGenConstants.SMART_SEARCH_GE_PATH="gecapital/",NGenConstants.SMART_SEARCH_GE_NAME="General Electric Company",NGenConstants.SMART_SEARCH_GE_CONTRACT_ID=75595,NGenConstants.SMART_SEARCH_GE_UK_CONTRACT_ID=76213,NGenConstants.BIND_HTML_COMPILE_MODULE="angular-bind-html-compile",NGenConstants.GET_USER_TYPE="GetUserType",NGenConstants.PASSWORD_EXPIRE_CHANGE_MESSAGE="PASSWORD_EXPIRE_CHANGE_MESSAGE",NGenConstants.PASSWORD_LENGTH_FOR_CANDIDATE=8,NGenConstants.PASSWORD_LENGTH_FOR_COLLEAGUE=10,NGenConstants.ROUND_PROGRESS_BAR="angular.directives-round-progress",NGenConstants.MAGIC_LINK_URL="MagicLinkURL",NGenConstants.GET_USER_LOAD_DEFAULT_BY_CUSTOMER_ID="api/UserLoadDefault/GetByCustomerID",NGenConstants.STATUS_REASON_NEW=26,NGenConstants.STATUS_REASON="StatusReason",NGenConstants.CONTENT_MODAL_VIEW="Spa/ngen/common/content.modal.htm",NGenConstants.CONTENT_MODAL_CONTROLLER="ContentModalCtrl",NGenConstants.MODAL_TITLEKEY_PARAM="titleKey",NGenConstants.MODAL_CONTENTTEXT_PARAM="contentText",NGenConstants.PREVIEWRESUME_MODAL_VIEW="spa/talentcloud/myResume/previewDocumentModal.htm",NGenConstants.PREVIEWRESUME_MODAL_CONTROLLER="PreviewDocumentModalCtrl",NGenConstants.PDFJS_VIEWER="Scripts/pdfjs/web/viewer.html?file=",NGenConstants.DTE_PREVIEW_RESUME_API="/api/Talentcloud/MyDocuments/Preview/",NGenConstants.ALUMNI_GRACE_PERIOD="Alumni + Grace Period",NGenConstants.ALUMNI="Alumni",NGenConstants.LOG_FILE_SERVICE="LogFileService",NGenConstants.GOOGLE_RECAPTCHA_SITE_KEY="GoogleRecaptchaSiteKey",NGenConstants.GOOGLE_RECAPTCHA_ID="g-recaptcha",NGenConstants.TEMP_DATA="templateData",NGenConstants.ALL_SETTING="allSetting",NGenConstants.NGEN_COLLEAGUE_CANNOT_RESET_PASSWORD="NGEN_COLLEAGUE_CANNOT_RESET_PASSWORD",NGenConstants.BOOTBOX_SPLASH_SCREEN_TEMPLATE='
<\/i> @1@<\/div>',NGenConstants.SSO_MASTERY_WORKS_USER_AUTHENTICATION_TOKEN="bWFzdGVyeVdvcmtzU1NPVXNlcjphMEZEQnFnem05dlU4QlJrblM3cHJIM1NnVkJMRU5QeGl0WDVpZHlHZFJZPQ==",NGenConstants.SSO_LINKEDIN_LEARNING_USER_AUTHENTICATION_TOKEN="bGlua2VkSW5MZWFybmluZ1NTT1VzZXI6THZVRk5Cd2RBUXRwU0VpSS9JNDBROTEyd2JFL0xZOUxFU1lQWUhOek9Tbz0=",NGenConstants.SSO_SERVICE_PROVIDER_SERVICE="ssoServiceProviderSvc",NGenConstants.TALENTPOOL="TalentPool",NGenConstants.TALENTPOOL_PRECHECK=NGenConstants.TALENTPOOL+"/Precheck",NGenConstants.TALENTPOOL_GET_RESUME=NGenConstants.TALENTPOOL+"/Resume",NGenConstants.GENERALASSEBL_URL="https://my.generalassemb.ly/enroll/y6pQVkap5RHjV1vHXxzf",NGenConstants.NGEN_CANDIDATE_WILLING_TO_RELOCATE_OPTION_ID=2,NGenConstants.NGEN_MULTIPLE_EMAIL_ADDRESS_MATCHES="NGEN_MULTIPLEEMAILADDRESS_MATCHES",NGenConstants.NGEN_NO_EMAIL_ADDRESS_MATCHES="NGEN_NOEMAILADDRESS_MATCHES",NGenConstants.DEVELOPME_MULTIPLE_EMAIL_ADDRESS_MATCHES="DEVELOPME_MULTIPLE_EMAIL_ADDRESS_MATCHES",NGenConstants.DEVELOPME_NO_EMAIL_ADDRESS_MATCHES="DEVELOPME_NO_EMAIL_ADDRESS_MATCHES",NGenConstants.COOKIE_BANNER_KEY="cookieBanner",NGenConstants.COOKIE_BANNER_VALUE="cookieBannerAcceptedOrClosed",NGenConstants.DEFAULT_LOGO="/Content/Images/logos/logo_lhh_200x50.svg",NGenConstants.TRANSPARENT_DEFAULT_LOGO="/Content/Images/logos/LHH_WHITE_2019.svg",NGenConstants.PURPLE_DEFAULT_LOGO="/Content/Images/logos/LHH_LOGO_PURPLE_2019.svg",NGenConstants.ANGULAR_MOMENT="angularMoment",NGenConstants.ANGULAR_MOMENT_PROVIDER="amMoment",NGenConstants.USERS_CANDIDATE_PREACTIVE_TERMINATION_REASON_ERR_MSG="USERS_CANDIDATE_PREACTIVE_TERMINATION_REASON_ERR_MSG",NGenConstants.USERS_CANDIDATE_PREACTIVE_PERSONAL_EMAIL_FORMAT_ERR_MSG="USERS_CANDIDATE_PREACTIVE_PERSONAL_EMAIL_FORMAT_ERR_MSG",NGenConstants.USERS_CANDIDATE_PREACTIVE_PERSONAL_EMAIL_ERR_MSG="USERS_CANDIDATE_PREACTIVE_PERSONAL_EMAIL_ERR_MSG",NGenConstants.NGEN_IMPRESSUM_DEUTSCHLAND_LINK_CONTENT_ACCESS="NgenImpressumDeutschlandLink",NGenConstants.CONSULTANT_ICON="CONSULTANT_ICON",NGenConstants.NGEN_COOKIE_POLICY_URL="https://crn.lhh.com/#/public/cookiepolicypg/23",NGenConstants.NGEN_TERMS_CONDITIONS_URL="https://crn.lhh.com/#/public/termsandcondspg/23",NGenConstants.NGEN_PRIVACY_POLICY_URL="https://crn.lhh.com/#/public/privacypolicypg/23",NGenConstants.NGEN_MAX_LENGTH_200=200,NGenConstants.NGEN_GETIP_URL="https://api.ipify.org?format=json",NGenConstants.NGEN_DEFAULT_IP="1.1.1.1",NGenConstants.NGEN_DEFAULT_COMPASS_USER="abcd@lhh.com",NGenConstants.NGEN_CONSULTANT_REDIRECTURL="/#/calendars/scheduleConsultant?cancelledEventID=",NGenConstants.NGEN_CANDIDATE_REDIRECTURL="/#/redcalendars/selectDate?cancelledEventID=",NGenConstants.NO_ACCESS_RED_STATE=NGenConstants.ROOT+".rednoaccess",NGenConstants.NO_ACCESS_STATE=NGenConstants.ROOT+".noaccess",NGenConstants.NO_COMPASS_SYNC_RED_STATE=NGenConstants.ROOT+".rednocompass",NGenConstants.NO_COMPASS_SYNC_STATE=NGenConstants.ROOT+".nocompass",NGenConstants.NGEN_SET_LOCAL_STORAGE_TALENT_CUTOVER="talentCutover",NGenConstants.NGEN_SET_LOCAL_STORAGE_COMPASS_USER_ID="compassUserID",NGenConstants.NGEN_SET_LOCAL_STORAGE_COUNTRY_DATA="CountryData",NGenConstants.NGEN_SET_LOCAL_STORAGE_REMOTE_TYPE="RemoteTypes",NGenConstants.NGEN_SET_LOCAL_STORAGE_COUNTRY_MEASUREMENT_TYPE="CountryMeasurementType",NGenConstants.NGEN_SET_LOCAL_STORAGE_PROFILE_PHOTO_DATA="ProfilePhotoData",NGenConstants.TODO_PAST_REMINDER_SUB_HEADER="TODO_PAST_REMINDER_SUB_HEADER",NGenConstants.LEARN_URL=NGenConstants.ROOT+".learn",NGenConstants.UPSKILL_RESKILL_URL=NGenConstants.LEARN_URL+".upskillreskill",NGenConstants.LEARN_EVENTS_RED_STATE=NGenConstants.ROOT+".redlearn",NGenConstants.LEARN_RED_URL=NGenConstants.ROOT+".redlearn",NGenConstants.JOB_RECOMMENDATION_NOTIFICATION_URL="#/crnjobs/jobMatch?hiringManagerRecomendation",NGenConstants.AMAZON_NO_PERMISSION_TO_VIEW_PERSONAL_DOCUMENT="AMAZON_NO_PERMISSION_TO_VIEW_PERSONAL_DOCUMENT",NGenConstants.MENTORSHIP_STATUS="GetMentorshipStatusInfo",NGenConstants.VISIBILITY_INTERNAL="Internal",NGenConstants.VISIBILITY_INTERNAL_AND_PARTNER="Internal and Partner",NGenConstants.VISIBILITY_PARTNER="Partner",NGenConstants.VISIBILITY_EXTERNAL="External",NGenConstants.VISIBILITY_LHH_EXCLUSIVE="Lhh Exclusive",NGenConstants.JOB_SOURCE_MY_COMPANY_JOBS="JOB_SEARCH_MY_COMPANY_JOB_PLACEHOLDER",NGenConstants.JOB_SOURCE_LHH_EXCLUSIVE_JOBS="CANDIDATE_JOBS_SEARCH_COMPANY_LHHSOURCED",NGenConstants.JOB_SOURCE_EXTERNAL_MARKET_JOBS="CANDIDATE_JOBS_SEARCH_COMPANY_EXTERNAL_JOB_FEED",NGenConstants.CANDIDATE_JOB_COMPANY_NAME_UNKNOWN="CANDIDATE_JOB_COMPANY_NAME_UNKNOWN",NGenConstants.EXTERNAL_EXPIRED_JOB_RED_STATE=NGenConstants.ROOT+".redexternalexpiredjob",NGenConstants.EXTERNAL_EXPIRED_JOB_CRN_STATE=NGenConstants.ROOT+".crnexternalexpiredjob",NGenConstants.EXTERNAL_EXPIRED_JOB_CONTROLLER="externalExpiredJob.ctrl",NGenConstants.JOB_SOURCE_ID="jobSourceId",NGenConstants.CANDIDATE_DTE_RESUME_DETAILS="candidateDTEResumeStatus",NGenConstants.JOB_INDUSTRY_SELECT_DATA="jobIndustryData",NGenConstants.CANDIDATE_CURRENCY="candidateCurrency",NGenConstants.CURRENT_PAGE_URL="redirectUrl",NGenConstants.CURRENT_PAGE_MENTORSHIP_URL="mentorRedirectUrl",NGenConstants.COUNTRY_ROUTE="country",NGenConstants.PUBLIC_ERROR_MESSAGE="/public/errorMessage",NGenConstants.PUBLIC_COOKIE_POLICY="/public/cookiepolicy",NGenConstants.PUBLIC_COOKIE_POLICY_PG="/public/cookiepolicypg",NGenConstants.PUBLIC_PRIVACY_POLICY="/public/privacypolicy",NGenConstants.PUBLIC_PRIVACY_POLICY_PG="/public/privacypolicypg",NGenConstants.PUBLIC_PRIVACY_POLICY_ACCEPT="/public/privacypolicyaccept",NGenConstants.PUBLIC_TERMS_AND_CONDS="/public/termsandconds",NGenConstants.PUBLIC_TERMS_AND_CONDS_PG="/public/termsandcondspg",NGenConstants.PUBLIC_TALENT_POOL="/public/talentpool",NGenConstants.PUBLIC_CALENDAR_EVENT_INVITE="/public/calendar/calendarEventInvite",NGenConstants.PUBLIC_CALENDAR_ACKNOWLEDGEMENT="/public/calendar/acknowledgement",NGenConstants.PUBLIC_UNSUBSCRIBE="/public/unsubscribe",NGenConstants.PUBLIC_SMARTLINKEXPIRATION="/public/smartLinkExpiration",NGenConstants.PUBLIC_SELF_START="/public/selfStart",NGenConstants.CRN_Magic_Key_Cookie="CRNMagicKeyCookie",NGenConstants.LOGIN_PAGE_DETAILS="loginPageDetails",NGenConstants.GenerateAccesstokenWithRefreshToken="GenerateAccesstokenWithRefreshToken",NGenConstants.SUPPORT_EMAIL="mailto:support@lhh.com",NGenConstants.ACCESSBILITY_WIDGET_SCRIPT="AccessbilityWidgetScript",NGenConstants.KAISER_JOBSOURCE_ID=26,NGenConstants.POP_UP_TIME_OUT_TIME=1e3,NGenConstants.FOOTER_IMPRESSUM="Footer_Impressum",NGenConstants.SKYHIVE_INDEED_SEARCHER_NAME="SkyHiveExternalJob",NGenConstants.IMPRESSUM_POLICY_CONTENT="ImpressumPolicyContent",NGenConstants.LOADING_TEXT="Loading",NGenConstants.LOADING_TEXT_RESOURCE_KEY="NGEN_LOADING_TXT",NGenConstants.SYSTEM_OPERATION_NAME_VALUE="CRN CandidateJobVisibility",NGenConstants.TOKEN_BEARER_KEY="Bearer ",NGenConstants.SYSTEM_IP_INFO_KEY="IPInfo",NGenConstants.SYSTEM_IP_ADDRESS_KEY="IPAddress",NGenConstants.CALENDAR_AVAILABILITY_DAYS="CalendarAvailabilityDays",NGenConstants.CALENDAR_AVAILABILITY_Limit="CalendarAvailabilityLimit",NGenConstants}(),function(SettingType){SettingType[SettingType.String=1]="String";SettingType[SettingType.Int=2]="Int";SettingType[SettingType.Float=3]="Float";SettingType[SettingType.DateTime=4]="DateTime";SettingType[SettingType.Boolean=5]="Boolean"}(SettingType||(SettingType={})),function(EXTERNAL_LOGIN_RESULT){EXTERNAL_LOGIN_RESULT[EXTERNAL_LOGIN_RESULT.UserAccountAssociatedSuccess=1]="UserAccountAssociatedSuccess";EXTERNAL_LOGIN_RESULT[EXTERNAL_LOGIN_RESULT.UserAccountAssociatedFailure=0]="UserAccountAssociatedFailure"}(EXTERNAL_LOGIN_RESULT||(EXTERNAL_LOGIN_RESULT={})),function(UserOrigin){UserOrigin[UserOrigin.Orbit=1]="Orbit";UserOrigin[UserOrigin.NGen=2]="NGen";UserOrigin[UserOrigin.DevelopMe=3]="DevelopMe"}(UserOrigin||(UserOrigin={})),function(Roles){Roles[Roles.Admin=1]="Admin";Roles[Roles.LearningAdmin=2]="LearningAdmin";Roles[Roles.LearningSessionHost=4]="LearningSessionHost";Roles[Roles.LearningConsultant=5]="LearningConsultant";Roles[Roles.LearningCandidate=6]="LearningCandidate";Roles[Roles.LearningCourseManager=8]="LearningCourseManager";Roles[Roles.LearningSessionManager=9]="LearningSessionManager";Roles[Roles.Candidate=16]="Candidate";Roles[Roles.CandidateAdmin=17]="CandidateAdmin";Roles[Roles.ContentAdmin=18]="ContentAdmin";Roles[Roles.BrandingConsultant=21]="BrandingConsultant";Roles[Roles.DevelopMeCandidate=22]="DevelopMeCandidate";Roles[Roles.DevelopMeCustomer=23]="DevelopMeCustomer"}(Roles||(Roles={})),function(LineOfBusiness){LineOfBusiness[LineOfBusiness.Altedia=5]="Altedia";LineOfBusiness[LineOfBusiness.ICEO=3]="ICEO"}(LineOfBusiness||(LineOfBusiness={}));CMSConstants=function(){function CMSConstants(){}return CMSConstants.UI_ROUTER_XTRA="ct.ui.router.extras.core",CMSConstants.UI_ROUTER_XTRA_FUTURE_STATE="ct.ui.router.extras.future",CMSConstants.CMS_TYPE="CMSType",CMSConstants.CMS_PATH="site/page/",CMSConstants.CMS_STATE_TYPE="futureStateType",CMSConstants.PAGE_GET_BY_SITEID="PageGetBySiteID",CMSConstants.CONTROL_GET_BY_PAGEID="ControlGetByPageID",CMSConstants.CONTROL_GET_BY_STATIC_PAGEID="ControlGetByStaticPageID",CMSConstants.TEMPLATE_DIR="Spa/cms/template",CMSConstants.TEMPLATE_EXT=".htm",CMSConstants.CMS_CONTROLLERS_GET_ALL="CMSControllersGetAll",CMSConstants.CMS_VIEWS_GET_ALL="CMSViewsGetAll",CMSConstants.PLACEHOLDERS_GET_ALL="PlaceholdersGetAll",CMSConstants.PLACEHOLDERS_GET_BY_STATIC_PAGE="PlaceholdersGetByStaticPage",CMSConstants.CONTENT_VIEW_CONTROLLER="contentView.controller",CMSConstants.STATIC_CONTENT_VIEW_CONTROLLER="staticPageContentView.controller",CMSConstants.POLLINTERCEPT_CONTROLLER="pollIntercept.controller",CMSConstants.CONTENT_TEXT="ContentText",CMSConstants.SITE="Site",CMSConstants.STATE_API="State",CMSConstants.TEMPLATE="Template",CMSConstants.PAGE="Page",CMSConstants.PAGE_ID_PARAM="pageID",CMSConstants.CONTROL="Control",CMSConstants.CONTROL_PARAM="ControlParam",CMSConstants.CONTROL_PARAM_TYPE="ControlParamType",CMSConstants.LOGO="Logo",CMSConstants.LOGO_GET_FOR_SITE="LogoGetForSite",CMSConstants.PRIVACYPOLICY="PrivacyPolicy",CMSConstants.PRIVACYPOLICY_GET_FOR_SITE="PrivacyPolicyGetForSite",CMSConstants.PRIVACYPOLICY_SEARCH_ROUTE="PrivacyPolicy/Search",CMSConstants.TERMSANDCONDITIONS="TermsAndConditions",CMSConstants.STYLESHEET="Stylesheet",CMSConstants.STYLESHEET_SORT="StylesheetSort",CMSConstants.STYLESHEET_GET_FOR_SITE="StylesheetGetForSite",CMSConstants.STYLESHEET_UPLOAD="StylesheetPostContent",CMSConstants.STATIC_PAGE="StaticPage",CMSConstants.TEMPLATE_FILE_DATA="TemplateFileData",CMSConstants.TEMPLATE_FILE_DATA_ALL="TemplateFileDataAll",CMSConstants.UI_VIEW_NAME="uiViewName",CMSConstants.SITE_COUNTRY="SiteCountry",CMSConstants.SITE_CONTRACT="SiteContract",CMSConstants.SITE_PROGRAM="SiteProgram",CMSConstants.CHECKBOX_SURVEY="CheckBoxSurvey",CMSConstants.CHECKBOX_SURVEY_ROUTE="CheckBoxSurvey",CMSConstants.CHECKBOX_SURVEY_ENDPOINT="api/"+CMSConstants.CHECKBOX_SURVEY,CMSConstants.COMPANIES_SERVICE_NAME="companiesMSSvc",CMSConstants.OVERAGE_EMAIL_TYPE="email",CMSConstants.OVERAGE_SCHEDULE_TYPE="schedule",CMSConstants.UPCOMING_EVENTS_CONTROLLER="upcomingEvents.controller",CMSConstants.RATE_SESSION_CONTROLLER="rateSession.controller",CMSConstants.CONSULTANT_MEETING_CONTROLLER="consultantMeeting.controller",CMSConstants.RATE_PAGE_CONTROLLER="ratePage.controller",CMSConstants.RECOMMENDED_RESOURCES_CONTROLLER="recommendedResources.controller",CMSConstants.ECARRERFIT_CONTROLLER="eCareerfit.controller",CMSConstants.MASTERY_WORKS_CONTROLLER="masteryWorks.controller",CMSConstants.SUBJECT_EVENTS_CONTROLLER="subjectEvents.controller",CMSConstants.SMART_SEARCH_CONTROLLER="smartSearch.controller",CMSConstants.EXECUTIVE_GRAPEVINE_CONTROLLER="executiveGrapevine.controller",CMSConstants.SKILL_SOFT_CONTROLLER="skillSoft.controller",CMSConstants.SKILL_SOFTV8_CONTROLLER="skillSoftv8.controller",CMSConstants.EXPLORE_GOAL_CONTROLLER="exploreGoal.controller",CMSConstants.TOP_RESOURCES_CONTROLLER="topResources.controller",CMSConstants.SUBJECT_CAROUSEL_CONTROLLER="subjectCarousel.controller",CMSConstants.STEPS_CONTROLLER="steps.controller",CMSConstants.CHECKBOX_SURVEY_CONTROLLER="checkBoxSurvey.controller",CMSConstants.CHECKBOX_SURVEY_USERNAME="_LHHWebServiceUser",CMSConstants.CHECKBOX_SURVEY_PASSWORD="$LHHITM@1tl@nd!",CMSConstants.CHECKBOX_SURVEY_URL="http://lhh.checkboxonline.com",CMSConstants.CHECKBOX_SURVEY_LINKID="bcaf75873bf1401eaba27224a95fb4f5",CMSConstants.MY_PROFILE_CONTROLLER="myprofile.controller",CMSConstants.ALT_HOME_BRANDING_CONTROLLER="altHomeBranding.controller",CMSConstants.ALT_HOME_BRANDING_STATE="tworow.althomepreactive",CMSConstants.ALT_HOME_RESUME_STATE="tworow.althomeresume",CMSConstants.ALT_HOME_ELEARNING_STATE="tworow.althomeelearning",CMSConstants.ALT_HOME_SOCIAL_STATE="tworow.althomesocial",CMSConstants.ALT_HOME_AMAZON_STATE="onecolumn.althomeamazon",CMSConstants.ALT_HOME_RESUME_ACTIVE_STATE="tworow.althomeresumeactive",CMSConstants.ALT_HOME_REDESIGN_STATE="homepage_r19.althomeredesign",CMSConstants.ALT_HOME_CHOICES_CONTROLLER="altHomeChoices.controller",CMSConstants.ALT_HOME_ELEARNING_CONTROLLER="altHomeElearning.controller",CMSConstants.ALT_HOME_RESUME_CONTROLLER="altHomeResume.controller",CMSConstants.ALT_HOME_RESUME_ACTIVE_CONTROLLER="altHomeResumeActive.controller",CMSConstants.ALT_HOME_SOCIAL_CONTROLLER="altHomeSocial.controller",CMSConstants.ALT_HOME_SESSION_CONTROLLER="altHomeSession.controller",CMSConstants.TIME_LINE_DATE_CONTROLLER="timelineDate.controller",CMSConstants.CONNECTING_TO_JOBS_CONTROLLER="connectingToJobs.controller",CMSConstants.BADGES_CONTROLLER="badges.controller",CMSConstants.VIDEO_PLAYER_CONTROLLER="videoPlayer.controller",CMSConstants.VIDEO_PLAYER_DEFAULT_HEIGHT="360",CMSConstants.VIDEO_PLAYER_DEFAULT_WIDTH="640",CMSConstants.DEVELOPME_DASHBOARD_CONTROLLER="developMeDashboard.controller",CMSConstants.DEVELOPME_UPCOMING_ACTIONS_CONTROLLER="upcomingActions.controller",CMSConstants.DEVELOPME_RECENT_ACTIVITIES_CONTROLLER="recentActivity.controller",CMSConstants.DEVELOPME_ACHIEVEMENTS_CONTROLLER="achievements.controller",CMSConstants.PREACTIVE_VALIDATION_CONTROLLER="preactiveValidation.controller",CMSConstants.DOWNLOAD_DOCUMENTS_CONTROLLER="downloadDocuments.controller",CMSConstants.CONSULTANT_BIO_CONTROLLER="consultantBio.controller",CMSConstants.UPCOMING_MEETINGS_CONTROLLER="upcomingMeetings.controller",CMSConstants.UPCOMING_MEETINGS_DASHBOARD_CONTROLLER="upComingMeetingsDashboard.controller",CMSConstants.EMAIL_A_COACH_CONTROLLER="emailACoach.controller",CMSConstants.OVERAGE_MODAL_CONTROLLER="overageModal.controller",CMSConstants.MESSAGE_COACH_PATH="/messaging/messageCoach",CMSConstants.MESSAGE_COACH_PATH_CT="/messaging/messageConsultant",CMSConstants.SCHEDULE_POOL_CONTROLLER="schedulePool.controller",CMSConstants.MY_PROFILEREDEPLOY_VIEW="Spa/cms/views/myprofileRedeployment.htm",CMSConstants.MY_PROFILEREDEPLOY_CONTROLLER="myprofileRedeployment.controller",CMSConstants.HOMEPAGE="HomePage",CMSConstants.EMAIL_PARAM="Email",CMSConstants.WELCOME_EMAIL="WelcomeEmail",CMSConstants.GET_WELCOME_EMAIL_LIST="getWelcomeEmailList",CMSConstants.CMS_BANNER_API_PATH="HomeBanner",CMSConstants.CMS_BANNER_TYPE_API_PATH="HomeBannerType",CMSConstants}(),function(ControlParamTypes){ControlParamTypes[ControlParamTypes.ContentView=1]="ContentView";ControlParamTypes[ControlParamTypes.ControlWidth=2]="ControlWidth";ControlParamTypes[ControlParamTypes.ClickLinkComplete=3]="ClickLinkComplete";ControlParamTypes[ControlParamTypes.PageUrl=4]="PageUrl";ControlParamTypes[ControlParamTypes.MWVersion=5]="MWVersion";ControlParamTypes[ControlParamTypes.Recipient=6]="Recipient";ControlParamTypes[ControlParamTypes.SupressSteps=7]="SupressSteps";ControlParamTypes[ControlParamTypes.RedirectToURL=8]="RedirectToURL";ControlParamTypes[ControlParamTypes.EngageStep=9]="EngageStep";ControlParamTypes[ControlParamTypes.CompanyId=10]="CompanyId";ControlParamTypes[ControlParamTypes.ExploreStep=13]="ExploreStep";ControlParamTypes[ControlParamTypes.CountryID=14]="CountryID";ControlParamTypes[ControlParamTypes.ProgramID=15]="ProgramID";ControlParamTypes[ControlParamTypes.ContractID=16]="ContractID";ControlParamTypes[ControlParamTypes.SiteID=17]="SiteID";ControlParamTypes[ControlParamTypes.CheckBoxSurveyUserName=18]="CheckBoxSurveyUserName";ControlParamTypes[ControlParamTypes.CheckBoxSurveyPassword=19]="CheckBoxSurveyPassword";ControlParamTypes[ControlParamTypes.CheckBoxSurveyURL=20]="CheckBoxSurveyURL";ControlParamTypes[ControlParamTypes.CheckBoxSurveyLinkID=21]="CheckBoxSurveyLinkID";ControlParamTypes[ControlParamTypes.UserStatus=22]="UserStatus";ControlParamTypes[ControlParamTypes.SubjectID=23]="SubjectID";ControlParamTypes[ControlParamTypes.NotCountry=24]="NotCountry";ControlParamTypes[ControlParamTypes.Video=25]="Video";ControlParamTypes[ControlParamTypes.ControlHeight=26]="ControlHeight";ControlParamTypes[ControlParamTypes.NotContractID=27]="NotContractID";ControlParamTypes[ControlParamTypes.Language=28]="Language";ControlParamTypes[ControlParamTypes.ProgramGroupID=29]="ProgramGroupID";ControlParamTypes[ControlParamTypes.PollInterceptID=30]="PollInterceptID"}(ControlParamTypes||(ControlParamTypes={}));var DeliveryConstants=function(){function DeliveryConstants(){}return DeliveryConstants.DELIVERY_MODULE="lhh.delivery",DeliveryConstants.DELIVERY_CONTROLLER="DeliveryCtrl",DeliveryConstants.SESSION_CONTROLLER="SessionCtrl",DeliveryConstants.DELIVERY_STATE=NGenConstants.ROOT_CONTROLS+".delivery",DeliveryConstants.DELIVERY_VIEW="Spa/delivery/delivery.htm",DeliveryConstants.CANDIDATE="Candidate",DeliveryConstants.CANDIDATE_INFO="CandidateInfo",DeliveryConstants.CANDIDATE_SESSIONS="CandidateSessions",DeliveryConstants.CANDIDATE_ACTIVITY_ADD="AddCandidateActivity",DeliveryConstants.CANDIDATE_STATE=NGenConstants.ROOT_CONTROLS+".delivery.candidate",DeliveryConstants.CANDIDATE_VIEW="Spa/delivery/candidate/candidate.list.htm",DeliveryConstants.CANDIDATE_CONTROLLER="CandidateCtrl",DeliveryConstants.CANDIDATE_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".delivery.candidate.edit",DeliveryConstants.CANDIDATE_EDIT_VIEW="Spa/delivery/candidate/candidate.edit.htm",DeliveryConstants.CANDIDATE_EDIT_CONTROLLER="CandidateEditCtrl",DeliveryConstants.FIRST_NAME_FIELD="FirstName",DeliveryConstants.LAST_NAME_FIELD="LastName",DeliveryConstants.DELIVERY_DELIVERY="DELIVERY_DELIVERY",DeliveryConstants.DELIVERY_CANDIDATE="DELIVERY_CANDIDATE",DeliveryConstants.DELIVERY_CANDIDATES="DELIVERY_CANDIDATES",DeliveryConstants.DELIVERY_OFFICE="DELIVERY_OFFICE",DeliveryConstants.DELIVERY_PROGRAM="DELIVERY_PROGRAM",DeliveryConstants.PROGRAM="Program",DeliveryConstants.PROGRAM_STATE=NGenConstants.ROOT_CONTROLS+".delivery.program",DeliveryConstants.PROGRAM_VIEW="Spa/delivery/program/program.list.htm",DeliveryConstants.PROGRAM_CONTROLLER="ProgramCtrl",DeliveryConstants.PROGRAM_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".delivery.program.edit",DeliveryConstants.PROGRAM_EDIT_VIEW="Spa/delivery/program/program.edit.htm",DeliveryConstants.PROGRAM_EDIT_CONTROLLER="ProgramEditCtrl",DeliveryConstants.CANDIDATE_ID="CandidateID",DeliveryConstants.CANDIDATE_DETAIL="CandidateDetail",DeliveryConstants.DELIVERY_CANDIDATE_ACTIVITY="DELIVERY_CANDIDATE_ACTIVITY",DeliveryConstants.DELIVERY_CANDIDATE_ACTIVITIES="DELIVERY_CANDIDATE_ACTIVITIES",DeliveryConstants.CANDIDATE_ACTIVITY="CandidateActivity",DeliveryConstants.CANDIDATE_ACTIVITY_STATE=NGenConstants.ROOT_CONTROLS+".delivery.candidate.activity",DeliveryConstants.CANDIDATE_ACTIVITY_VIEW="Spa/delivery/candidate/candidate.activity.list.htm",DeliveryConstants.CANDIDATE_ACTIVITY_CONTROLLER="CandidateActivityCtrl",DeliveryConstants.CANDIDATE_ACTIVITY_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".delivery.candidate.activity.edit",DeliveryConstants.CANDIDATE_ACTIVITY_EDIT_VIEW="Spa/delivery/candidate/candidate.activity.edit.htm",DeliveryConstants.CANDIDATE_ACTIVITY_EDIT_CONTROLLER="CandidateActivityEditCtrl",DeliveryConstants.CANDIDATE_ACTIVITY_TOPIC="CandidateActivityTopic",DeliveryConstants.CANDIDATE_ACTIVITY_TOPIC_CONSUL_SUPPORT_ALL_OTHER=287,DeliveryConstants.CANDIDATE_ACTIVITY_RECORDED_WEBINAR="Recorded Webinar",DeliveryConstants.CANDIDATE_ACTIVITY_WELCOME_VIDEO_NAME="Preactive Welcome Video",DeliveryConstants.CANDIDATE_ACTIVITY_CONSULTANT_MEETING="Consultant Meeting",DeliveryConstants.CANDIDATE_ACTIVITY_DURATION_BY_PHONE=10,DeliveryConstants.CANDIDATE_ACTIVITY_DURATION_BY_EMAIL=5,DeliveryConstants.CANDIDATE_ACTIVITY_CONSULTANT_PROVIDED_SUPPORT_ALL_OTHER="Consultant Provided Support: All other support",DeliveryConstants.CANDIDATE_UPDATE_FOR_START_SESSION="CandidateUpdateForStartSession",DeliveryConstants.CANDIDATE_UPDATE_FOR_ELEARNING="CandidateUpdateForAltHomeElearning",DeliveryConstants.CANDIDATE_UPDATE_FOR_ISPEAK="CandidateUpdateForISpeak",DeliveryConstants.CANDIDATE_SEND_SOCIAL_EMAIL="SendSocialMediaReviewEmail",DeliveryConstants.CANDIDATE_SEND_RESUME_EMAIL="SendResumeReviewEmail",DeliveryConstants.CANDIDATE_SEND_PERSONALIZATION_EMAIL="SendPersonalizationEmail",DeliveryConstants.CANDIDATE_UPDATE_FOR_VIDEO_DURATION="CandidateUpdateForVideoDuration",DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_EVENT_ATTENDANCE=818,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_EVENT_NON_ATTENDANCE=7091,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_CONSULTANT_MEETING=419,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_CANDIDATE_SUPPORT=418,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_OFFICE_VISIT=421,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_OTHER=422,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_WORKSHOP=423,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_ACCEPTANCE=7679,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_VALIDATION=7680,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_INTERRUPTION=7681,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_INVITATION=7682,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_REVIEW=7683,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_FOLLOWUP=7684,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_COACHING_SESSION=7801,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_COACHING_SUPPORT=7802,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_PREP=7803,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_TRAVEL=7804,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_TRAINING=7805,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_RESUME_REVIEW=7867,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_SOCIAL_MEDIA_REVIEW=7868,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_ISPEAK_START=7869,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_RESULT_ATTENDED=7808,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_METHOD_BY_EMAIL=424,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_METHOD_BY_PHONE=425,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_METHOD_IN_PERSON=426,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_METHOD_VIRTUAL=655,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_METHOD_COLLECTIVE_MEETING_ID=7676,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_METHOD_MAIL_ID=7677,DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_METHOD_PRIORITY_MAIL_ID=7678,DeliveryConstants.KEYWORD_CANDIDATE_VIRTUAL_CANDIDATE_OUTREACH=7879,DeliveryConstants.ORBIT_SYSTEM_USER_ID=347973,DeliveryConstants.SYSTEM_USER=359141,DeliveryConstants.DELIVERY_LOB_COACHING=2,DeliveryConstants.DELIVERY_LOB_ALTEDIA=5,DeliveryConstants.DELIVERY_LOB_ICEO=3,DeliveryConstants.LEARNING_STATUS="LearningStatus",DeliveryConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_GROUP_MEETING=420,DeliveryConstants.PROGRAM_CATEGORY_IDS_FOR_NEW_ACTIVITY="ProgramCategoryIdsforNewActivity",DeliveryConstants}(),LearningConstants=function(){function LearningConstants(){}return LearningConstants.LEARNING_MODULE="lhh.learning",LearningConstants.VIDEO_SUBTITLE_BY_DEFAULT_LANG_API_PATH="VideoSubtitleDefaultLanguage",LearningConstants.COURSE="Course",LearningConstants.SESSION="Session",LearningConstants.VIDEO="Video",LearningConstants.VIDEO_SUBTITLE="VideoSubtitle",LearningConstants.VIDEO_SUBTITLE_TYPE="application/octet-stream",LearningConstants.VIDEO_SUBTITLE_DELETE="DeleteVideoSubtitle",LearningConstants.VIDEO_SUBTITLE_ADD_ALERT="DEVELOPME_VIDEO_SUBTITLE_ADD_ALERT",LearningConstants.LEARNING_CATEGORY="LearningCategory",LearningConstants.REGISTER_CANDIDATE="SessionRegisterCandidate",LearningConstants.UNREGISTER_CANDIDATE="SessionUnregisterCandidate",LearningConstants.SESSION_ICS="SessionICS",LearningConstants.SESSION_TAKE_OPEN_SEAT="SessionTakeOpenSeat",LearningConstants.LC_CANDIDATE_WAITLISTED="LC_CANDIDATE_WAITLISTED",LearningConstants.SESSION_DELIVERY="AvailableDeliveryTypes",LearningConstants.LEARNING_STATUS="LearningStatus",LearningConstants.LINK_COUNTRY="LinkCountry",LearningConstants.LINK_PROGRAM="LinkProgram",LearningConstants.LINK_PROGRAMGROUP="LinkProgramGroup",LearningConstants.LINK_CONTRACT="LinkContract",LearningConstants.LEARNING_STATUS_NAME="Name",LearningConstants.LEARNING_STATUS_PREACTIVE="PreActive",LearningConstants.COURSE_ATTENDANCE="CourseAttendance",LearningConstants.SESSION_DETAILS_MODAL_VIEW="Spa/learning/modals/sessionDetails.htm",LearningConstants.SESSION_DETAILS_MODAL_CONTROLLER="sessionDetails.ctrl",LearningConstants.MODAL_COURSE_ID_PARAM="CourseId",LearningConstants.MODAL_SESSION_ID_PARAM="SessionId",LearningConstants.SESSION_FILE_UPLOAD="SessionUploadFiles",LearningConstants.SESSION_FILE_DELETE="SessionDeleteFile",LearningConstants.SESSION_FILE_GET="GetCourseSessionFiles",LearningConstants.SESSION_IsCourseFileExist="IsCourseFileExist",LearningConstants.LIVE_EVENTS_STATE=NGenConstants.ROOT+".liveevents",LearningConstants.LIVE_EVENTS_RED_STATE=NGenConstants.ROOT+".redliveevents",LearningConstants.LIVE_EVENTS="GetLiveEvents",LearningConstants.LEARN_EVENTS_STATE=NGenConstants.ROOT+".learn",LearningConstants.LEARN_URL="/learn",LearningConstants.UPSKILL_RESKILL_URL=LearningConstants.LEARN_URL+"/upskillreskill",LearningConstants.LEARN_EVENTS_RED_STATE=NGenConstants.ROOT+".redlearn",LearningConstants.LEARN_RED_URL="/redlearn",LearningConstants.UPSKILL_RESKILL_RED_URL=LearningConstants.LEARN_RED_URL+"/upskillreskill",LearningConstants.LEARN_EVENTS="GetLearn",LearningConstants.TWO_MONTH="twomonths",LearningConstants.MONTH="month",LearningConstants.TWO_WEEK="twoweeks",LearningConstants.WEEK="week",LearningConstants.TODAY="today",LearningConstants.CATEGORY_ID="categoryId",LearningConstants.LEARNING_MS_URL="LearningMS",LearningConstants.LEARNING_COURCES_CARD_VIEW="/Spa/learning/directives/learningCourseCard.directive.htm",LearningConstants}(),CandidateConstants=function(){function CandidateConstants(){}return CandidateConstants.CANDIDATE_MODULE="lhh.candidate",CandidateConstants.CANDIDATE_DASHBOARD="CANDIDATE_DASHBOARD",CandidateConstants.DASHBOARD_STATE=NGenConstants.ROOT_CONTROLS+".dashboard",CandidateConstants.DASHBOARD_VIEW="Spa/candidate/dashboard.htm",CandidateConstants.DASHBOARD_CONTROLLER="DashboardCtrl",CandidateConstants.CANDIDATE_GOALS="CANDIDATE_GOALS",CandidateConstants.GOAL_STATE=NGenConstants.ROOT_CONTROLS+".goal",CandidateConstants.GOAL_VIEW="Spa/candidate/goal/goal.htm",CandidateConstants.GOAL_CONTROLLER="GoalCtrl",CandidateConstants.CANDIDATE_SUBJECTS="CANDIDATE_SUBJECTS",CandidateConstants.SUBJECT_STATE=NGenConstants.ROOT_CONTROLS+".subject",CandidateConstants.SUBJECT_VIEW="Spa/candidate/subject/subject.htm",CandidateConstants.SUBJECT_CONTROLLER="SubjectCtrl",CandidateConstants.CANDIDATE_VIDEO="CANDIDATE_VIDEO",CandidateConstants.VIDEO_STATE=NGenConstants.ROOT_CONTROLS+".video",CandidateConstants.VIDEO_VIEW="Spa/candidate/video.htm",CandidateConstants.VIDEO_CONTROLLER="VideoCtrl",CandidateConstants.CANDIDATE_WELCOME="CANDIDATE_WELCOME",CandidateConstants.PROFILE_EMAIL_COMPARE="Emails do not match. Please enter same email for confirmation",CandidateConstants.PROFILE_EMAIL_PHONE_NOTEMPTY="Email and Phone number are required. Please enter before you submit",CandidateConstants.CANDIDATE_PASSWORD_REQUIREMENTS="CandidatePasswordRequirements",CandidateConstants.COLLEAGUE_PASSWORD_REQUIREMENTS="ColleaguePasswordRequirements",CandidateConstants.CONTENT_PAGE="CONTENT_PAGE",CandidateConstants.CONTENT_PAGE_STATE=NGenConstants.ROOT_CONTROLS+".contentpage",CandidateConstants.CONTENT_PAGE_VIEW="Spa/candidate/contentPage.htm",CandidateConstants.CONTENT_PAGE_CONTROLLER="ContentPageCtrl",CandidateConstants.ABOUT_US_STATE=NGenConstants.ROOT_CONTROLS+".aboutus",CandidateConstants.ABOUT_US_VIEW="Spa/candidate/aboutUs.htm",CandidateConstants.ABOUT_US_CONTROLLER="AboutUsCtrl",CandidateConstants.CONTACT_US_STATE=NGenConstants.ROOT_CONTROLS+".contactus",CandidateConstants.CONTACT_US_VIEW="Spa/candidate/contactUs.htm",CandidateConstants.CONTACT_US_CONTROLLER="ContactUsCtrl",CandidateConstants.SITE_SUPPORT_STATE=NGenConstants.ROOT_CONTROLS+".sitesupport",CandidateConstants.SITE_SUPPORT_VIEW="Spa/candidate/siteSupport.htm",CandidateConstants.SITE_SUPPORT_CONTROLLER="SiteSupportCtrl",CandidateConstants.CANDIDATE_CONTACT_CONSULTANT="CANDIDATE_CONTACT_CONSULTANT",CandidateConstants.CONTACT_CONSULTANT_STATE=NGenConstants.ROOT_CONTROLS+".contactconsultant",CandidateConstants.CONTACT_CONSULTANT_VIEW="Spa/candidate/contactConsultant.htm",CandidateConstants.CONTACT_CONSULTANT_CONTROLLER="ContactConsultantCtrl",CandidateConstants.CANDIDATE_SEARCH_RESULTS="CANDIDATE_SEARCH_RESULTS",CandidateConstants.SEARCH="Search",CandidateConstants.SEARCH_RESOURCES="SearchResources",CandidateConstants.SEARCH_PODCASTS="SearchPodcasts",CandidateConstants.SEARCH_ELEARNING="SearchELearning",CandidateConstants.SEARCH_WEBINARS="SearchWebinars",CandidateConstants.SEARCH_ONSITE="SearchOnsite",CandidateConstants.SEARCH_LIST_STATE=NGenConstants.ROOT_CONTROLS+".searchlist",CandidateConstants.SEARCH_LIST_VIEW="Spa/candidate/search/search.list.htm",CandidateConstants.SEARCH_LIST_CONTROLLER="SearchListCtrl",CandidateConstants.SEARCH_PARAM_SEARCHTEXT="searchText",CandidateConstants.SEARCH_PARAM_SHOW="show",CandidateConstants.SEARCH_PARAMS="{searchText}{searchType}{show}",CandidateConstants.SEARCH_TYPE="searchType",CandidateConstants.SEARCH_TYPE_LIST="list",CandidateConstants.EXPLORE_GOAL_CONTROLLER="ExploreGoalCtrl",CandidateConstants.EXPLORE_GOAL="Goal",CandidateConstants.CANDIDATE_API="candidate",CandidateConstants.SAVE_EXPLORE_GOAL="SaveGoal",CandidateConstants.CANDIDATE_API_PUT_PROFILEREVIEW="ProfileReview",CandidateConstants.CANDIDATE_API_PUT_PROFILEREVIEW_AE="ProfileReviewforUser",CandidateConstants.CANDIDATE_CHANGE_GOAL_CONFIRMATION="CANDIDATE_CHANGE_GOAL_CONFIRMATION",CandidateConstants.CANDIDATE_PROFILE_CONTROLLER="CandidateProfileCtrl",CandidateConstants.CANDIDATE_PROFILE_STATE=NGenConstants.ROOT_CONTROLS+".candidateprofile",CandidateConstants.CANDIDATE_PROFILE_VIEW="Spa/candidate/profile/candidate.profile.htm",CandidateConstants.CANDIDATE_PROFILE_URL="/candidateprofile/details",CandidateConstants.CANDIDATE_PROFILE="CANDIDATE_PROFILE_PREFERENCES",CandidateConstants.MY_PROFILE_CONTROLLER="MyProfileCtrl",CandidateConstants.CANDIDATE_PROFILE_API="CandidateProfile",CandidateConstants.TWITTER_CONTROLLER="TwitterCtrl",CandidateConstants.TWITTER_SETTING_KEY="Tweets",CandidateConstants.LANDING="CandidateLanding",CandidateConstants.LANDING_URL="/landing",CandidateConstants.LANDING_CONTROLLER="LandingCtrl",CandidateConstants.LANDING_STATE=NGenConstants.ROOT_CONTROLS+".landing",CandidateConstants.LANDING_VIEW="Spa/candidate/landing/candidateLanding.htm",CandidateConstants.CONNECTING_TO_JOBS="ConnectingToJobs",CandidateConstants.CONNECTING_TO_JOBS_CONTROLLER="ConnectingToJobsCtrl",CandidateConstants.RATING="Rating",CandidateConstants.RATING_AVERAGE="RatingAverage",CandidateConstants.RATING_USER="RatingUser",CandidateConstants.RATING_CONTROLLER="RatingCtrl",CandidateConstants.RATING_VIEW="Spa/candidate/rating/rating.htm",CandidateConstants.RATING_ID_PARAM="ratingID",CandidateConstants.SESSION_ID_PARAM="sessionID",CandidateConstants.COURSE_ID_PARAM="courseID",CandidateConstants.PAGE_ID_PARAM="pageID",CandidateConstants.INITIAL_RATING_PARAM="initialRating",CandidateConstants.PROFILE_PHOTO="ProfilePhoto",CandidateConstants.PROFILE_PHOTO_UPLOAD_CONTROLLER="ProfilePhotoUploadCtrl",CandidateConstants.PROFILE_PHOTO_CONTROLLER="ProfilePhotoCtrl",CandidateConstants.PROFILE_PHOTO_PUBLISHED="ProfilePhotoPublished",CandidateConstants.BASE64_MODULE="naif.base64",CandidateConstants.JOB_FUNCTION="JobFunction",CandidateConstants.JOB_INDUSTRY="JobIndustry",CandidateConstants.JOB_SENIORITY="JobSeniority",CandidateConstants.CANDIDATE_BADGE="CANDIDATE_BADGE",CandidateConstants.EARNED_BADGE_CONTROLLER="EarnedBadgeCtrl",CandidateConstants.BADGE_ACTIVITY="BadgeActivity",CandidateConstants.BADGE_ACTIVITY_ADD="BadgeActivityAdd",CandidateConstants.BADGE_PRESENTED="BadgePresented",CandidateConstants.FILE_TOO_BIG="FILE_TOO_BIG",CandidateConstants.MAX_PROFILE_IMAGE_SIZE=204800,CandidateConstants.NOTIFICATIONMETHOD_GET_ALL="NotificationMethodGetAll",CandidateConstants.USER_NOTIFICATION_PREFERENCE="UserNotificationPreference",CandidateConstants.GET_USER_NOTIFICATION_PREFERENCES="GetUserNotificationPreferences",CandidateConstants.SAVE_USER_NOTIFICATION_PREFERENCES="SaveUserNotificationPreferences",CandidateConstants.AUDIO="Audio",CandidateConstants.ACCEPT_POLICY_MSG="CANDIDATE_ACCEPT_POLICIES_MSG",CandidateConstants.FORM_SUBMITTED="form-submitted",CandidateConstants.REFRESHING_YOUR_ENTIRE_USER_EXPERIENCE="NGEN_REFRESHING_YOUR_ENTIRE_USER_EXPERIENCE",CandidateConstants.CANDIDATE_POLICY_OK="CANDIDATE_POLICY_OK",CandidateConstants.ALL_POLICIES_ACCEPTED="allPoliciesAccepted",CandidateConstants.ACCEPT_RESUME_UPLOAD_POLICY_MSG="CANDIDATE_ACCEPT_RESUME_UPLOAD_POLICY_MSG",CandidateConstants.Exclamation_Mark_State="Exclamation_Mark_State",CandidateConstants.INITIATIVE_SEARCH="Initiative_Search",CandidateConstants.INITIATIVE_SEARCH_CLEAR="Initiative_Search_Clear",CandidateConstants.COUNTRY_ID_GERMAN=20,CandidateConstants.LANGUAGE_CODE_GERMAN="de",CandidateConstants}(),Badges;(function(Badges){Badges[Badges.Connector=1]="Connector";Badges[Badges.Achiever=2]="Achiever";Badges[Badges.Learner=3]="Learner";Badges[Badges.GoGetter=4]="GoGetter";Badges[Badges.Dynamo=5]="Dynamo";Badges[Badges.Guide=6]="Guide";Badges[Badges.Influencer=7]="Influencer";Badges[Badges.Explorer=8]="Explorer";Badges[Badges.Seeker=9]="Seeker";Badges[Badges.SelfMarketer=10]="SelfMarketer";Badges[Badges.Champion=11]="Champion";Badges[Badges.Expert=12]="Expert";Badges[Badges.HighFlier=13]="HighFlier";Badges[Badges.Investigator=14]="Investigator";Badges[Badges.Researcher=15]="Researcher";Badges[Badges.Planner=16]="Planner";Badges[Badges.Organizer=17]="Organizer";Badges[Badges.Enthusiast=18]="Enthusiast";Badges[Badges.Motivator=19]="Motivator";Badges[Badges.Chameleon=20]="Chameleon";Badges[Badges.Discoverer=21]="Discoverer";Badges[Badges.Hunter=22]="Hunter";Badges[Badges.Supporter=23]="Supporter";Badges[Badges.Advocate=24]="Advocate";Badges[Badges.Contributor=25]="Contributor";Badges[Badges.InterviewCenter=26]="InterviewCenter";Badges[Badges.MasteryWorks1=27]="MasteryWorks1";Badges[Badges.MasteryWorks2=28]="MasteryWorks2";Badges[Badges.MasteryWorks3=29]="MasteryWorks3";Badges[Badges.MasteryWorks4=30]="MasteryWorks4";Badges[Badges.MasteryWorks5=31]="MasteryWorks5";Badges[Badges.MasteryWorks6=32]="MasteryWorks6";Badges[Badges.MasteryWorks=35]="MasteryWorks";Badges[Badges.Builder=33]="Builder";Badges[Badges.Hero=34]="Hero";Badges[Badges.DevelopMe_QA_Assessment=36]="DevelopMe_QA_Assessment"})(Badges||(Badges={})),function(NotificationType){NotificationType[NotificationType.HostReminder=1]="HostReminder";NotificationType[NotificationType.AttendeeReminder=2]="AttendeeReminder";NotificationType[NotificationType.HostConfirmation=3]="HostConfirmation";NotificationType[NotificationType.AttendeeConfirmation=4]="AttendeeConfirmation";NotificationType[NotificationType.AttendeeSurvey=5]="AttendeeSurvey";NotificationType[NotificationType.WaitlistConfirmation=6]="WaitlistConfirmation";NotificationType[NotificationType.Messaging=7]="Messaging";NotificationType[NotificationType.NewUser=8]="NewUser";NotificationType[NotificationType.WelcomeEmail=9]="WelcomeEmail";NotificationType[NotificationType.IncomingText=10]="IncomingText";NotificationType[NotificationType.OutgoingText=11]="OutgoingText";NotificationType[NotificationType.Engagement=12]="Engagement";NotificationType[NotificationType.Branding=13]="Branding";NotificationType[NotificationType.PrivacyPolicyLegacy=14]="PrivacyPolicyLegacy";NotificationType[NotificationType.ActionItemsReminders=15]="ActionItemsReminders";NotificationType[NotificationType.RoadmapCompletion=16]="RoadmapCompletion"}(NotificationType||(NotificationType={})),function(Tip){Tip[Tip.RoadmapZoneNumber=1]="RoadmapZoneNumber";Tip[Tip.RoadmapExplore=2]="RoadmapExplore";Tip[Tip.ActionItems=3]="ActionItems";Tip[Tip.AssessmentReports=4]="AssessmentReports"}(Tip||(Tip={}));DevelopMeConstants=function(){function DevelopMeConstants(){}return DevelopMeConstants.DEVELOPME_MODULE="lhh.developMe",DevelopMeConstants.DEVELOPME_CUSTOMER="DevelopMeCustomer",DevelopMeConstants.DEVELOPME_CUSTOMER_KEY="DEVELOPME_CUSTOMER",DevelopMeConstants.DEVELOPME_SELECT_DEFAULT_ROADMAP="DEVELOPME_SELECT_DEFAULT_ROADMAP",DevelopMeConstants.DEVELOPME_NO_DEFAULT_ROADMAP="DEVELOPME_NO_DEFAULT_ROADMAP",DevelopMeConstants.BRANDING_NAME="BrandingName",DevelopMeConstants.DEVELOPME_INVALID_USER_DEFAULTS="DEVELOPME_INVALID_USER_DEFAULTS",DevelopMeConstants.DEVELOPME_UPLOADING_USERS_MESSAGE="DEVELOPME_UPLOADING_USERS_MESSAGE",DevelopMeConstants.DEVELOPME_DELETING_USERLOAD_MESSAGE="DEVELOPME_DELETING_USERLOAD_MESSAGE",DevelopMeConstants.DEVELOPME_SITE_LANGUAGE="SiteLanguage",DevelopMeConstants.DEVELOPME_CUSTOMER_LANGUAGE="CustomerLanguage",DevelopMeConstants.DEVELOPME_USER_LOAD="UserLoad",DevelopMeConstants.DEVELOPME_DELETE_ALL_USER_LOAD="DeleteUserLoadRecords",DevelopMeConstants.DEVELOPME_CHANGE_ALL_USERS_STATUS="changeAllUsersStatus",DevelopMeConstants.DEVELOPME_DEACTIVATE_USERS_CONFIRMATION_MESSAGE="DEVELOPME_DEACTIVATE_USERS_CONFIRMATION_MESSAGE",DevelopMeConstants.ANGULAR_SLIDER_MODULE="ui.bootstrap-slider",DevelopMeConstants.ANGULAR_CHART_MODULE="tc.chartjs",DevelopMeConstants.ANGULAR_VERTILIZE_MODULE="angular.vertilize",DevelopMeConstants.CONTENT_DESCRIPTION_VIEW="Spa/developMe/shared/contentDescription.htm",DevelopMeConstants.DEVELOPME_CONTROLS=NGenConstants.ROOT+".developme",DevelopMeConstants.DEVELOPME_HOME=DevelopMeConstants.DEVELOPME_CONTROLS+".home",DevelopMeConstants.INITIATIVE="Initiative",DevelopMeConstants.INITIATIVE_PROGRESS="InitiativeProgress",DevelopMeConstants.INITIATIVE_ORGRESOURCE="InitiativeOrgResource",DevelopMeConstants.INITIATIVE_STATE=DevelopMeConstants.DEVELOPME_CONTROLS+".initiative",DevelopMeConstants.INITIATIVE_ONLY_STATE=NGenConstants.ROOT+".initiativeOnly",DevelopMeConstants.INITIATIVE_VIEW="Spa/developMe/initiative/initiative.htm",DevelopMeConstants.INITIATIVE_CONTROLLER="InitiativeCtrl",DevelopMeConstants.INITIATIVE_RATING_VIEW="Spa/developMe/initiative/initiativeRating.htm",DevelopMeConstants.INITIATIVE_RATING_CONTROLLER="InitiativeRatingCtrl",DevelopMeConstants.INITIATIVE_FEEDBACK_MODAL_VIEW="Spa/developMe/initiative/feedback/initiativeFeedbackModal.htm",DevelopMeConstants.INITIATIVE_FEEDBACK_MODAL_CONTROLLER="InitiativeFeedbackModalCtrl",DevelopMeConstants.INITIATIVE_SETUP_FACTORY="INITIATIVE_SETUP_FACTORY",DevelopMeConstants.INITIATIVE_SERVICE="InitiativeService",DevelopMeConstants.INITIATIVE_PROGRESS_START="DEVELOPME_START",DevelopMeConstants.INITIATIVE_PROGRESS_COMPLETED="DEVELOPME_COMPLETED",DevelopMeConstants.INITIATIVE_PROGRESS_WATCHED="DEVELOPME_WATCHED",DevelopMeConstants.INITIATIVE_PROGRESS_WATCH="DEVELOPME_WATCH",DevelopMeConstants.INITIATIVE_PROGRESS_WATCHING="DEVELOPME_WATCHING",DevelopMeConstants.INITIATIVE_PROGRESS_LISTENED="DEVELOPME_LISTENED",DevelopMeConstants.INITIATIVE_PROGRESS_LISTEN="DEVELOPME_LISTEN",DevelopMeConstants.INITIATIVE_PROGRESS_LISTENING="DEVELOPME_LISTENING",DevelopMeConstants.INITIATIVE_PROGRESS_REVIEW="DEVELOPME_REVIEW",DevelopMeConstants.INITIATIVE_PROGRESS_REVIEWED="DEVELOPME_REVIEWED",DevelopMeConstants.InitiativeProgressEvent="initiative.progress",DevelopMeConstants.InitiativeBadgeEvent="initiative.badge",DevelopMeConstants.InitiativeAssessmentResultDisplayed="initiative.assessmentResult",DevelopMeConstants.ROADMAP_STATE=DevelopMeConstants.DEVELOPME_CONTROLS+".roadmap",DevelopMeConstants.ROADMAP_VIEW="Spa/developMe/roadmap/roadmap.htm",DevelopMeConstants.ROADMAP_CONTROLLER="RoadmapCtrl",DevelopMeConstants.ABSTRACT_PROMPTS_CONTROLLER="AbstractPromptsCtrl",DevelopMeConstants.PROMPTS_VIEW="Spa/developMe/assessment/prompts.htm",DevelopMeConstants.PROMPTS_CONTROLLER="PromptsCtrl",DevelopMeConstants.BOOLEAN_PROMPTS_VIEW="Spa/developMe/assessment/booleanPrompts.htm",DevelopMeConstants.BOOLEAN_PROMPTS_CONTROLLER="BooleanPromptsCtrl",DevelopMeConstants.PROMPTS_IN_SET=10,DevelopMeConstants.PROMPTS_IN_BOOLEAN_PROMPTS_SET=20,DevelopMeConstants.CARDSORT_VIEW="Spa/developMe/assessment/cardSort/cardSort.htm",DevelopMeConstants.CARDSORT_CONTROLLER="CardSortCtrl",DevelopMeConstants.USER_ASSESSMENT="UserAssessment",DevelopMeConstants.SEARCH_USER_EMPLOYEE_ASSESSMENT="SeachEmployeeAssessment",DevelopMeConstants.GET_NEW_EMPLOYEE_ASSESSMENT="GetNewEmployeeRatingUserAssessment",DevelopMeConstants.GET_OR_CREATE_EMPLOYEE_ASSESSMENT="GetOrCreateEmployeeRatingUserAssessment",DevelopMeConstants.UPDATE_EMPLOYEE_NAME="UpdateEmployeeName",DevelopMeConstants.ASSESSMENT="Assessment",DevelopMeConstants.ASSESSMENT_STATE=DevelopMeConstants.DEVELOPME_CONTROLS+".assessment",DevelopMeConstants.ASSESSMENT_ONLY_STATE=NGenConstants.ROOT+".assessmentOnly",DevelopMeConstants.ASSESSMENT_CONTROLLER="AssessmentCtrl",DevelopMeConstants.ASSESSMENT_VIEW="Spa/developMe/assessment/assessment.htm",DevelopMeConstants.ASSESSMENT_SERVICE="AssessmentService",DevelopMeConstants.ASSESSMENT_RATING_KEY_VIEW="Spa/developMe/assessment/assessmentRatingKey.htm",DevelopMeConstants.ASSESSMENT_CAREER_ANCHOR_REPORT_VIEW="Spa/developMe/assessment/careerAnchors/careerAnchorReport.htm",DevelopMeConstants.ASSESSMENT_WORK_VALUES_VIEW="Spa/developMe/assessment/workValues/workValues.htm",DevelopMeConstants.ASSESSMENT_WORK_VALUES_REPORT_VIEW="Spa/developMe/assessment/workValues/workValuesReport.htm",DevelopMeConstants.ASSESSMENT_ACTION_ITEMS_VIEW="Spa/developMe/shared/actionItems.htm",DevelopMeConstants.ASSESSMENT_ACTION_ITEMS_BACKGROUND_PREFIX="action-items-background",DevelopMeConstants.ASSESSMENT_COMMUNICATION_STYLES_VIEW="Spa/developMe/assessment/communicationStyles/communicationStyles.htm",DevelopMeConstants.ASSESSMENT_COMMUNICATION_STYLES_ASSESSMENT_VIEW="Spa/developMe/assessment/communicationStyles/communicationStylesAssessment.htm",DevelopMeConstants.ASSESSMENT_COMMUNICATION_STYLES_REPORT_VIEW="Spa/developMe/assessment/communicationStyles/communicationStylesReport.htm",DevelopMeConstants.ASSESSMENT_COMMUNICATION_STYLES_RESULTS_SINGULAR="DEVELOPME_COMMSTYLE_PRIMARY_COMMUNICATION_SINGULAR",DevelopMeConstants.ASSESSMENT_COMMUNICATION_STYLES_RESULTS_PLURAL="DEVELOPME_COMMSTYLE_PRIMARY_COMMUNICATION_PLURAL",DevelopMeConstants.ASSESSMENT_COMMUNICATION_STYLES_RESULTS_AND="DEVELOPME_AND",DevelopMeConstants.ASSESSMENT_COMMUNICATION_STYLES_RESULTS_AND1="DEVELOPME_AND1",DevelopMeConstants.ASSESSMENT_COMMUNICATION_STYLES_RESULTS_AND2="DEVELOPME_AND2",DevelopMeConstants.ASSESSMENT_PERSONALPATH_SLIDERPROMPT="DEVELOPME_ASSESSMENT_PERSONALPATH_SLIDERPROMPT",DevelopMeConstants.ASSESSMENT_DIVIDER_SUFFIX="_DEVELOPME_DIVIDER_",DevelopMeConstants.ASSESSMENT_DIVIDER_IMAGE_PREFIX="divider-",DevelopMeConstants.PROFILE_SERVICE="DevelopMeProfileService",DevelopMeConstants.PROFILE_STATE=DevelopMeConstants.DEVELOPME_CONTROLS+".profile",DevelopMeConstants.PROFILE_VIEW="Spa/developMe/profile/profile.htm",DevelopMeConstants.PROFILE_SETTINGS_STATE=DevelopMeConstants.PROFILE_STATE+".settings",DevelopMeConstants.ACTION_PLAN="ActionPlan",DevelopMeConstants.ACTION_PLAN_STATE=DevelopMeConstants.PROFILE_STATE+".actionPlan",DevelopMeConstants.ACTION_PLAN_VIEW="Spa/developMe/profile/actionPlan/actionPlan.htm",DevelopMeConstants.ACTION_PLAN_ADD_EDIT_MODAL_VIEW="Spa/developMe/profile/actionPlan/addEditActionModal.htm",DevelopMeConstants.ASSESSMENT_SUMMARY="AssessmentSummary",DevelopMeConstants.ASSESSMENT_SUMMARY_STATE=DevelopMeConstants.PROFILE_STATE+".assessmentReports",DevelopMeConstants.ASSESSMENT_SUMMARY_VIEW="Spa/developMe/profile/assessmentSummary/assessmentSummary.htm",DevelopMeConstants.ASSESSMENT_SUMMARY_MODAL_VIEW="Spa/developMe/profile/assessmentSummary/deleteConfirmationUserAssessmentModal.htm",DevelopMeConstants.EXPLORE_STATE=DevelopMeConstants.DEVELOPME_CONTROLS+".explore",DevelopMeConstants.EXPLORE_INITIATIVES_STATE=DevelopMeConstants.EXPLORE_STATE+".initiatives",DevelopMeConstants.EXPLORE_VIEW="Spa/developMe/explore/explore.htm",DevelopMeConstants.EXPLORE_CONTROLLER="exploreCtrl",DevelopMeConstants.EXPLORE_CATEGORY="ExploreCategories",DevelopMeConstants.EXPLORE_INITIATIVES_VIEW="Spa/developMe/explore/initiatives.htm",DevelopMeConstants.SAVE_USER_ROADMAP="SaveUserRoadmap",DevelopMeConstants.SAVE_DEVELOPME_PROFILE="PutDevelopmeProfile",DevelopMeConstants.GET_ROAD_MAPS_BY_USER_CUSTOMER_ID="GetRoadmapsByUserCustomerID",DevelopMeConstants.GET_ROAD_MAPS_BY_CUSTOMER_ID="GetRoadmapsByCustomerID",DevelopMeConstants.GET_ASSESSMENTS_BY_CUSTOMER_ID="GetAssessmentsByCustomerID",DevelopMeConstants.ACHIEVEMENT_CONTROLLER="AchievementCtrl",DevelopMeConstants.ACHIEVEMENT_STATE=DevelopMeConstants.PROFILE_STATE+".achievement",DevelopMeConstants.SETTINGS_STATE=DevelopMeConstants.PROFILE_STATE+".settings",DevelopMeConstants.CHANGE_PASSWORD_STATE=DevelopMeConstants.PROFILE_STATE+".changePassword",DevelopMeConstants.ICON_VIDEO="icon-video.png",DevelopMeConstants.ICON_AUDIO="icon-audio.png",DevelopMeConstants.ICON_DOCUMENT="icon-document.png",DevelopMeConstants.FILE_ICON_DOC="link-doc.svg",DevelopMeConstants.FILE_ICON_FILE="link-file.svg",DevelopMeConstants.FILE_ICON_PDF="link-pdf.svg",DevelopMeConstants.FILE_ICON_PPT="link-ppt.svg",DevelopMeConstants.FILE_ICON_WEBPAGE="link-webpage.svg",DevelopMeConstants.FILE_ICON_XLS="link-xls.svg",DevelopMeConstants.INITIATIVE_SEARCH_STATE=DevelopMeConstants.DEVELOPME_CONTROLS+".initiativeSearch",DevelopMeConstants.INITIATIVE_SEARCH_VIEW="Spa/developMe/search/initiativeSearch.htm",DevelopMeConstants.QUESTION_ANSWER_REPORT_STATE=DevelopMeConstants.DEVELOPME_CONTROLS+".assessment.questionAnswer",DevelopMeConstants.QUESTION_ANSWER_REPORT_ONLY_STATE=NGenConstants.ROOT+".assessmentOnly.questionAnswer",DevelopMeConstants.QUESTION_ANSWER_REPORT_VIEW="Spa/developMe/assessment/questionAnswer/questionAnswerReport.htm",DevelopMeConstants.QUESTION_ANSWER_REPORT_CONTROLLER="QuestionAnswerReportCtrl",DevelopMeConstants.RESULTS_RECOMMENDATION="ResultsRecommendation",DevelopMeConstants.GET_RECOMMENDATION_AREA_RESULTS="GetRecommendationResultsByAssessment",DevelopMeConstants.CLOSE_MY_ACTIONS="DM_CLOSE_MY_ACTIONS",DevelopMeConstants.CLOSE_RECOMMENDATIONS="DM_CLOSE_RECOMMENDATIONS",DevelopMeConstants.CLOSE_ADDITIONAL_TIPS="DM_CLOSE_ADDITIONAL_TIPS",DevelopMeConstants.SHOW_MY_ACTIONS="DM_SHOW_MY_ACTIONS",DevelopMeConstants.SHOW_RECOMMENDATIONS="DM_SHOW_RECOMMENDATIONS",DevelopMeConstants.SHOW_ADDITIONAL_TIPS="DM_SHOW_ADDITIONAL_TIPS",DevelopMeConstants.USER_ACTION_SERVICE="USER_ACTION_SERVICE",DevelopMeConstants.ACTION="Action",DevelopMeConstants.USER_ADD="UserAdd",DevelopMeConstants.GET_ASSESSMENT_ACTION_ITEMS="GetAssessmentActionItems",DevelopMeConstants.WORK_VALUES="WorkValues",DevelopMeConstants.WORK_VALUES_UPDATE_PROGRESS="assessment.workValues.updateProgress",DevelopMeConstants.WORK_VALUES_GOTO_NEXT_SECTION="assessment.workValues.goToNextSection",DevelopMeConstants.WORK_VALUES_GET_RESULT="assessment.workValues.getResults",DevelopMeConstants.COMMUNICATION_STYLES="CommunicationStyles",DevelopMeConstants.COMMUNICATION_STYLES_UPDATE_PROGRESS="assessment.communicationStyles.updateProgress",DevelopMeConstants.COMMUNICATION_STYLES_GOTO_NEXT_SECTION="assessment.communicationStyles.goToNextSection",DevelopMeConstants.COMMUNICATION_STYLES_GET_RESULT="assessment.communicationStyles.getResults",DevelopMeConstants.COMMUNICATION_STYLES_GET_RESULTS_SECTION_1="GetCommunicationStylesAssessmentResultsSection1",DevelopMeConstants.COMMUNICATION_STYLES_GET_RESULTS_SECTION_2="GetCommunicationStylesAssessmentResultsSection2",DevelopMeConstants.ZONE="Zone",DevelopMeConstants.EXPLORE_JOBS="ExploreJobs",DevelopMeConstants.EXPLORE_JOBS_STATE=DevelopMeConstants.DEVELOPME_CONTROLS+".exploreJobs",DevelopMeConstants.JOBS="Jobs",DevelopMeConstants}(),function(SiteType){SiteType[SiteType.Candidate=1]="Candidate";SiteType[SiteType.Redeployment=2]="Redeployment";SiteType[SiteType.DevelopMe=3]="DevelopMe";SiteType[SiteType.NoWelcomePage=4]="NoWelcomePage"}(SiteType||(SiteType={}));TalentCloudConstants=function(){function TalentCloudConstants(){}return TalentCloudConstants.TALENTCLOUD_MODULE="lhh.talentCloud",TalentCloudConstants.DIGITAL_TALENT_EXCHANGE="DigitalTalentExchange",TalentCloudConstants.TALENTCLOUD="TalentCloud",TalentCloudConstants.TALENTCLOUD_STATE=NGenConstants.ROOT_CONTROLS+".talentcloud",TalentCloudConstants.TALENTCLOUD_VIEW="/Spa/talentcloud/talentCloud.htm",TalentCloudConstants.TALENTCLOUD_CONTROLLER="TalentCloudCtrl",TalentCloudConstants.MYRESUME="Resume",TalentCloudConstants.MY_RESUME_BREADCRUMB="CANDIDATE_MY_RESUME",TalentCloudConstants.AboutMe="AboutMe",TalentCloudConstants.AboutMeInfo="AboutMeInfo",TalentCloudConstants.ABOUT_ME_BREADCRUMB="CANDIDATE_CONTACT_INFO",TalentCloudConstants.MYRESUME_STATE=TalentCloudConstants.TALENTCLOUD_STATE+".myresume",TalentCloudConstants.MYRESUME_VIEW="/Spa/talentcloud/myResume/myResume.htm",TalentCloudConstants.ABOUTME_VIEW="/Spa/talentcloud/aboutMe/aboutMe.htm",TalentCloudConstants.ABOUTME_STATE=TalentCloudConstants.TALENTCLOUD_STATE+".aboutme",TalentCloudConstants.MYDOCUMENTS="MyDocuments",TalentCloudConstants.MY_DOCUMENTS_BREADCRUMB="CANDIDATE_MY_DOCUMENTS",TalentCloudConstants.MYDOCUMENTS_STATE=TalentCloudConstants.TALENTCLOUD_STATE+".mydocuments",TalentCloudConstants.MYDOCUMENTS_VIEW="/Spa/talentcloud/myDocuments/myDocuments.htm",TalentCloudConstants.MYDOCUMENTS_UPLOAD_MODAL_CONTROLLER="MyDocumentsUploadModalCtrl",TalentCloudConstants.MYDOCUMENTS_UPLOAD_MODAL_VIEW="/Spa/talentcloud/myDocuments/myDocumentsUploadModal.htm",TalentCloudConstants.PREVIEW_DOCUMENT_MODAL_CONTROLLER="PreviewDocumentModalCtrl",TalentCloudConstants.PREVIEW_DOCUMENT_MODAL_VIEW="/Spa/talentcloud/myResume/previewDocumentModal.htm",TalentCloudConstants.MYRESUME_YEAR=1975,TalentCloudConstants.MYRESUME_NONE_MONTH=13,TalentCloudConstants.MYRESUME_STATUS_PUBLIC=7843,TalentCloudConstants.MYRESUME_STATUS_INTERNAL=7897,TalentCloudConstants.MYRESUME_STATUS_EXTERNAL=7898,TalentCloudConstants.MYRESUME_STATUS_PRIVATE=7844,TalentCloudConstants.EXPERIENCETYPE_FULLTIME=1,TalentCloudConstants.EXPERIENCETYPE_MILITARY_SERVICE=7,TalentCloudConstants.EXPERIENCETYPE_VOLUNTEER=6,TalentCloudConstants.DELETE_STATUS="Deleted",TalentCloudConstants.CHANGED_STATUS="Changed",TalentCloudConstants.NO_CHANGE_STATUS="NoChange",TalentCloudConstants.ADD_NEW_SKILL_CONTROLLER="AddSkillCtrl",TalentCloudConstants.NEW_SKILL_ADDED="NewSkillAdded",TalentCloudConstants.SOCIALMEDIA_EMAIL=1,TalentCloudConstants.SOCIALMEDIA_HOMEPHONE=2,TalentCloudConstants.SOCIALMEDIA_SMS=3,TalentCloudConstants.SOCIALMEDIA_LINKEDIN=5,TalentCloudConstants.SOCIALMEDIA_WEBSITE=6,TalentCloudConstants.TC_RESUME_UPLOAD_OVERRIDE_MSG="TC_RESUME_UPLOAD_OVERRIDE_MSG",TalentCloudConstants.TC_RESUME_UPDATE_NO_RESUME_ALERT="TC_RESUME_UPDATE_NO_RESUME_ALERT",TalentCloudConstants.TC_ALTHOMERESUME_UPLOAD_OVERRIDE_MSG="TC_ALTHOMERESUME_UPLOAD_OVERRIDE_MSG",TalentCloudConstants.TC_RESUME_UPLOAD_MIME_TYPE_ALERT_MESSAGE="TC_RESUME_UPLOAD_MIME_TYPE_ALERT_MESSAGE",TalentCloudConstants.TC_RESUME_UPDATE_PRIVATE_IN_6_HOURS_ALERT="TC_RESUME_UPDATE_PRIVATE_IN_6_HOURS_ALERT",TalentCloudConstants.TC_RESUME_I_UNDERSTAND="TC_RESUME_I_UNDERSTAND",TalentCloudConstants.BRANDING_RESUME_UPLOAD_DENIED="BRANDING_UPLOAD_DENIED",TalentCloudConstants.DTE_MYRESUME_OVERWRITE_DTE="DTE_MYRESUME_OVERWRITE_DTE",TalentCloudConstants.DTE_MY_DOCUMENTS_DELETE_CONFIRMATION="DTE_MY_DOCUMENTS_DELETE_CONFIRMATION",TalentCloudConstants.LEARNING_STATUS_ACTIVE=2,TalentCloudConstants.DTE_HEADER_CMS_MODULE_ID="DTEHeaderCMSModuleId",TalentCloudConstants.DTE_RESUME_PAGE_HEADER_CMS_MODULE_ID="DTEResumePageHeaderCMSModuleId",TalentCloudConstants.DTE_RESUME_PUBLIC_HEADER_CMS_MODULE_ID_RED="DteResumePublicHeaderCmsModuleRedeployment",TalentCloudConstants.DTE_RESUME_PAGE_HEADER_CMS_MODULE_ID_RED="DteResumeHeaderCMSModuleRedeployment",TalentCloudConstants.INTRO_MESSAGE_EMPLOYEE_PROFILE_CT="IntroMessageEmployeeProfileCT",TalentCloudConstants.INTRO_MESSAGE_EMPLOYEE_PROFILE_CM="IntroMessageEmployeeProfileCM",TalentCloudConstants}(),function(ADDRESSTYPES){ADDRESSTYPES[ADDRESSTYPES.Profile=1]="Profile";ADDRESSTYPES[ADDRESSTYPES.Education=2]="Education";ADDRESSTYPES[ADDRESSTYPES.Experience=3]="Experience"}(ADDRESSTYPES||(ADDRESSTYPES={})),function(EDUCATIONTYPES){EDUCATIONTYPES[EDUCATIONTYPES.AWARDS=1]="AWARDS";EDUCATIONTYPES[EDUCATIONTYPES.PATENTS=2]="PATENTS";EDUCATIONTYPES[EDUCATIONTYPES.TRAININGS=3]="TRAININGS";EDUCATIONTYPES[EDUCATIONTYPES.CERTIFICATIONS=4]="CERTIFICATIONS";EDUCATIONTYPES[EDUCATIONTYPES.EDUCATION=5]="EDUCATION";EDUCATIONTYPES[EDUCATIONTYPES.SECURITY_CLEARANCES=6]="SECURITY_CLEARANCES"}(EDUCATIONTYPES||(EDUCATIONTYPES={})),function(SKILLTYPES){SKILLTYPES[SKILLTYPES.BUSINESS=1]="BUSINESS";SKILLTYPES[SKILLTYPES.TECHNICAL=2]="TECHNICAL";SKILLTYPES[SKILLTYPES.WRITTEN=3]="WRITTEN";SKILLTYPES[SKILLTYPES.SPOKEN=4]="SPOKEN";SKILLTYPES[SKILLTYPES.HOBBY=5]="HOBBY";SKILLTYPES[SKILLTYPES.UNKNOWN=6]="UNKNOWN"}(SKILLTYPES||(SKILLTYPES={})),function(DOCUMENTCATEGORY){DOCUMENTCATEGORY[DOCUMENTCATEGORY.RESUME=0]="RESUME";DOCUMENTCATEGORY[DOCUMENTCATEGORY.COVERLETTER=1]="COVERLETTER";DOCUMENTCATEGORY[DOCUMENTCATEGORY.OTHER=2]="OTHER";DOCUMENTCATEGORY[DOCUMENTCATEGORY.STATEMENT=3]="STATEMENT";DOCUMENTCATEGORY[DOCUMENTCATEGORY.MARKETTINGPLAN=4]="MARKETTINGPLAN"}(DOCUMENTCATEGORY||(DOCUMENTCATEGORY={}));AdminConstants=function(){function AdminConstants(){}return AdminConstants.ADMIN_MODULE="lhh.admin",AdminConstants.ADMIN_STATE=NGenConstants.ROOT_CONTROLS+".admin",AdminConstants.ADMIN_VIEW="Spa/admin/admin.htm",AdminConstants.ADMIN_CONTROLLER="AdminCtrl",AdminConstants.RESOURCEKEY="ResourceKey",AdminConstants.RESOURCEKEYID_PARAM="resourceKeyID",AdminConstants.RKEY="Key",AdminConstants.RDESCRIPTION="Description",AdminConstants.RESOURCE_KEY_STATE=NGenConstants.ROOT_CONTROLS+".admin.resourcekey",AdminConstants.RESOURCE_KEY_VIEW="Spa/admin/translation/resourcekey.list.htm",AdminConstants.RESOURCE_KEY_CONTROLLER="ResourceKeyCtrl",AdminConstants.RESOURCE_KEY_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.resourcekey.edit",AdminConstants.RESOURCE_KEY_EDIT_VIEW="Spa/admin/translation/resourcekey.edit.htm",AdminConstants.RESOURCE_KEY_EDIT_CONTROLLER="ResourceKeyEditCtrl",AdminConstants.SETTING="setting",AdminConstants.SETTING_STATE=NGenConstants.ROOT_CONTROLS+".admin.setting",AdminConstants.SETTING_VIEW="Spa/admin/setting/setting.list.htm",AdminConstants.SETTING_CONTROLLER="SettingCtrl",AdminConstants.SETTING_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.setting.edit",AdminConstants.SETTING_EDIT_VIEW="Spa/admin/setting/setting.edit.htm",AdminConstants.SETTING_EDIT_CONTROLLER="SettingEditCtrl",AdminConstants.TRANSLATION="Translation",AdminConstants.RESOURCE_KEY_ID="ResourceKeyID",AdminConstants.LANGUAGE_ID="LanguageID",AdminConstants.RESOURCE_KEY="ResourceKey",AdminConstants.LANGUAGE_NAME="LanguageName",AdminConstants.VALUE="Value",AdminConstants.TRANSLATION_STATE=NGenConstants.ROOT_CONTROLS+".admin.translation",AdminConstants.TRANSLATION_VIEW="Spa/admin/translation/translation.list.htm",AdminConstants.TRANSLATION_CONTROLLER="TranslationCtrl",AdminConstants.TRANSLATION_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.translation.edit",AdminConstants.TRANSLATION_EDIT_VIEW="Spa/admin/translation/translation.edit.htm",AdminConstants.TRANSLATION_EDIT_CONTROLLER="TranslationEditCtrl",AdminConstants.NGEN_TRANSLATIONS="NGEN_TRANSLATIONS",AdminConstants.NGEN_TRANSLATION="NGEN_TRANSLATION",AdminConstants.LANGUAGE="Language",AdminConstants.LANGUAGE_STATE=NGenConstants.ROOT_CONTROLS+".admin.language",AdminConstants.LANGUAGE_VIEW="Spa/admin/language/language.list.htm",AdminConstants.LANGUAGE_CONTROLLER="LanguageCtrl",AdminConstants.BROWSER_LANGUAGE="BrowserLanguage",AdminConstants.LANGUAGE_BASE="LanguageBase",AdminConstants.ROLE_STATE=NGenConstants.ROOT_CONTROLS+".admin.role",AdminConstants.ROLE_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.role.edit",AdminConstants.PERMISSION="Permission",AdminConstants.PERMISSION_CONTROLLER="PermissionCtrl",AdminConstants.PERMISSION_VIEW="Spa/admin/perms/permission.list.htm",AdminConstants.PERMISSION_BY_ROLE="PermissionsByRole",AdminConstants.ROLE="Role",AdminConstants.ROLES_FOR_USER="RolesForUser",AdminConstants.ROLE_ADD_FOR_USER="RoleAddForUser",AdminConstants.ROLE_REMOVE_FOR_USER="RoleDeleteForUser",AdminConstants.ROLE_PARAM="role",AdminConstants.ROLE_CONTROLLER="RoleCtrl",AdminConstants.ROLE_VIEW="Spa/admin/perms/role.list.htm",AdminConstants.ROLE_EDIT_CONTROLLER="RoleEditCtrl",AdminConstants.ROLE_EDIT_VIEW="Spa/admin/perms/role.edit.htm",AdminConstants.NOTIFICATION="Notification",AdminConstants.FROM="From",AdminConstants.TO="To",AdminConstants.CC="Cc",AdminConstants.BCC="Bcc",AdminConstants.SUBJECT="Subject",AdminConstants.BODY="Body",AdminConstants.TYPEID="TypeID",AdminConstants.PRIORITY="Priority",AdminConstants.SENDDATE="SendDate",AdminConstants.STATUS="Status",AdminConstants.NOTIFICATION_STATE=NGenConstants.ROOT_CONTROLS+".admin.notification",AdminConstants.NOTIFICATON_VIEW="Spa/admin/notification/notification.list.htm",AdminConstants.NOTIFICATON_CONTROLLER="NotificationCtrl",AdminConstants.NOTIFICATON_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.notification.edit",AdminConstants.NOTIFICATON_EDIT_VIEW="Spa/admin/notification/notification.edit.htm",AdminConstants.NOTIFICATON_EDIT_CONTROLLER="notificationEditCtrl",AdminConstants.INTERVAL_VALUE=1e4,AdminConstants.ACTIVITY="Activity",AdminConstants.ACTION="Action",AdminConstants.ACTIONS="Actions",AdminConstants.USERNAME="UserName",AdminConstants.TABLENAME="TableName",AdminConstants.TABLEIDVALUE="TableIdValue",AdminConstants.UPDATEDATE="UpdateDate",AdminConstants.LAST_UPDATED_DATE="LastUpdated",AdminConstants.COLUMNNAME="ColumnName",AdminConstants.OLDVALUE="OldValue",AdminConstants.NEWVALUE="NewValue",AdminConstants.TIMESTAMP="Timestamp",AdminConstants.ACTIVITY_STATE=NGenConstants.ROOT_CONTROLS+".admin.activity",AdminConstants.ACTIVITY_VIEW="Spa/admin/activity/activity.list.htm",AdminConstants.ACTIVITY_CONTROLLER="ActivityCtrl",AdminConstants.ACTIVITY_PATH="/activity",AdminConstants.AUDIT_TRAIL="AuditTrail",AdminConstants.AUDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.auditTrail",AdminConstants.AUDIT_VIEW="Spa/admin/auditTrail/auditTrail.list.htm",AdminConstants.AUDIT_CONTROLLER="AuditTrailCtrl",AdminConstants.AUDIT_PATH="/auditTrail",AdminConstants.CONTENT_MGMT_URL="/cms",AdminConstants.CONTENT="Content",AdminConstants.CONTENT_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.content",AdminConstants.CONTENT_LIST_CONTROLLER="ContentCtrl",AdminConstants.CONTENT_LIST_VIEW="Spa/admin/content/content.list.htm",AdminConstants.CONTENT_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.content.edit",AdminConstants.CONTENT_EDIT_CONTROLLER="ContentEditCtrl",AdminConstants.CONTENT_EDIT_VIEW="Spa/admin/content/content.edit.htm",AdminConstants.CONTENT_URL=AdminConstants.CONTENT_MGMT_URL+"/content",AdminConstants.SELECTED_TAB="selectedTab",AdminConstants.LOGOS_TAB="logos",AdminConstants.STYLESHEET_TAB="stylesheets",AdminConstants.WELCOMEEMAIL_TAB="welcomeemail",AdminConstants.ALTERNATEHOME_TAB="alternatehome",AdminConstants.CONTENT_TEXT="ContentText",AdminConstants.CONTENT_TEXT_VERSIONS="ContentTextVersions",AdminConstants.CONTENT_TEXT_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.contentText",AdminConstants.CONTENT_TEXT_EDIT_CONTROLLER="ContentTextEditCtrl",AdminConstants.CONTENT_TEXT_EDIT_VIEW="Spa/admin/content/contentText.edit.htm",AdminConstants.CONTENT_TEXT_URL=AdminConstants.CONTENT_MGMT_URL+"/contenttext",AdminConstants.DEFAULT_LANGUAGE_ID_FIELD="DefaultLanguageID",AdminConstants.CONTENT_ID_FIELD="ContentID",AdminConstants.LANGUAGE_ID_FIELD="LanguageID",AdminConstants.CONTENT_CATEGORY="ContentCategory",AdminConstants.CONTENT_CATEGORY_EVENT_EMAIL=40,AdminConstants.CONTENT_CATEGORY_LOGIN_TEXT=47,AdminConstants.CONTENT_MANAGER="ContentMS",AdminConstants.SURVEY_FORM_ANCESTOR_WEBINAR_EVALUATION=1021,AdminConstants.SURVEY_TYPES="Activity,Intermediate,Final",AdminConstants.CONTENTACCESS="ContentAccess",AdminConstants.NGEN_CONTENTACCESS="NGEN_CONTENTACCESS",AdminConstants.CONTENTACCESS_KEY="ContentKey",AdminConstants.CONTENTACCESS_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.contentAccess",AdminConstants.CONTENTACCESS_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.contentAccess.edit",AdminConstants.CONTENTACCESS_EDIT_VIEW="Spa/admin/contentAccess/contentAccess.edit.htm",AdminConstants.CONTENTACCESS_PARAM="contentaccess",AdminConstants.USER_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.user",AdminConstants.USER_LIST_VIEW="Spa/admin/user/user.list.htm",AdminConstants.USER_LIST_CONTROLLER="UserCtrl",AdminConstants.USER_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.user.edit",AdminConstants.USER_EDIT_VIEW="Spa/admin/user/user.edit.htm",AdminConstants.USER_EDIT_CONTROLLER="UserCtrlEdit",AdminConstants.USER_DATA="UserData",AdminConstants.USERNAME_FIELD="UserName",AdminConstants.FIRSTNAME_FIELD="FirstName",AdminConstants.LASTNAME_FIELD="LastName",AdminConstants.ADMIN_ADMIN="ADMIN_ADMIN",AdminConstants.ADMIN_LANGUAGE="ADMIN_LANGUAGE",AdminConstants.ADMIN_SETTINGS="ADMIN_SETTINGS",AdminConstants.ADMIN_TRANSLATION="ADMIN_TRANSLATION",AdminConstants.ADMIN_RESOURCE_KEY="ADMIN_RESOURCE_KEY",AdminConstants.ADMIN_ACTIVITY="ADMIN_ACTIVITY",AdminConstants.ADMIN_AUDIT_TRAIL="ADMIN_AUDIT_TRAIL",AdminConstants.ADMIN_NOTIFICATION="ADMIN_NOTIFICATION",AdminConstants.SEACH_END_DATE_OFFSET="SearchEndDateOffset",AdminConstants.CORS="cors",AdminConstants.CORS_STATE=NGenConstants.ROOT_CONTROLS+".admin.cors",AdminConstants.CORS_VIEW="Spa/admin/cors/cors.list.htm",AdminConstants.CORS_CONTROLLER="CorsCtrl",AdminConstants.CORS_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.cors.edit",AdminConstants.CORS_EDIT_VIEW="Spa/admin/cors/cors.edit.htm",AdminConstants.CORS_EDIT_CONTROLLER="CorsEditCtrl",AdminConstants.SITE_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.site",AdminConstants.SITE_LIST_CONTROLLER="SiteCtrl",AdminConstants.SITE_LIST_VIEW="Spa/admin/content/site/site.list.htm",AdminConstants.SITE_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.site.edit",AdminConstants.SITE_EDIT_CONTROLLER="SiteEditCtrl",AdminConstants.SITE_EDIT_VIEW="Spa/admin/content/site/site.edit.htm",AdminConstants.SITE_URL=AdminConstants.CONTENT_MGMT_URL+"/site",AdminConstants.SITE_ID_PARAM="siteID",AdminConstants.SITE_TARGETING_CONTROLLER="siteTargetingCtrl",AdminConstants.SITE_TARGETING_VIEW="Spa/admin/content/site/pageTargeting.htm",AdminConstants.TEMPLATE_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.template",AdminConstants.TEMPLATE_LIST_CONTROLLER="TemplateCtrl",AdminConstants.TEMPLATE_LIST_VIEW="Spa/admin/content/template/template.list.htm",AdminConstants.TEMPLATE_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.template.edit",AdminConstants.TEMPLATE_EDIT_CONTROLLER="TemplateEditCtrl",AdminConstants.TEMPLATE_EDIT_VIEW="Spa/admin/content/template/template.edit.htm",AdminConstants.TEMPLATE_URL=AdminConstants.CONTENT_MGMT_URL+"/template",AdminConstants.STATE_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.state",AdminConstants.STATE_LIST_CONTROLLER="StateCtrl",AdminConstants.STATE_LIST_VIEW="Spa/admin/content/state/state.list.htm",AdminConstants.STATE_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.state.edit",AdminConstants.STATE_EDIT_CONTROLLER="StateEditCtrl",AdminConstants.STATE_EDIT_VIEW="Spa/admin/content/state/state.edit.htm",AdminConstants.STATE_URL=AdminConstants.CONTENT_MGMT_URL+"/state",AdminConstants.STATE_BY_SITE="StateBySite",AdminConstants.STATES_USED_BY_SITE="StatesUsedBySite",AdminConstants.PAGE_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.page",AdminConstants.PAGE_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.page.edit",AdminConstants.PAGE_EDIT_CONTROLLER="PageEditCtrl",AdminConstants.PAGE_EDIT_VIEW="Spa/admin/content/site/page.edit.htm",AdminConstants.PAGE_URL=AdminConstants.CONTENT_MGMT_URL+"/page",AdminConstants.PAGE_CLONE_CONTROLLER="ClonePageCtrl",AdminConstants.PAGE_CLONE_VIEW="Spa/admin/content/site/clonePage.htm",AdminConstants.PAGE_ID_PARAM="pageID",AdminConstants.PAGE_CLONE="PageClone",AdminConstants.CANDIDATE_STATIC_PAGES="CANDIDATE_STATIC_PAGES",AdminConstants.CANDIDATE_LOGIN_PAGES="CANDIDATE_LOGIN_PAGES",AdminConstants.STATIC_PAGE_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.staticPage",AdminConstants.STATIC_PAGE_LIST_CONTROLLER="StaticPageListCtrl",AdminConstants.STATIC_PAGE_LIST_VIEW="Spa/admin/content/site/staticPage.list.htm",AdminConstants.STATIC_PAGE_URL=AdminConstants.CONTENT_MGMT_URL+"/staticPage",AdminConstants.STATIC_PAGE_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.staticPage.edit",AdminConstants.STATIC_PAGE_EDIT_CONTROLLER="StaticPageEditCtrl",AdminConstants.STATIC_PAGE_EDIT_VIEW="Spa/admin/content/site/staticPage.edit.htm",AdminConstants.CONTROL_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.control",AdminConstants.CONTROL_LIST_CONTROLLER="ControlCtrl",AdminConstants.CONTROL_LIST_VIEW="Spa/admin/content/control/control.list.htm",AdminConstants.CONTROL_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.control.edit",AdminConstants.CONTROL_EDIT_CONTROLLER="ControlEditCtrl",AdminConstants.CONTROL_EDIT_VIEW="Spa/admin/content/control/control.edit.htm",AdminConstants.CONTROL_URL=AdminConstants.CONTENT_MGMT_URL+"/control",AdminConstants.BANNER_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.banner",AdminConstants.BANNER_LIST_CONTROLLER="BannerCtrl",AdminConstants.BANNER_LIST_VIEW="Spa/admin/content/banner/banner.list.htm",AdminConstants.BANNER_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.banner.edit",AdminConstants.BANNER_EDIT_CONTROLLER="BannerEditCtrl",AdminConstants.BANNER_EDIT_VIEW="Spa/admin/content/banner/banner.edit.htm",AdminConstants.BANNER_URL=AdminConstants.CONTENT_MGMT_URL+"/banner",AdminConstants.BANNER_GET="GetBannerImage",AdminConstants.BANNER_API_STRING="Banner",AdminConstants.BANNER_ADD="PostBanner",AdminConstants.LOGIN_NUMBER="LoginNumber",AdminConstants.BANNER_FILE_MESSAGE="Please upload only image files.",AdminConstants.BASE64_MODULE="naif.base64",AdminConstants.NGEN_IMAGES="NGEN_IMAGES",AdminConstants.IMAGE_FILE="ImageFile",AdminConstants.IMAGE_FILE_UPLOAD="ImageUploadFiles",AdminConstants.IMAGES_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.images",AdminConstants.IMAGES_LIST_CONTROLLER="ImagesCtrl",AdminConstants.IMAGES_LIST_VIEW="Spa/admin/images/images.list.htm",AdminConstants.IMAGES_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.images.edit",AdminConstants.IMAGES_EDIT_CONTROLLER="ImagesEditCtrl",AdminConstants.IMAGES_EDIT_VIEW="Spa/admin/images/images.edit.htm",AdminConstants.NGEN_FILES="NGEN_FILES",AdminConstants.FILE="File",AdminConstants.FILE_TRANSLATION="FileTranslation",AdminConstants.FILE_UPLOAD="UploadFiles",AdminConstants.FILES_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.files",AdminConstants.FILES_LIST_CONTROLLER="CtrlFiles",AdminConstants.FILES_LIST_VIEW="Spa/admin/files/files.list.htm",AdminConstants.FILES_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.files.edit",AdminConstants.FILES_EDIT_CONTROLLER="FilesEditCtrl",AdminConstants.FILES_EDIT_VIEW="Spa/admin/files/files.edit.htm",AdminConstants.FILE_TRANSLATION_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.files.fileTranslation",AdminConstants.FILE_TRANSLATION_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.files.fileTranslation.edit",AdminConstants.FILE_TRANSLATION_EDIT_CONTROLLER="FileTranslationEditCtrl",AdminConstants.FILE_TRANSLATION_EDIT_VIEW="Spa/admin/files/fileTranslation.edit.htm",AdminConstants.TAG="Tag",AdminConstants.TAG_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.tag",AdminConstants.TAG_LIST_CONTROLLER="TagCtrl",AdminConstants.TAG_LIST_VIEW="Spa/admin/tag/tag.list.htm",AdminConstants.NGEN_TAGS="NGEN_TAGS",AdminConstants.OVERRIDE_LOGIN_NUMBER_WARNING="OVERRIDE_LOGIN_NUMBER_WARNING",AdminConstants.EDIT_URL="/edit/:ID/:TAB",AdminConstants.TAB_DETAILS="details",AdminConstants.TAB_PROFILE="profile",AdminConstants.CLONE_PAGE="ClonePage",AdminConstants.CLONE_PAGE_PROMPT_RESOURCE_KEY="NGEN_CONFIRM_CLONE",AdminConstants.SUBJECT_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.subject",AdminConstants.SUBJECT_LIST_CONTROLLER="SubjectListCtrl",AdminConstants.SUBJECT_LIST_VIEW="Spa/admin/subject/subject.list.htm",AdminConstants.SUBJECT_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.subject.edit",AdminConstants.SUBJECT_EDIT_CONTROLLER="SubjectEditCtrl",AdminConstants.SUBJECT_EDIT_VIEW="Spa/admin/subject/subject.edit.htm",AdminConstants.SUBJECT_URL="/subject",AdminConstants.SUBJECT_SORT="SubjectSort",AdminConstants.GOAL="goal",AdminConstants.GOAL_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.goal",AdminConstants.GOAL_LIST_CONTROLLER="GoalListCtrl",AdminConstants.GOAL_LIST_VIEW="Spa/admin/goal/goal.list.htm",AdminConstants.GOAL_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.goal.edit",AdminConstants.GOAL_EDIT_CONTROLLER="GoalEditCtrl",AdminConstants.GOAL_EDIT_VIEW="Spa/admin/goal/goal.edit.htm",AdminConstants.GOAL_SORT="GoalSort",AdminConstants.BADGE_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.badge",AdminConstants.BADGE_LIST_CONTROLLER="BadgeCtrl",AdminConstants.BADGE_LIST_VIEW="Spa/admin/badge/badge.list.htm",AdminConstants.BADGE_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.badge.edit",AdminConstants.BADGE_EDIT_CONTROLLER="BadgeEditCtrl",AdminConstants.BADGE_EDIT_VIEW="Spa/admin/badge/badge.edit.htm",AdminConstants.BADGE_URL="/badge",AdminConstants.REDIRECT_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.redirect",AdminConstants.REDIRECT_LIST_CONTROLLER="RedirectListCtrl",AdminConstants.REDIRECT_LIST_VIEW="Spa/admin/redirect/redirect.list.htm",AdminConstants.REDIRECT_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.redirect.edit",AdminConstants.REDIRECT_EDIT_CONTROLLER="RedirectEditCtrl",AdminConstants.REDIRECT_EDIT_VIEW="Spa/admin/redirect/redirect.edit.htm",AdminConstants.REDIRECT_URL="/redirect",AdminConstants.REDIRECT="NGenRedirect",AdminConstants.DYNAMIC_LINK_URL="/dynamicLink",AdminConstants.CANDIDATE_DYNAMIC_LINKS="CANDIDATE_DYNAMIC_LINKS",AdminConstants.CANDIDATE_BADGES="CANDIDATE_BADGES",AdminConstants.CANDIDATE_EMAIL_LOOKUP="CANDIDATE_EMAIL_LOOKUP",AdminConstants.DYNAMIC_LINK_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.dynamiclink",AdminConstants.DYNAMIC_LINK_LIST_CONTROLLER="DynamicLinkCtrl",AdminConstants.DYNAMIC_LINK_LIST_VIEW="Spa/admin/dynamicLink/dynamicLink.list.htm",AdminConstants.DYNAMIC_LINK_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.dynamiclink.edit",AdminConstants.DYNAMIC_LINK_EDIT_CONTROLLER="DynamicLinkEditCtrl",AdminConstants.DYNAMIC_LINK_EDIT_VIEW="Spa/admin/dynamicLink/dynamicLink.edit.htm",AdminConstants.LOGO_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.logo",AdminConstants.LOGO_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.logo.edit",AdminConstants.LOGO_EDIT_STATE_URL=AdminConstants.CONTENT_MGMT_URL+"/logo/edit/:siteID/:ID",AdminConstants.LOGO_EDIT_CONTROLLER="LogoEditCtrl",AdminConstants.LOGO_EDIT_VIEW="Spa/admin/content/site/logo.edit.htm",AdminConstants.LOGO_SORT="LogoSort",AdminConstants.STYLESHEET_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.stylesheet",AdminConstants.STYLESHEET_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.stylesheet.edit",AdminConstants.STYLESHEET_EDIT_STATE_URL=AdminConstants.CONTENT_MGMT_URL+"/stylesheet/edit/:siteID/:ID",AdminConstants.STYLESHEET_EDIT_CONTROLLER="StylesheetEditCtrl",AdminConstants.STYLESHEET_EDIT_VIEW="Spa/admin/content/site/stylesheet.edit.htm",AdminConstants.HOME_PAGE_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.homepage",AdminConstants.HOME_PAGE_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.homepage.edit",AdminConstants.HOME_PAGE_EDIT_STATE_URL=AdminConstants.CONTENT_MGMT_URL+"/homepage/edit/:siteID/:ID",AdminConstants.HOME_PAGE_EDIT_CONTROLLER="HomePageEditCtrl",AdminConstants.HOME_PAGE_EDIT_VIEW="Spa/admin/content/site/homePage.edit.htm",AdminConstants.HOME_PAGE_FOR_CANDIDATE="HomePageForCandidate",AdminConstants.TERMS_AND_CONDITIONS_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.TermsAndConditions",AdminConstants.TERMS_AND_CONDITIONS_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.TermsAndConditions.edit",AdminConstants.TERMS_AND_CONDITIONS_EDIT_STATE_URL=AdminConstants.CONTENT_MGMT_URL+"/TermsAndConditions/edit/:siteID/:ID",AdminConstants.TERMS_AND_CONDITIONS_EDIT_CONTROLLER="TermsAndConditionsEditCtrl",AdminConstants.TERMS_AND_CONDITIONS_EDIT_VIEW="Spa/admin/content/site/TermsAndConditions.edit.htm",AdminConstants.EMAIL_LOOKUP_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.emaillookup",AdminConstants.EMAIL_LOOKUP_LIST_CONTROLLER="EmailLookupListCtrl",AdminConstants.EMAIL_LOOKUP_LIST_VIEW="Spa/admin/emailLookup/emailLookup.list.htm",AdminConstants.EMAIL_LOOKUP_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.emaillookup.edit",AdminConstants.EMAIL_LOOKUP_EDIT_CONTROLLER="EmailLookupEditCtrl",AdminConstants.EMAIL_LOOKUP_EDIT_VIEW="Spa/admin/emailLookup/emailLookup.edit.htm",AdminConstants.EMAIL_LOOKUP_URL="/emaillookup",AdminConstants.EMAIL_LOOKUP="EmailLookup",AdminConstants.EMAIL_LOOKUP_TYPE="EmailLookupType",AdminConstants.LOGIN_PAGE_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.loginPage",AdminConstants.LOGIN_PAGE_LIST_CONTROLLER="LoginPageListCtrl",AdminConstants.LOGIN_PAGE_LIST_VIEW="Spa/admin/content/site/loginPage.list.htm",AdminConstants.LOGIN_PAGE_URL=AdminConstants.CONTENT_MGMT_URL+"/loginPage",AdminConstants.LOGIN_PAGE_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.loginPage.edit",AdminConstants.LOGIN_PAGE_EDIT_CONTROLLER="LoginPageEditCtrl",AdminConstants.LOGIN_PAGE_EDIT_VIEW="Spa/admin/content/site/loginPage.edit.htm",AdminConstants.CANDIDATE_LOGIN_PAGE="CANDIDATE_LOGIN_PAGE",AdminConstants.LOGIN_PAGE="LoginPage",AdminConstants.WELCOME_EMAIL_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.welcomeemail",AdminConstants.WELCOME_EMAIL_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.welcomeemail.edit",AdminConstants.WELCOME_EMAIL_EDIT_STATE_URL=AdminConstants.CONTENT_MGMT_URL+"/welcomeemail/edit/:siteID/:ID",AdminConstants.WELCOME_EMAIL_EDIT_CONTROLLER="WelcomeEmailEditCtrl",AdminConstants.WELCOME_EMAIL_EDIT_VIEW="Spa/admin/content/site/welcomeEmail.edit.htm",AdminConstants.WELCOME_EMAIL_SORT="WelcomeEmailSort",AdminConstants.CONTRACT="Contract",AdminConstants.VIDEO_URL="/video",AdminConstants.CANDIDATE_VIDEOS="CANDIDATE_VIDEOS",AdminConstants.CANDIDATE_VIDEO="CANDIDATE_VIDEO",AdminConstants.VIDEO_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.video",AdminConstants.VIDEO_LIST_CONTROLLER="VideoCtrl",AdminConstants.VIDEO_LIST_VIEW="Spa/admin/video/video.list.htm",AdminConstants.VIDEO_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.video.edit",AdminConstants.VIDEO_EDIT_CONTROLLER="VideoEditCtrl",AdminConstants.VIDEO_EDIT_VIEW="Spa/admin/video/video.edit.htm",AdminConstants.ADMIN_VIDEO="Video",AdminConstants.VIDEO_URL_URL="video/GetVideoUrl",AdminConstants.PRIVACY_POLICY_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.PrivacyPolicy",AdminConstants.PRIVACY_POLICY_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.PrivacyPolicy.edit",AdminConstants.PRIVACY_POLICY_EDIT_STATE_URL=AdminConstants.CONTENT_MGMT_URL+"/PrivacyPolicy/edit/:siteID/:ID",AdminConstants.PRIVACY_POLICY_EDIT_CONTROLLER="PrivacyPolicyEditCtrl",AdminConstants.PRIVACY_POLICY_EDIT_VIEW="Spa/admin/content/site/PrivacyPolicy.edit.htm",AdminConstants.AUDIO_URL="/audio",AdminConstants.CANDIDATE_AUDIO="CANDIDATE_AUDIO",AdminConstants.AUDIO_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.audio",AdminConstants.AUDIO_LIST_CONTROLLER="AudioCtrl",AdminConstants.AUDIO_LIST_VIEW="Spa/admin/audio/audio.list.htm",AdminConstants.AUDIO_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.audio.edit",AdminConstants.AUDIO_EDIT_CONTROLLER="AudioEditCtrl",AdminConstants.AUDIO_EDIT_VIEW="Spa/admin/audio/audio.edit.htm",AdminConstants.ADMIN_AUDIO="Audio",AdminConstants.AUDIO_URL_URL="audio/GetAudioUrl",AdminConstants.PROGRAM_GROUP_URL="/programGroup",AdminConstants.CANDIDATE_PROGRAM_GROUP="CANDIDATE_PROGRAM_GROUP",AdminConstants.PROGRAM_GROUP_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.programGroup",AdminConstants.PROGRAM_GROUP_LIST_CONTROLLER="ProgramGroupCtrl",AdminConstants.PROGRAM_GROUP_LIST_VIEW="Spa/admin/programGroup/programGroup.list.htm",AdminConstants.PROGRAM_GROUP_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.programGroup.edit",AdminConstants.PROGRAM_GROUP_EDIT_CONTROLLER="ProgramGroupEditCtrl",AdminConstants.PROGRAM_GROUP_EDIT_VIEW="Spa/admin/programGroup/programGroup.edit.htm",AdminConstants.ADMIN_PROGRAM="ADMIN_PROGRAM",AdminConstants.PROGRAM_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.program",AdminConstants.PROGRAM_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".admin.program.edit",AdminConstants.DEVELOPME_ADMIN_STATE=DevelopMeConstants.DEVELOPME_CONTROLS+".admin",AdminConstants.DEVELOPME_CUSTOMERS="DEVELOPME_CUSTOMER",AdminConstants.DEVELOPME_ROADMAPS="DEVELOPME_ROADMAPS",AdminConstants.DEVELOPME_CUSTOMER="DevelopMeCustomer",AdminConstants.DEVELOPME_CUSTOMER_ROADMAP_SORT="CustomerRoadmapSort",AdminConstants.DEVELOPME_CUSTOMER_LIST_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".developmecustomer",AdminConstants.DEVELOPME_CUSTOMER_LIST_CONTROLLER="DevelopMeCustomerCtrl",AdminConstants.DEVELOPME_CUSTOMER_LIST_VIEW="Spa/admin/developme/developmecustomer.list.htm",AdminConstants.DEVELOPME_CUSTOMER_EDIT_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".developmecustomer.edit",AdminConstants.DEVELOPME_CUSTOMER_EDIT_CONTROLLER="DevelopMeCustomerEditCtrl",AdminConstants.DEVELOPME_CUSTOMER_EDIT_VIEW="Spa/admin/developme/developmecustomer.edit.htm",AdminConstants.DEVELOPME_ROADMAP_LIST_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".roadmap",AdminConstants.DEVELOPME_ROADMAP_LIST_CONTROLLER="RoadmapListCtrl",AdminConstants.DEVELOPME_ROADMAP_LIST_VIEW="Spa/admin/developme/roadmap.list.htm",AdminConstants.DEVELOPME_ROADMAP_EDIT_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".roadmap.edit",AdminConstants.DEVELOPME_ROADMAP_EDIT_CONTROLLER="RoadmapEditCtrl",AdminConstants.DEVELOPME_ROADMAP_EDIT_VIEW="Spa/admin/developme/roadmap.edit.htm",AdminConstants.CANDIDATE_CUSTOMER_ATTRIBUTE="CANDIDATE_CUSTOMER_ATTRIBUTE",AdminConstants.CANDIDATE_CUSTOMER_ATTRIBUTES="CANDIDATE_CUSTOMER_ATTRIBUTES",AdminConstants.CANDIDATE_CUSTOMER_ATTRIBUTE_OPTION="CANDIDATE_CUSTOMER_ATTRIBUTE_OPTION",AdminConstants.CUSTOMER_ATTRIBUTE_LIST_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".customerattribute",AdminConstants.CUSTOMER_ATTRIBUTE_LIST_CONTROLLER="CustomerAttributeCtrl",AdminConstants.CUSTOMER_ATTRIBUTE_LIST_VIEW="Spa/admin/attribute/customerAttribute.list.htm",AdminConstants.CUSTOMER_ATTRIBUTE_EDIT_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".customerattribute.edit",AdminConstants.CUSTOMER_ATTRIBUTE_EDIT_CONTROLLER="CustomerAttributeEditCtrl",AdminConstants.CUSTOMER_ATTRIBUTE_EDIT_VIEW="Spa/admin/attribute/customerAttribute.edit.htm",AdminConstants.CUSTOMER_ATTRIBUTE_OPTION_EDIT_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".customerattribute.edit.option",AdminConstants.CUSTOMER_ATTRIBUTE_OPTION_EDIT_CONTROLLER="CustomerAttributeOptionEditCtrl",AdminConstants.CUSTOMER_ATTRIBUTE_OPTION_EDIT_VIEW="Spa/admin/attribute/customerAttributeOption.edit.htm",AdminConstants.ASSESSMENT="Assessment",AdminConstants.EXPLOREJOB="ExploreJob",AdminConstants.DEVELOPME_JOBLEVEL_SORT="JobLevelSort",AdminConstants.DEVELOPME_EXPLOREJOB_LIST_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".explorejob",AdminConstants.DEVELOPME_EXPLOREJOB_LIST_CONTROLLER="ExploreJobListCtrl",AdminConstants.DEVELOPME_EXPLOREJOB_LIST_VIEW="Spa/admin/developme/exploreJobs/exploreJob.list.htm",AdminConstants.DEVELOPME_EXPLOREJOB_EDIT_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".explorejob.edit",AdminConstants.DEVELOPME_EXPLOREJOB_EDIT_CONTROLLER="ExploreJobEditCtrl",AdminConstants.DEVELOPME_EXPLOREJOB_EDIT_VIEW="Spa/admin/developme/exploreJobs/exploreJob.edit.htm",AdminConstants.DEVELOPME_JOBLEVEL_LIST_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".joblevel",AdminConstants.DEVELOPME_JOBLEVEL_LIST_CONTROLLER="JobLevelListCtrl",AdminConstants.DEVELOPME_JOBLEVEL_LIST_VIEW="Spa/admin/developme/exploreJobs/jobLevel.list.htm",AdminConstants.DEVELOPME_JOBLEVEL_EDIT_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".joblevel.edit",AdminConstants.DEVELOPME_JOBLEVEL_EDIT_CONTROLLER="JobLevelEditCtrl",AdminConstants.DEVELOPME_JOBLEVEL_EDIT_VIEW="Spa/admin/developme/exploreJobs/jobLevel.edit.htm",AdminConstants.DEVELOPME_JOBHIERARCHY_LIST_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".jobhierarchy",AdminConstants.DEVELOPME_JOBHIERARCHY_LIST_CONTROLLER="JobHierarchyListCtrl",AdminConstants.DEVELOPME_JOBHIERARCHY_LIST_VIEW="Spa/admin/developme/exploreJobs/jobHierarchy.list.htm",AdminConstants.DEVELOPME_JOBHIERARCHY_EDIT_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".jobhierarchy.edit",AdminConstants.DEVELOPME_JOBHIERARCHY_EDIT_CONTROLLER="JobHierarchyEditCtrl",AdminConstants.DEVELOPME_JOBHIERARCHY_EDIT_VIEW="Spa/admin/developme/exploreJobs/jobHierarchy.edit.htm",AdminConstants.DEVELOPME_CUSTOMERLANGUAGE_LIST_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".customerlanguage",AdminConstants.DEVELOPME_CUSTOMERLANGUAGE_LIST_CONTROLLER="CustomerLanguageListCtrl",AdminConstants.DEVELOPME_CUSTOMERLANGUAGE_LIST_VIEW="Spa/admin/developme/customerLanguages/customerLanguage.list.htm",AdminConstants.DEVELOPME_CUSTOMERLANGUAGE_EDIT_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".customerlanguage.edit",AdminConstants.DEVELOPME_CUSTOMERLANGUAGE_EDIT_CONTROLLER="CustomerLanguageEditCtrl",AdminConstants.DEVELOPME_CUSTOMERLANGUAGE_EDIT_VIEW="Spa/admin/developme/customerLanguages/customerLanguage.edit.htm",AdminConstants.DEVELOPME_JOB_LIST_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".job",AdminConstants.DEVELOPME_JOB_LIST_CONTROLLER="JobListCtrl",AdminConstants.DEVELOPME_JOB_LIST_VIEW="Spa/admin/developme/exploreJobs/job.list.htm",AdminConstants.DEVELOPME_JOB_EDIT_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".job.edit",AdminConstants.DEVELOPME_JOB_EDIT_CONTROLLER="JobEditCtrl",AdminConstants.DEVELOPME_JOB_EDIT_VIEW="Spa/admin/developme/exploreJobs/job.edit.htm",AdminConstants.DEVELOPME_EXPLORE_CATEGORY_SORT="exploreCategorySort",AdminConstants.EXPLORE_CATEGORY_LIST_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".exploreCategory",AdminConstants.EXPLORE_CATEGORY_EDIT_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".exploreCategory.edit",AdminConstants.EXPLORE_CATEGORY_EDIT_CONTROLLER="ExploreCategoryEditCtrl",AdminConstants.EXPLORE_CATEGORY_EDIT_VIEW="Spa/admin/developme/exploreCategory.edit.htm",AdminConstants.DEVELOPME_ZONE_SORT="ZoneSort",AdminConstants.DEVELOPME_ZONE_LIST_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".zone",AdminConstants.DEVELOPME_ZONE_EDIT_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".zone.edit",AdminConstants.DEVELOPME_ZONE_EDIT_STATE_URL="/zone/edit/:ID&roadmap=:roadmap",AdminConstants.DEVELOPME_ZONE_EDIT_CONTROLLER="ZoneEditCtrl",AdminConstants.DEVELOPME_ZONE_EDIT_VIEW="Spa/admin/developme/zone.edit.htm",AdminConstants.ROADMAP_CUSTOMER_ID="roadmapCustomerID",AdminConstants.DEVELOPME_INITIATIVE_ZONE_SORT="InitiativeZoneSort",AdminConstants.DEVELOPME_INITIATIVE_LIST_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".initiative",AdminConstants.DEVELOPME_INITIATIVE_LIST_CONTROLLER="InitiativeListCtrl",AdminConstants.DEVELOPME_INITIATIVE_LIST_VIEW="Spa/admin/developme/initiative.list.htm",AdminConstants.DEVELOPME_INITIATIVE_EDIT_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".initiative.edit",AdminConstants.DEVELOPME_INITIATIVE_EDIT_STATE_URL="/edit/:ID",AdminConstants.DEVELOPME_INITIATIVE_EDIT_CONTROLLER="InitiativeEditCtrl",AdminConstants.DEVELOPME_INITIATIVE_EDIT_VIEW="Spa/admin/developme/initiative.edit.htm",AdminConstants.DEVELOPME_ACTIONITEM_LIST_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".actionItem",AdminConstants.DEVELOPME_ACTIONITEM_EDIT_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".actionItem.edit",AdminConstants.DEVELOPME_ACTIONITEM_EDIT_URL="/edit/:ID",AdminConstants.DEVELOPME_ACTIONITEM_EDIT_CONTROLLER="ActionItemEditCtrl",AdminConstants.DEVELOPME_ACTIONITEM_EDIT_VIEW="Spa/admin/developme/actionItem.edit.htm",AdminConstants.DEVELOPME_INITIATIVE_ORGRESOURCE_LIST_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".initiative.orgResource",AdminConstants.DEVELOPME_INITIATIVE_ORGRESOURCE_EDIT_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".initiative.orgResource.edit",AdminConstants.DEVELOPME_INITIATIVE_ORGRESOURCE_EDIT_STATE_URL="/edit/:ID?initiativeID",AdminConstants.DEVELOPME_INITIATIVE_ORGRESOURCE_EDIT_CONTROLLER="InitiativeOrgResourceEditCtrl",AdminConstants.DEVELOPME_INITIATIVE_ORGRESOURCE_EDIT_VIEW="Spa/admin/developme/initiativeOrgResource.edit.htm",AdminConstants.SSO_LOG_LIST_STATE=NGenConstants.ROOT_CONTROLS+".admin.ssolog",AdminConstants.DEVELOPME_USERLOAD_INFO_LIST_STATE=AdminConstants.DEVELOPME_ADMIN_STATE+".useruploadinfo",AdminConstants.DEVELOPME_USERLOAD_INFO="DEVELOPME_USERLOAD_INFO",AdminConstants.DEVELOPME_USERLOAD_INFO_LIST_CONTROLLER="UserUploadInfoListCtrl",AdminConstants.DEVELOPME_USERLOAD_INFO_LIST_VIEW="/Spa/admin/userUpload/userUploadInfo.list.htm",AdminConstants.NGEN_TRANSLATIONS_REFRESHED="NGEN_TRANSLATIONS_REFRESHED",AdminConstants.NGEN_REFRESHTRANSLATIONS_ENDPOINT="Translation/RefreshTranslations",AdminConstants.NGEN_CONTENT_UPLOADING_MESSAGE="NGEN_CONTENT_UPLOADING_MESSAGE",AdminConstants.CMS_TRANSLATION_UPLOADING_MESSAGE="CMS_TRANSLATION_UPLOADING_MESSAGE",AdminConstants.SITE_UPDATE_ALT_HOME_SORT_ORDER_API_PATH="UpdateAltHomesSortOrder",AdminConstants.SITE_GET_HOME_PAGE_API_PATH="HomePage",AdminConstants.SITE_UPDATE_WELCOME_EMAIL_SORT_ORDER_API_PATH="UpdateWelcomeEmailsSortOrder",AdminConstants.SITE_GET_WELCOME_EMAIL_API_PATH="WelcomeEmail",AdminConstants.NGEN_SITE="",AdminConstants.NGEN_STATE='',AdminConstants.NGEN_TEMPLATE='',AdminConstants.NGEN_CONTENT='',AdminConstants.NGEN_BANNER='',AdminConstants.NGEN_STATIC_PAGES='',AdminConstants.NGEN_LOGIN_PAGES='',AdminConstants.NGEN_CONTENTACCES='',AdminConstants.DEVME_CUSTOMER='',AdminConstants.DEVME_ROADMAPS='',AdminConstants.NGEN_IMAGE='',AdminConstants.NGEN_FILE='',AdminConstants.NGEN_TAG='',AdminConstants.NGEN_TRANSLATIONSS='',AdminConstants.NGEN_RESOURCE_KEY='',AdminConstants.CANDIDATE_GOALS='',AdminConstants.NGEN_SUBJECT='',AdminConstants.CANDIDATE_BADGE='',AdminConstants.CANDIDATE_DYNAMIC_LINK='',AdminConstants.CANDIDATE_EMAIL_LOOKUPS='',AdminConstants.CANDIDATES_VIDEO='',AdminConstants.ADMIN_PROGRAMS='',AdminConstants.CANDIDATE_PROGRAM_GROUPS='',AdminConstants.CLOSING_ANCHOR="<\/a>",AdminConstants}(),function(ContentCategories){ContentCategories[ContentCategories.DashboardHeaderContent=48]="DashboardHeaderContent";ContentCategories[ContentCategories.AuthenticationPageMessage=49]="AuthenticationPageMessage";ContentCategories[ContentCategories.ExploreJobsFurtherDetailContent=50]="ExploreJobsFurtherDetailContent";ContentCategories[ContentCategories.JobDescriptionContent=51]="JobDescriptionContent"}(ContentCategories||(ContentCategories={}));var ToDoConstants=function(){function ToDoConstants(){}return ToDoConstants.TODO_MODULE="lhh.todo",ToDoConstants.TODO_STATE=NGenConstants.ROOT_CONTROLS+".todo",ToDoConstants.TODO_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".todo.edit",ToDoConstants.TODO_PATH_STATE=NGenConstants.ROOT_CONTROLS+".todopath",ToDoConstants.TODO_PATH_EDIT_STATE=NGenConstants.ROOT_CONTROLS+".todopath.edit",ToDoConstants.TODO_INITIATIVE_TEMPLATE_API_PATH="ToDoInitiativeTemplate",ToDoConstants.TODO_PATH_API_PATH="ToDoPath",ToDoConstants.TODO_PATH_BY_TODO_API_PATH="ToDoPathByToDo",ToDoConstants.TODO_INITIATIVE_API_PATH="InitiativeToDo",ToDoConstants.CANDIDATE_TODO_API_PATH="CandidateToDo",ToDoConstants.TODO_UPDATEUSERS="UpdateToDoForUsers/",ToDoConstants}(),CareerPathConstants=function(){function CareerPathConstants(){}return CareerPathConstants.CAREERPATH_MODULE="lhh.careerpath",CareerPathConstants.MYCAREER_STATE=NGenConstants.ROOT+".mycareer",CareerPathConstants.CAREERPATH_STATE=CareerPathConstants.MYCAREER_STATE+".careerpath",CareerPathConstants.CAREER_PATH_VIEW="/Spa/careerPath/pages/careerPath.htm",CareerPathConstants.CAREER_PATH_CONTROLLER="CareerPathCtrl",CareerPathConstants.COURSE_CARD_CONTROLLER="timeLineCourseCardDirectiveCtrl",CareerPathConstants.CAREER_PATH_DISPLAYNAME="Careerpath",CareerPathConstants.CRN_MYCAREER_STATE=NGenConstants.ROOT+".crnmycareer",CareerPathConstants.CRN_CAREERPATH_STATE=CareerPathConstants.CRN_MYCAREER_STATE+".careerpath",CareerPathConstants.CAREERPATH_TIMELINE_VIEW="/Spa/careerPath/directives/careerPathTimeLine.directive.htm",CareerPathConstants.CAREERPATHMS="CareerPathMS",CareerPathConstants.CAREERPATH_SKILLS_VIEW="/Spa/careerPath/directives/CareerPathSkills/careerPathSkills.htm",CareerPathConstants.TIMELINE_COURSE_CARD_VIEW="/Spa/careerPath/directives/TimeLineCourseCard/timeLineCourseCard.html",CareerPathConstants.SKILLS_MATCH_PERCENTAGE_ABOVE_AVERAGE=60,CareerPathConstants.SKILLS_MATCH_PERCENTAGE_BELOW_AVERAGE=40,CareerPathConstants.INVALID_CHARACTERS=["(",")","{","}","[","]",",","<",">","?","/","@","!","#","$","%","^","&","*",":","+","=","|","\\"],CareerPathConstants}(),DefaultConstants=function(){function DefaultConstants(){}return DefaultConstants.NEW_ID=-1,DefaultConstants.DEFAULT_PAGE_NUMBER=1,DefaultConstants.DEFAULT_PAGE_SIZE=10,DefaultConstants.DEFAULT_MAX_TEXT_LENGTH=50,DefaultConstants.DEFAULT_ROW_COUNT="DefaultRowCount",DefaultConstants.REPLY_PREFIX="RE: ",DefaultConstants.ELLIPSIS="...",DefaultConstants.DAY_SELECTOR_DRVCTRL="dayselectorDrvCtrl",DefaultConstants.DAY_VIEW_SHADED_CANVAS_LI_HEIGHT=32,DefaultConstants.DAY_VIEW_LINEAR_CANVAS_LI_HEIGHT=30.78,DefaultConstants.CANDIDATE_ATTENTION_STYLE_MIN_VALUE="CandidateAttentionStyleMinValue",DefaultConstants.CANDIDATE_ATTENTION_STYLE_MAX_VALUE="CandidateAttentionStyleMaxValue",DefaultConstants.CANDIDATE_SATISFACTORY_STYLE_MIN_VALUE="CandidateSatisfactoryStyleMinValue",DefaultConstants.CANDIDATE_SATISFACTORY_STYLE_MAX_VALUE="CandidateSatisfactoryStyleMaxValue",DefaultConstants.CANDIDATE_OUTPERFORMING_STYLE_MIN_VALUE="CandidateOutperformingStyleMinValue",DefaultConstants.CANDIDATE_OUTPERFORMING_STYLE_MAX_VALUE="CandidateOutperformingStyleMaxValue",DefaultConstants.EMAIL_MODAL_OPEN="EmailModalOpen",DefaultConstants.EMAIL_MODAL_OPEN_INACTIVE_CANDIDATE="EmailModalOpenInActiveCandidate",DefaultConstants.ADD_CANDIDATE_ACTIVITY_NOTIFICATION_LINK="AddCandidateActivityNotificationlink",DefaultConstants.EMAIL_READONLY_MODAL_OPEN="EmailReadonlyModalOpen",DefaultConstants.EMAIL_DECISION_MODAL_OPEN="EmailDecisionModalOpen",DefaultConstants.CANDIDATE_CARD_CTRL="candidateCardModalCtrl",DefaultConstants.CANDIDATE_ZERO_ATTENTION_STYLE_VALUE="0",DefaultConstants.CALENDAR_EVENT_DEFAULT_TIME_DURARION="CalendarEventDefaultTimeDuration",DefaultConstants.CALENDAR_START_TIME="CalendarStartTime",DefaultConstants.CALENDAR_END_TIME="CalendarEndTime",DefaultConstants.CALENDAR_EVENT_TYPE_REFRESH_INTERVAL="CalendarEventTypeRefreshInterval",DefaultConstants.CALENDAR_VENUE_TYPE_REFRESH_INTERVAL="CalendarVenueTypeRefreshInterval",DefaultConstants.CRONOFY_LANGUAGE_CODE_CZECH="cs",DefaultConstants.CRONOFY_LANGUAGE_CODE_WELSH="cy",DefaultConstants.CRONOFY_LANGUAGE_CODE_GERMAN="de",DefaultConstants.CRONOFY_LANGUAGE_CODE_FRENCH="fr",DefaultConstants.CRONOFY_LANGUAGE_CODE_DUTCH="nl",DefaultConstants.CRONOFY_LANGUAGE_CODE_PORTUGUESE="pt",DefaultConstants.CRONOFY_LANGUAGE_KEY_PORTUGUESE="pt-br",DefaultConstants.CRONOFY_LANGUAGE_CODE_SPANISH="es",DefaultConstants.CRONOFY_LANGUAGE_CODE_ITALIAN="it",DefaultConstants.CRONOFY_LANGUAGE_CODE_POLISH="pl",DefaultConstants.PNG="image/png",DefaultConstants.JPG="image/jpg",DefaultConstants.JPEG="image/jpeg",DefaultConstants.KB_1=1024,DefaultConstants.KB_256=256,DefaultConstants.MB_75=75,DefaultConstants.JWPLAYER_CAPTION_LOCALSTORAGE_KEY="jwplayer.captionLabel",DefaultConstants}(),FieldConstants=function(){function FieldConstants(){}return FieldConstants.NAME_PARAM="name",FieldConstants.MODAL_CONTENTTEXT_PARAM="contentText",FieldConstants.MODAL_CLOSEKEY_PARAM="closeKey",FieldConstants.MODAL_TITLEKEY_PARAM="titleKey",FieldConstants.MODAL_CATEGORY_PARAM="category",FieldConstants.MODAL_FILTER_CATEGORY_PARAM="filterCategories",FieldConstants.MODAL_CANDIDATE_PARAM="candidate",FieldConstants.MODAL_COLLEAGUE_PARAM="colleague",FieldConstants.MODAL_COLLEAGUE_ID_PARAM="ColleagueId",FieldConstants.MODAL_COLLEAGUE_ISVIRTUAL_PARAM="IsColleagueVirtual",FieldConstants.CATEGORY_FIELD="Category",FieldConstants.DATE_FIELD="Date",FieldConstants.DESCRIPTION_FIELD="Description",FieldConstants.ID_FIELD="Id",FieldConstants.COUNTRY_FIELD="Country",FieldConstants.LOCATION_FIELD="Location",FieldConstants.NAME_FIELD="Name",FieldConstants.LASTUPDATED_FIELD="LastUpdated",FieldConstants.CONTENTACCESS_KEY_FIELD="ContentKey",FieldConstants.NAME_KEY_FIELD="NameKey",FieldConstants.URL_FIELD="URL",FieldConstants.ON_CONTENT_CLONED="onContentCloned",FieldConstants.RESUME_BRANDING_UPLOAD_COLLEAGUE="ResumeBrandingUploadColleague",FieldConstants.CANDIDATE_DOWNLOAD_DTE_RESUME="CandidateDetail/DownloadCurrentResume",FieldConstants.CANDIDATE_GET_DTE_RESUME="CandidateDetail/GetCurrentResumeDetails",FieldConstants}(),Perms=function(){function Perms(){}return Perms.NGEN_VIEW=1,Perms.ADMIN_VIEW=2,Perms.LEARNING_VIEW=3,Perms.DELIVERY_VIEW=4,Perms.BILLING_VIEW=5,Perms.CONTENT_VIEW=100,Perms.CONTENT_EDIT=101,Perms.TRANSLATION_VIEW=102,Perms.TRANSLATION_EDIT=103,Perms.COURSE_VIEW=104,Perms.COURSE_EDIT=105,Perms.COURSE_ACTIVATE=1403,Perms.USER_VIEW=106,Perms.USER_EDIT=107,Perms.COMPANIES_VIEW=1342,Perms.COMPANIES_EDIT=1343,Perms.SETTING_VIEW=108,Perms.SETTING_EDIT=109,Perms.ROLE_VIEW=110,Perms.ROLE_EDIT=111,Perms.PERMISSION_VIEW=112,Perms.PERMISSION_EDIT=113,Perms.NOTIFICATION_VIEW=114,Perms.NOTIFICATION_EDIT=115,Perms.OPT_OUT_VIEW=116,Perms.OPT_OUT_EDIT=117,Perms.LANGUAGE_VIEW=118,Perms.LANGUAGE_EDIT=119,Perms.ACTIVITY_VIEW=120,Perms.ACTIVITY_EDIT=121,Perms.CURRICULUM_VIEW=122,Perms.CURRICULUM_EDIT=123,Perms.MILESTONE_VIEW=124,Perms.MILESTONE_EDIT=125,Perms.SESSION_VIEW=126,Perms.SESSION_EDIT=127,Perms.SESSION_REASSIGN=1406,Perms.CANDIDATE_VIEW=128,Perms.CANDIDATE_EDIT=129,Perms.ROSTER_PRINT=130,Perms.LOCATION_VIEW=131,Perms.LOCATION_EDIT=132,Perms.PROGRAM_VIEW=133,Perms.PROGRAM_EDIT=134,Perms.CANDIDATE_SESSION_SEARCH=135,Perms.COURSE_DELETE=136,Perms.SESSION_REGISTER=137,Perms.SESSION_UNREGISTER=138,Perms.SESSION_CANCEL=139,Perms.SESSION_CLONE=140,Perms.SESSION_SUBSTITUTE_HOST_EDIT=141,Perms.SESSION_SPECIAL_FIELDS_EDIT=142,Perms.SESSION_CLOSED_EDIT=143,Perms.SESSION_CLOSE_OPEN_EDIT=144,Perms.CORS_VIEW=145,Perms.CORS_EDIT=146,Perms.LEARNING_REPORT_VIEW=147,Perms.CANDIDATE_ACTIVITY_VIEW=148,Perms.CANDIDATE_ACTIVITY_EDIT=149,Perms.MESSAGING_VIEW=150,Perms.MESSAGING_EDIT=151,Perms.CANDIDATE_SEARCH=152,Perms.SUBJECT_VIEW=153,Perms.SUBJECT_EDIT=154,Perms.GOAL_VIEW=155,Perms.GOAL_EDIT=156,Perms.BANNER_VIEW=157,Perms.BANNER_EDIT=158,Perms.CONTROL_VIEW=159,Perms.CONTROL_EDIT=160,Perms.PAGE_VIEW=161,Perms.PAGE_EDIT=162,Perms.SITE_VIEW=163,Perms.SITE_EDIT=164,Perms.STATE_VIEW=165,Perms.STATE_EDIT=166,Perms.TEMPLATE_VIEW=167,Perms.TEMPLATE_EDIT=168,Perms.IMAGES_VIEW=169,Perms.IMAGES_EDIT=170,Perms.TAG_VIEW=171,Perms.TAG_EDIT=172,Perms.LANDING_VIEW=173,Perms.LANDING_EDIT=174,Perms.DASHBOARD_VIEW=175,Perms.DASHBOARD_EDIT=176,Perms.BADGE_VIEW=177,Perms.BADGE_EDIT=178,Perms.REDIRECT_VIEW=179,Perms.REDIRECT_EDIT=180,Perms.GOAL_PAGE_VIEW=181,Perms.SUBJECT_PAGE_VIEW=182,Perms.RATING_VIEW=183,Perms.RATING_EDIT=184,Perms.SEARCH_ALL_VIEW=185,Perms.CANDIDATE_HOME_VIEW=186,Perms.PAGE_CLONE=187,Perms.CANDIDATE_WELCOME_VIEW=188,Perms.CANDIDATE_PROFILE_VIEW=189,Perms.CANDIDATE_PROFILE_EDIT=190,Perms.DYNAMIC_LINK_VIEW=191,Perms.DYNAMIC_LINK_EDIT=192,Perms.CONTRACT_VIEW=193,Perms.CONTRACT_EDIT=194,Perms.DATASTORE_VIEW=195,Perms.DATASTORE_EDIT=196,Perms.LOGO_VIEW=197,Perms.LOGO_EDIT=198,Perms.EMAIL_LOOKUP_VIEW=199,Perms.EMAIL_LOOKUP_EDIT=200,Perms.ENGAGER_VIEW=201,Perms.ENGAGER_EDIT=202,Perms.VIDEO_VIEW=203,Perms.VIDEO_EDIT=204,Perms.BRANDING_VIEW=205,Perms.BRANDING_EDIT=206,Perms.BRANDING_UPLOAD_WP_RESUME=5313,Perms.BRANDING_CT_DOWNLOAD_ORIGINAL_RESUME=5314,Perms.BRANDING_DOWNLOAD_WP_RESUME=5315,Perms.BRANDING_VIEW_PROGRAM_DETAILS=5316,Perms.BRANDING_CT_CREATE_FIRST_RESUME_DRAFT=5317,Perms.BRANDING_CT_COMPLETE_FINAL_DRAFT=5318,Perms.BRANDING_CT_REMINDER_EMAIL=5319,Perms.BRANDING_CT_CREATE_ORBIT_MESSAGE=5320,Perms.BRANDING_REASSIGNMENTS=5321,Perms.BRANDING_RED_DOWNLOAD_ORIGINAL_REDEPLOYMENT_RESUME_FOR_REVIEW=5322,Perms.BRANDING_RED_COMPLETE_REDEPLOYMENT_RESUME_REVIEW=5323,Perms.STYLESHEET_VIEW=207,Perms.STYLESHEET_EDIT=208,Perms.FILE_VIEW=209,Perms.FILE_EDIT=210,Perms.DEVELOPME_CUSTOMER_VIEW=211,Perms.DEVELOPME_CUSTOMER_EDIT=212,Perms.ROADMAP_VIEW=213,Perms.ROADMAP_EDIT=214,Perms.ZONE_VIEW=215,Perms.ZONE_EDIT=216,Perms.ROADMAP_CLONE=217,Perms.INITIATIVE_VIEW=218,Perms.INITIATIVE_EDIT=219,Perms.INITIATIVE_ORGRESOURCE_VIEW=222,Perms.INITIATIVE_ORGRESOURCE_EDIT=223,Perms.PROGRAM_GROUP_VIEW=224,Perms.PROGRAM_GROUP_EDIT=225,Perms.COUNTRY_HOLIDAY_VIEW=226,Perms.COUNTRY_HOLIDAY_EDIT=227,Perms.ATTRIBUTE_VIEW=228,Perms.ATTRIBUTE_EDIT=229,Perms.INITIATIVE_CLONE=230,Perms.AUDIO_VIEW=231,Perms.AUDIO_EDIT=232,Perms.BRANDING_ADMIN_VIEW=233,Perms.BRANDING_ADMIN_EDIT=234,Perms.TEMP_OFC_MYPROFILE=1244,Perms.TEXTKERNEL_SUBMIT_VIEW=235,Perms.TEXTKERNEL_SUBMIT_EDIT=236,Perms.JOBLEVEL_VIEW=235,Perms.JOBLEVEL_EDIT=236,Perms.EXPLOREJOB_VIEW=237,Perms.EXPLOREJOB_EDIT=238,Perms.JOBHIERARCHY_VIEW=239,Perms.JOBHIERARCHY_EDIT=240,Perms.JOB_VIEW=241,Perms.JOB_EDIT=242,Perms.CUSTOMERLANGUAGE_VIEW=243,Perms.CUSTOMERLANGUAGE_EDIT=244,Perms.SSOLOG_VIEW=245,Perms.SSOLOG_EDIT=246,Perms.CANDIDATE_DTE_PROFILE=247,Perms.USERUPLOADINFO_VIEW=248,Perms.USERUPLOADINFO_EDIT=249,Perms.USER_MANAGE_PROFILE=250,Perms.COLLEAGUE_EDIT=251,Perms.COLLEAGUE_COUNTRY_ACCESS_EDIT=252,Perms.COLLEAGUE_OFFICE_ACCESS_EDIT=253,Perms.CONTENTACCESS_VIEW=254,Perms.CONTENTACCESS_EDIT=255,Perms.CONSULTANT_MESSAGING_VIEW=256,Perms.CONSULTANT_MESSAGING_EDIT=257,Perms.TRANSITION_QUEUE_VIEW=258,Perms.TRANSITION_QUEUE_EDIT=259,Perms.SCHEDULED_QUEUE_VIEW=1404,Perms.QUEUES_STATUS_PENDING=1317,Perms.QUEUES_SHOW_SCHEDULE=1322,Perms.CONSULTANT_SETTINGS_VIEW=260,Perms.CONSULTANT_SETTINGS_EDIT=261,Perms.CONSULTANT_HELP_VIEW=262,Perms.CONSULTANT_HELP_EDIT=263,Perms.EMAILENGAGEMENT_VIEW=266,Perms.EMAILENGAGEMENT_EDIT=267,Perms.CONTENT_CLONE=268,Perms.CANDIDATE_ADVANCED_SEARCH_STATE=270,Perms.STATUS_REASON_FILTER=1233,Perms.CANDIDATE_EDIT_ADMIN=1243,Perms.TODO_VIEW=269,Perms.TODO_EDIT=270,Perms.CANDIDATESEARCH_OFFICE_CANDIDATES_DELIVERY=1245,Perms.CANDIDATESEARCH_PHONE_ACCESS=1292,Perms.CANDIDATESEARCH__EMAIL_ACCESS=1293,Perms.USERS_PROFILE_STATUS_CHANGE=1252,Perms.CALENDAR_VIEW=264,Perms.CALENDAR_EVENT_VIEW=1262,Perms.CALENDAR_EVENT_EDIT=1263,Perms.CALENDAR_EVENT_REMOVE=1264,Perms.CALENDAR_EVENT_ADD=1265,Perms.CALENDAR_EVENT_ADD_FOR_OTHERS=5261,Perms.CALENDAR_EVENT_EDIT_FOR_OTHERS=5262,Perms.CALENDAR_SMART_SCHEDULE=1266,Perms.CALENDAR_DEFAULT_TIME_ADD=1289,Perms.CALENDAR_EVENT_REMOVE_FOR_OTHERS=5263,Perms.CANDIDATE_SITE_SETTINGS_VIEW=1272,Perms.CANDIDATE_SITE_SETTINGS_EDIT=1273,Perms.COLLEAGUE_LANGUAGE_VIEW=1270,Perms.COLLEAGUE_LANGUAGE_EDIT=1271,Perms.CANDIDATE_ACTIVITY_UPDATE_COST_CENTER=1269,Perms.USERS_COLLEAGUE_BILLING_VIEW=1278,Perms.USERS_COLLEAGUE_BILLING_ADD=1276,Perms.USERS_COLLEAGUE_BILLING_EDIT=1277,Perms.USERS_CANDIDATEPROFILE_ACCESS_PROFILE=1279,Perms.USERS_CANDIDATEPROFILE_ACCESS_PROGRAM=1280,Perms.USERS_CANDIDATEPROFILE_ACCESS_STATUS_SUMMARY=1281,Perms.USERS_CANDIDATEPROFILE_ACCESS_RESUME=1282,Perms.USERS_CANDIDATEPROFILE_ACCESS_ACTIVITY=1283,Perms.USERS_CANDIDATEPROFILE_ACCESS_MESSAGES=1284,Perms.USERS_CANDIDATEPROFILE_ACCESS_SURVEYS_DETAILS=1285,Perms.USERS_CANDIDATEPROFILE_ACCESS_BASIC_INFO=1286,Perms.USERS_CANDIDATEPROFILE_ACCESS_ADVANCE_INFO=1287,Perms.USERS_CANDIDATEPROFILE_ACCESS_ALUMNI=1288,Perms.USERS_CANDIDATEPROFILE_ACCESS_TRANSITION_INFO=1290,Perms.USERS_CANDIDATE_SEARCH_COUNTRY=1275,Perms.USERS_CANDIDATEPROFILE_ALTEDIA_FORM_VIEW_REPORT=1291,Perms.USERS_CANDIDATEPROFILE_ACCESS_DOCUMENT=1315,Perms.USERS_CANDIDATE_ACCESS_DELIVERY_COLLEAGUE=1248,Perms.USERS_CANDIDATE_ACCESS_ENGAGEMENT_COLLEAGUE=1249,Perms.USERS_CANDIDATE_ACCESS_BRANDING_COLLEAGUE=1250,Perms.USERS_CANDIDATE_ACCESS_DELIVERY_COLLEAGUE_OTHER=1318,Perms.USERS_CANDIDATE_ACCESS_ENGAGEMENT_COLLEAGUE_OTHER=1319,Perms.USERS_CANDIDATE_ACCESS_BRANDING_COLLEAGUE_OTHER=1320,Perms.FRANCE_COUNTRY_CODE=19,Perms.USERS_CANDIDATE_TRAINING_REPORT_ADD=1294,Perms.USERS_CANDIDATE_TRAINING_REPORT_VIEW=1301,Perms.USERS_CANDIDATE_TRAINING_REPORT_EDIT=1307,Perms.USERS_CANDIDATE_TRAINING_REPORT_DELETE=1308,Perms.USERS_CANDIDATE_ENTERPRENEUR_REPORT_ADD=1297,Perms.USERS_CANDIDATE_ENTERPRENEUR_REPORT_VIEW=1302,Perms.USERS_CANDIDATE_ENTREPRENEUR_REPORT_EDIT=1314,Perms.USERS_CANDIDATE_EDUCATION_REPORT_ADD=1296,Perms.USERS_CANDIDATE_EDUCATION_REPORT_VIEW=1303,Perms.USERS_CANDIDATE_EDUCATION_REPORT_DELETE=1312,Perms.USERS_CANDIDATE_EDUCATION_REPORT_EDIT=1313,Perms.USERS_CANDIDATE_PROFESSIONAL_EXPERIENCE_REPORT_ADD=1295,Perms.USERS_CANDIDATE_PROFESSIONAL_EXPERIENCE_REPORT_VIEW=1300,Perms.USERS_CANDIDATE_PROFESSIONAL_EXPERIENCE_REPORT_EDIT=1304,Perms.USERS_CANDIDATE_PROFESSIONAL_EXPERIENCE_REPORT_DELETE=1305,Perms.USERS_CANDIDATE_DESIRED_JOB_REPORT_VIEW=1298,Perms.USERS_CANDIDATE_DESIRED_JOB_REPORT_ADD=1299,Perms.USERS_CANDIDATE_DESIRED_JOB_REPORT_DELETE=1309,Perms.USERS_CANDIDATE_RECLASSIFICATION_REPORT_ADD=1324,Perms.USERS_CANDIDATE_RECLASSIFICATION_REPORT_VIEW=1325,Perms.USERS_CANDIDATE_RECLASSIFICATION_REPORT_EDIT=1327,Perms.USERS_CANDIDATE_RECLASSIFICATION_REPORT_DELETE=1329,Perms.USERS_CANDIDATE_NETWORK_JOBS_REPORT_ADD=1310,Perms.USERS_CANDIDATE_NETWORK_JOBS_REPORT_VIEW=1316,Perms.USERS_CANDIDATE_NETWORK_JOBS_REPORT_EDIT=1326,Perms.USERS_CANDIDATE_NETWORK_JOBS_REPORT_DELETE=1328,Perms.USERS_CANDIDATE_DESIRED_JOB_REPORT_EDIT=1311,Perms.USERS_CANDIDATE_JOB_TRACKING_VIEW=1306,Perms.USERS_CANDIDATE__JOB_TRACKING_OVE_ACCESS=1323,Perms.CANDIDATE_ADVANCE_SEARCH=1321,Perms.CANDIDATE_EDIT_JSWTFACILITATOR=1330,Perms.ALTEDIA_SANOFI_ADD=1333,Perms.REPORTS_ORBIT_VIEW=1335,Perms.ALTEDIA_SANOFI_VIEW=1334,Perms.ALTEDIA_SANOFI_EDIT=1337,Perms.ALTEDIA_SANOFI_DELETE=1336,Perms.VIEW_ALTEDIA_TEMPLATES=1338,Perms.CANDIDATE_EDIT_ELIGIBILITY_EXPIRATION_DATE=1339,Perms.CMS_BANNER_ADMIN_VIEW=1400,Perms.CMS_BANNER_ADMIN_EDIT=1401,Perms.ALUMNI_CRN_DATES_EDIT=1402,Perms.GOAL_ADD=5005,Perms.UPDATE_CANDIDATE_PROGRAM_BY_COLLEAGUE=5007,Perms.MARKETING_COMMUNICATIONS_VIEW=5008,Perms.MARKETING_COMMUNICATIONS_EDIT=5009,Perms.TODOS_COLLEAGUE_VIEW=5011,Perms.TODOS_COLLEAGUE_ADD=5012,Perms.TODOS_COLLEAGUE_EDIT=5013,Perms.TODOS_COLLEGUE_DELETE=5014,Perms.VIEW_TEAMS=5016,Perms.EDIT_TEAMS=5017,Perms.VIEW_TEAM_MEMBERS=5018,Perms.EDIT_TEAM_MEMBERS=5019,Perms.VIEW_MANAGE_AVAILABILITY=5201,Perms.EDIT_MANAGE_AVAILABILITY=5202,Perms.USERS_COLLEAGUE_PROFILE_LANGUAGE_VIEW=5023,Perms.USERS_COLLEAGUE_PROFILE_TIMEZONE_VIEW=5025,Perms.USERS_COLLEAGUE_PROFILE_LANGUAGE_EDIT=5024,Perms.USERS_COLLEAGUE_PROFILE_TIMEZONE_EDIT=5026,Perms.USERS_COLLEAGUE_PROFILE_DETAILS_VIEW=5101,Perms.USERS_COLLEAGUE_PROFILE_PROFILE_TAB_VIEW=5102,Perms.USERS_COLLEAGUE_PROFILE_PROFILE_TAB_EDIT=5103,Perms.USERS_COLLEAGUE_PROFILE_BIO_VIEW=1340,Perms.USERS_COLLEAGUE_PROFILE_BIO_EDIT=1341,Perms.USERS_COLLEAGUE_PROFILE_IND_DELIVERY_TIME_TAB_VIEW=5106,Perms.USERS_COLLEAGUE_PROFILE_IND_DELIVERY_TIME_TAB_EDIT=5107,Perms.USERS_COLLEAGUE_PROFILE_OTHER_DELIVERY_TIME_TAB_VIEW=5108,Perms.USERS_COLLEAGUE_PROFILE_OTHER_DELIVERY_TIME_TAB_EDIT=5109,Perms.USERS_COLLEAGUE_PROFILE_MESSAGES_TAB_VIEW=5110,Perms.USERS_COLLEAGUE_PROFILE_MESSAGES_TAB_EDIT=5111,Perms.USERS_COLLEAGUE_PROFILE_SETTINGS_TAB_VIEW=5112,Perms.USERS_COLLEAGUE_PROFILE_SETTINGS_TAB_EDIT=5113,Perms.USERS_COLLEAGUE_PROFILE_AVAILABILITY_TAB_VIEW=5114,Perms.USERS_COLLEAGUE_PROFILE_AVAILABILITY_TAB_EDIT=5115,Perms.USERS_COLLEAGUE_PROFILE_CONSULTANCY_FOCUS_VIEW=5116,Perms.USERS_COLLEAGUE_PROFILE_CONSULTANCY_FOCUS_EDIT=1405,Perms.USERS_COLLEAGUE_PROFILE_SUPPORTED_CONTRACTS_VIEW=5117,Perms.USERS_COLLEAGUE_PROFILE_SUPPORTED_CONTRACTS_EDIT=5010,Perms.USERS_COLLEAGUE_PROFILE_CRONOFY_SYNC_VIEW=5118,Perms.USERS_COLLEAGUE_PROFILE_CRONOFY_SYNC_EDIT=1255,Perms.USERS_COLLEAGUE_PROFILE_ROLES_TAB_VIEW=5119,Perms.USERS_COLLEAGUE_PROFILE_ROLES_TAB_EDIT=5120,Perms.USERS_COLLEAGUE_PROFILE_CALENDAR_TAB_VIEW=5121,Perms.NGEN_SYNC_ADDITIONAL_CALENDAR=5252,Perms.ALLOW_COMPANY_TO_SHOW_HIDE_TO_BE_MENTOR=5310,Perms.VIEW_SURVEY=5301,Perms.EDIT_SURVEY=5303,Perms.CANDIDATE_SHARE_PERMISSION=5312,Perms}(),PageConstants=function(){function PageConstants(){}return PageConstants.CONTENT_MODAL_VIEW="Spa/shared/pages/modals/content.modal.htm",PageConstants.CLONE_CONTENT_MODAL_VIEW="Spa/shared/pages/modals/content/cloneContent.modal.htm",PageConstants.ROLE_SEARCH_MODAL_VIEW="Spa/shared/pages/modals/search/roleSearch.modal.htm",PageConstants.CONSULTANT_MODAL_VIEW="Spa/users/colleague/modals/consultantProfile.htm",PageConstants.CONSULTANT_MODAL_CONTROLLER="consultantProfile.ctrl",PageConstants.DAY_SELECTOR_DRVCTRL="dayselectorDrvCtrl",PageConstants.DAY_SELECTOR_DRV="daySelector",PageConstants.LENGTH_50_FOR_USER=50,PageConstants.LENGTH_1000_FOR_USER=1e3,PageConstants.LENGTH_2000_FOR_USER=2e3,PageConstants.LENGTH_255_FOR_USER=255,PageConstants.CANDIDATE_ACTIVITY_SORT_ORDER="SortOrder",PageConstants}(),ResourceKeyConstants=function(){function ResourceKeyConstants(){}return ResourceKeyConstants.BRANDING_BRANDING="BRANDING_BRANDING",ResourceKeyConstants.DELIVERY_CANDIDATE="DELIVERY_CANDIDATE",ResourceKeyConstants.DELIVERY_DELIVERY="DELIVERY_DELIVERY",ResourceKeyConstants.ENGAGE_ENGAGEMENT="ENGAGE_ENGAGEMENT",ResourceKeyConstants.NGEN_ADVANCED_SEARCH="NGEN_ADVANCED_SEARCH",ResourceKeyConstants.NGEN_CANCEL="NGEN_CANCEL",ResourceKeyConstants.NGEN_CATEGORY="NGEN_CATEGORY",ResourceKeyConstants.NGEN_CLICK_FOR_DETAILS="NGEN_CLICK_FOR_DETAILS",ResourceKeyConstants.NGEN_CLOSE="NGEN_CLOSE",ResourceKeyConstants.NGEN_DATE="NGEN_DATE",ResourceKeyConstants.NGEN_ERROR="NGEN_ERROR",ResourceKeyConstants.NGEN_FAILED_TO="NGEN_FAILED_TO",ResourceKeyConstants.NGEN_ID="NGEN_ID",ResourceKeyConstants.NGEN_NAME="NGEN_NAME",ResourceKeyConstants.NGEN_CONTENTKEY=" NGEN_CONTENTKEY",ResourceKeyConstants.NGEN_LAST_UPDATED="NGEN_LAST_UPDATED",ResourceKeyConstants.NGEN_NAME_EXISTS="NGEN_NAME_EXISTS",ResourceKeyConstants.NGEN_COUNTRY="NGEN_COUNTRY",ResourceKeyConstants.CONTENTACCESS_KEY="CONTENTACCESS_KEY",ResourceKeyConstants.NGEN_DESCRIPTION="NGEN_DESCRIPTION",ResourceKeyConstants.TODO_URL="TODO_URL",ResourceKeyConstants.CALENDAR_CRONOFY_EVENT_TITLE="CALENDAR_CRONOFY_EVENT_TITLE",ResourceKeyConstants.ACTIVITIES_INACTIVE_CANDIDATE_CONSULTANT_MEETING_WARNING="ACTIVITIES_INACTIVE_CANDIDATE_CONSULTANT_MEETING_WARNING",ResourceKeyConstants.ACTIVITIES_BULK_EVENT_INACTIVE_CANDIDATES_REACTIVATION_WANRING="ACTIVITIES_BULK_EVENT_INACTIVE_CANDIDATES_REACTIVATION_WANRING",ResourceKeyConstants.USERS_COLLEAGUE_BILLING_RATE_UPDATE_WARNING="USERS_COLLEAGUE_BILLING_RATE_UPDATE_WARNING",ResourceKeyConstants.ACTIVITIES_BULK_LOB_ERROR_MSG="ACTIVITIES_BULK_LOB_ERROR_MSG",ResourceKeyConstants.ACTIVITIES_BULK_COUNTRIES_ERROR_MSG="ACTIVITIES_BULK_COUNTRIES_ERROR_MSG",ResourceKeyConstants.NGEN_OK="NGEN_OK",ResourceKeyConstants.USERS_MYPROFILE_PHOTO_REMOVE_CONFIRMATION="USERS_MYPROFILE_PHOTO_REMOVE_CONFIRMATION",ResourceKeyConstants.CANDIDATE_EVENT_FILTER_TODAY="CANDIDATE_EVENT_FILTER_TODAY",ResourceKeyConstants.CANDIDATE_EVENT_FILTER_NEXT_FOURTEEN_DAY="CANDIDATE_EVENT_FILTER_NEXT_FOURTEEN_DAY",ResourceKeyConstants.CANDIDATE_EVENT_FILTER_NEXT_THIRTY_DAY="CANDIDATE_EVENT_FILTER_NEXT_THIRTY_DAY",ResourceKeyConstants.CANDIDATE_EVENT_FILTER_NEXT_60_DAYS="CANDIDATE_EVENT_FILTER_NEXT_60_DAYS",ResourceKeyConstants.CANDIDATE_LIVE_EVENT_ALL_LOCATION_TYPES="CANDIDATE_LIVE_EVENT_ALL_LOCATION_TYPES",ResourceKeyConstants.CANDIDATE_LIVE_EVENT_ONLINE_ONLY="CANDIDATE_LIVE_EVENT_ONLINE_ONLY",ResourceKeyConstants.CANDIDATE_LIVE_EVENT_LOCAL_ONLY="CANDIDATE_LIVE_EVENT_LOCAL_ONLY",ResourceKeyConstants.CANDIDATE_LIVE_EVENT_OPEN_SEATS_ONLY="CANDIDATE_LIVE_EVENT_OPEN_SEATS_ONLY",ResourceKeyConstants.CANDIDATE_LIVE_EVENT_ALL_SEAT_ONLY="CANDIDATE_LIVE_EVENT_ALL_SEAT_ONLY",ResourceKeyConstants.ACTIVITIES_INACTIVE_CANDIDATE_COACH_MEETING_WARNING="ACTIVITIES_INACTIVE_CANDIDATE_COACH_MEETING_WARNING",ResourceKeyConstants}(),ServiceConstants=function(){function ServiceConstants(){}return ServiceConstants.CONSULTANT_SURVEY_MS="SurveysMS",ServiceConstants.SCOPE="$scope",ServiceConstants.ROOT_SCOPE="$rootScope",ServiceConstants.ROUTE_PARAMS="$routeParams",ServiceConstants.STATE="$state",ServiceConstants.STATE_PARAMS="$stateParams",ServiceConstants.STATE_PROVIDER="$stateProvider",ServiceConstants.ISCE_SERVICE="$sce",ServiceConstants.Q_SERVICE="$q",ServiceConstants.COMPILE="$compile",ServiceConstants.MODAL="$modal",ServiceConstants.MODAL_INSTANCE="$modalInstance",ServiceConstants.MODAL_STACK="$modalStack",ServiceConstants.RESTANGULAR_MODULE="restangular",ServiceConstants.RESTANGULAR="Restangular",ServiceConstants.RESTANGULAR_PROVIDER="RestangularProvider",ServiceConstants.TRANSLATE_MANAGER="TranslateManager",ServiceConstants.CONTENT_ACCESS="ContentAccess",ServiceConstants.CHECK_NEW_CONTENTACCESS_CONTENTKEY="ContentAccess/CheckNewContentKey",ServiceConstants.EMAILENGAGEMENT_CHECK_NEW_NAME="/CheckNewName",ServiceConstants.EMAILENGAGEMENT_CLONE="/Clone",ServiceConstants.CONTENT_CATEGORY_GET_ID="ContentCategory/GetIDByName",ServiceConstants.CONTENT_ACCESS_CATEGORY="ContentAccessCategories",ServiceConstants.CONTENT="Content",ServiceConstants.USER="User",ServiceConstants.CANDIDATE="Candidate",ServiceConstants.COLLEAGUE="Colleague",ServiceConstants.CANDIDATE_JOB_PROFILE="CandidateJobProfile",ServiceConstants.STATUS_REASON="StatusReason",ServiceConstants.UNBILLED_FEES="UnbilledFees",ServiceConstants.ALUMNI="Alumni",ServiceConstants.CANDIDATE_FINANCE="CandidateFinance",ServiceConstants.CANDIDATE_TRAINING="CandidateTraining",ServiceConstants.CANDIDATE_EDUCATION="CandidateEducation",ServiceConstants.DESIRED_JOB="DesiredJob",ServiceConstants.RECLASSIFICATION="Reclassification",ServiceConstants.SANOFI="Sanofi",ServiceConstants.ALTEDIA="Altedia",ServiceConstants.PROGRAMSENTIMENT="ProgramSentiment",ServiceConstants.JOBTRACKING="JobTracking",ServiceConstants.COLLEAGUE_ACTIVITY="ColleagueActivity",ServiceConstants.COLLEAGUE_SIGNATURE="ColleagueSignature",ServiceConstants.CANDIDATE_DOCUMENT="CandidateDocument",ServiceConstants.PROGRAM_DATA="CandidateProgram",ServiceConstants.CONTRACT_PROGRAM="ContractProgram",ServiceConstants.Email="Email",ServiceConstants.USER_CONTENT_ACCESS="UserContentAccess",ServiceConstants.CANDIDATE_ACTIVITY="CandidateActivity",ServiceConstants.CANDIDATE_MAIL_DEFAULT="SendDefaultEngagementEmail",ServiceConstants.CANDIDATE_MAIL_INSTASTART="SendInstaStartEngagementEmail",ServiceConstants.CANDIDATE_MAIL_FUTURESTART="SendFutureStartEngagementEmail",ServiceConstants.CANDIDATE_SEARCH="CandidateSearch",ServiceConstants.CANDIDATE_LANDING="CandidateLanding",ServiceConstants.COLLEAGUE_OFFICE="ColleagueOffice",ServiceConstants.CONSULTANT_SURVEY="ConsultantSurvey",ServiceConstants.PROFESSIONAL_EXPERIENCE="ProfessionalExperience",ServiceConstants.ENTREPRENEUR="Entrepreneur",ServiceConstants.NETWORK_JOBS="NetworkJobs",ServiceConstants.BULK_ASSIGN_CANDIDATE="BulkAssignCandidate",ServiceConstants.ToDos="Todo",ServiceConstants.CONTRACT="Contract",ServiceConstants.ACTIVITYTYPE="ActivityType",ServiceConstants.NOTIFICATIONMETHOD="NotificationMethod",ServiceConstants.OUTREACHSHEDULETYPE="OutreachScheduleType",ServiceConstants.CANDIDATEENGAGEMENTEMAIL="CandidateEngagementEmail",ServiceConstants.CADIDATE_OUTREACH="CandidateOutreach",ServiceConstants.CANDIDATE_OUTREACH_ADD="AddCandidateOutreach",ServiceConstants.CANDIDATE_CREATE_BULK_OUTREACH="Candidate/CandidateBulkCreateOutreach",ServiceConstants.COUNTRY="Country",ServiceConstants.COMPANY="Company",ServiceConstants.COMPANIES="Companies",ServiceConstants.CALENDAR_INVITE="CalendarInvite",ServiceConstants.EMAIL_TYPE="EmailType",ServiceConstants.INITIATIVE="Initiative",ServiceConstants.TODO="ToDo",ServiceConstants.ACTION="Action",ServiceConstants.INITIATIVE_ORG_RESOURCE="InitiativeOrgResource",ServiceConstants.INITIATIVE_PROGRESS="InitiativeProgress",ServiceConstants.RESOURCEKEY="ResourceKey",ServiceConstants.TIMEZONE="TimeZone",ServiceConstants.TIMEZONE_RESOURCE_KEY="/GetTimeZoneResourceKey/",ServiceConstants.TAG="Tag",ServiceConstants.SUBJECT="Subject",ServiceConstants.IMAGE_FILE="ImageFile",ServiceConstants.AUDIO="Audio",ServiceConstants.VIDEO="Video",ServiceConstants.VIDEO_CATEGORY="VideoCategories",ServiceConstants.VIDEO_CATEGORY_GET_ID="VideoCategories/GetIdByName",ServiceConstants.TIMEZONE_ABBR_RESOURCE_KEY="/TimezoneAbbrResourceKey/",ServiceConstants.PROGRAM="Program",ServiceConstants.PROGRAM_GROUP="ProgramGroup",ServiceConstants.CURRICULUM="Curricula",ServiceConstants.RESUME="Resume",ServiceConstants.COURSE="Course",ServiceConstants.MESSAGING="Messaging",ServiceConstants.MESSAGING_RECIPIENT="MessagingRecipient",ServiceConstants.EMAIL_LOOKUP="EmailLookup",ServiceConstants.GEOLOCATION="GeoLocation",ServiceConstants.OFFICE="Office",ServiceConstants.SSO_SERVICE_PROVIDER="SSOServiceProvider",ServiceConstants.SSO_SERVICE_PROVIDER_REDIRECT_BADGE=ServiceConstants.SSO_SERVICE_PROVIDER+"/GetSSOServiceProviderRedirectBadge",ServiceConstants.ROLE="Role",ServiceConstants.ROLESFORUSER="RolesForUser",ServiceConstants.LOAD_ROLES_AND_PERMISSIONS="RolesAndPermissionsForUser",ServiceConstants.CHECK_NEW_ROLE_NAME="Role/CheckNewName",ServiceConstants.GET_ASSIGNED_USERS_COUNT="GetUserCountWithRole",ServiceConstants.ROLES_AND_PERMISSIONS="RolesAndPermissions",ServiceConstants.PERMISSION="Permission",ServiceConstants.KEYWORD="Keyword",ServiceConstants.JOB_SENIORITY="JobSeniority",ServiceConstants.JOB_LEVEL_MS="JoblevelMS",ServiceConstants.JOB_INDUSTRY="JobIndustry",ServiceConstants.JOB_INDUSTRY_MS="JobIndustryMS",ServiceConstants.JOB_FUNCTION="JobFunction",ServiceConstants.TALENT_PROFILE_MICROSERVICE_API_PATH="TalentProfileMS",ServiceConstants.LOCALES_MICROSERVICE_API_PATH="LocalesMS",ServiceConstants.JOB_FUNCTION_MS="JobFunctionMS",ServiceConstants.JOB_MS="JobMS",ServiceConstants.APPUSERROLE="AppUserRole",ServiceConstants.ADD_APPUSERROLE="AddAppUserRole",ServiceConstants.DELETE_APPUSERROLE="DeleteAppUserRole",ServiceConstants.PERMISSIONS_FOR_USER="PermissionsForUser",ServiceConstants.ADD_PERMISSION_TO_ROLE="AddPermissionToRole",ServiceConstants.REMOVE_PERMISSION_FROM_ROLE="RemovePermissionFromRole",ServiceConstants.COLLEAGUE_UPDATE_COUNTRYACCESS="/UpdateCountryAccess",ServiceConstants.COLLEAGUE_UPDATE_OFFICEACCESSS="/UpdateOfficeAccess",ServiceConstants.COLLEAGUE_UPDATE_LANGUAGEACCESSS="/UpdateColleagueLanguageAccess",ServiceConstants.COLLEAGUE_GET_COUNTRYACCESSS="/GetCountryAccess",ServiceConstants.COLLEAGUE_GET_ALL_COLLEAGUE_COUNTRYACCESSS="/GetAllColleagueCountryAccess",ServiceConstants.COLLEAGUE_GET_COLLEAGUE_COUNTRY="/GetColleagueCountry",ServiceConstants.COLLEAGUE_GET_OFFICESACCESSS="/GetOfficesAccess",ServiceConstants.COLLEAGUE_GET_LANGUAGES="ColleagueLanguage",ServiceConstants.USER_GET_USERS="/GetUsers",ServiceConstants.SITE="/Site",ServiceConstants.HOME_BANNER="/HomeBanner",ServiceConstants.GOALS="/Goal",ServiceConstants.ROADMAP="/Roadmap",ServiceConstants.EXPLORE_CATEGORY="/ExploreCategory",ServiceConstants.INITIATIVES="/Initiatives",ServiceConstants.SITETYPE="/SiteType",ServiceConstants.TEMPLATE="Template",ServiceConstants.CHECK_NEW_NAME="/CheckNewName",ServiceConstants.CLONE="/Clone",ServiceConstants.LANGUAGE="Language",ServiceConstants.CANDIDATE_ACTIVITY_TOPIC="CandidateActivityTopic",ServiceConstants.LOGIN_HISTORY="LoginHistory",ServiceConstants.CANDIDATE_ACTIVITY_SERVICE="CandidateActivityType",ServiceConstants.CANDIDATE_ACTIVITY_METHOD_SERVICE="CandidateActivityMethod",ServiceConstants.ACCOUNT="Account",ServiceConstants.CALENDAR="CalendarEvent",ServiceConstants.COLLEAGUEAVAILABILITY="ColleagueAvailability",ServiceConstants.CALENDARVENUETYPE="CalendarVenueType",ServiceConstants.CALENDAREVENTTYPE="CalendarEventType",ServiceConstants.CALENDAR_COUNTRY_DAY_SCHEDULE="CalendarCountryDaySchedule",ServiceConstants.CRONOFYUSER="CronofyUser",ServiceConstants.CRONOFYEVENT="CronofyNewEvent",ServiceConstants.COLLEAGUE_ACTIVITY_TYPE_SERVICE="ColleagueActivityType",ServiceConstants.USER_MS_SERVICE="UserMs/GetUsers",ServiceConstants.USER_MS="UserMs",ServiceConstants.MICRO_STRATEGIES="MicroStrategies",ServiceConstants.CONTENT_MS_SERVICE="ContentMS",ServiceConstants.SELF_START_SERVICE="SelfStart",ServiceConstants.INITIATIVE_API_PATH="Initiatives",ServiceConstants.UPDATE_ZONE_INITIATIVE_SORT_API_PATH="UpdateInitiativeSort",ServiceConstants.GET_ZONE_INITIATIVE_API_PATH="getZoneInitiatives",ServiceConstants.INITIATIVE_ONLY_STATE=NGenConstants.ROOT+".initiativeOnly",ServiceConstants.QUESTION_ANSWER_REPORT_ONLY_STATE=NGenConstants.ROOT+".assessmentOnly.questionAnswer",ServiceConstants.PDF_TYPE="application/pdf",ServiceConstants.DOCX_TYPE="application/vnd.openxmlformats-officedocument.wordprocessingml.document",ServiceConstants.RTF_TYPE="application/rtf",ServiceConstants.TXT_TYPE="text/plain",ServiceConstants.MSWORD_TYPE="application/msword",ServiceConstants.MAX_FILE_SIZE_LIMIT=28.6,ServiceConstants.FILE_FORMAT_MSG="CANDIDATE_RESUME_ACCEPTED_FORMATS",ServiceConstants.MAX_ATTACHMENT_SIZE_MSG="CANDIDATE_EMAIL_ATTACHMENT_SIZE_LIMIT",ServiceConstants.SKILLSOFT_URL="SkillSoftUrl",ServiceConstants.SKILLSOFT_SSO_URL="SkillSoftSSOUrl",ServiceConstants.SKILLSOFT_SSO_ADMIN_USERNAME="SkillSoftSSOAdminUsername",ServiceConstants.SKILLSOFT_SSO_ADMIN_PASSWORD="SkillSoftSSOAdminPassword",ServiceConstants.SKILLSOFT_SSO_ADMIN_DEFAULT_PASSWORD="SkillSoftSSODefaultPassword",ServiceConstants.skillSoftv8_URL="SkillSoftv8Url",ServiceConstants.skillSoftv8_SSO_URL="SkillSoftv8SSOUrl",ServiceConstants.skillSoftv8_SSO_ADMIN_USERNAME="SkillSoftSSOAdminUsername",ServiceConstants.skillSoftv8_SSO_ADMIN_PASSWORD="SkillSoftSSOAdminPassword",ServiceConstants.skillSoftv8_SSO_ADMIN_DEFAULT_PASSWORD="SkillSoftSSODefaultPassword",ServiceConstants.ONESOURCE_URL="OneSourceUrl",ServiceConstants.ONESOURCE_VERSIONTWO_URL="OneSourceVersionTwoUrl",ServiceConstants.ONESOURCE_AT_TOKEN="OneSourceATToken",ServiceConstants.ONESOURCE_VERSIONTWO_AT_TOKEN="OneSourceVersionTwoATToken",ServiceConstants.EXEC_GRAPEVINE_SSO_GROUP_NAME="ExecGrapevineSSOGroupName",ServiceConstants.EXEC_GRAPEVINE_SSO_GROUP_PASS="ExecGrapevineSSOGroupPass",ServiceConstants.EXEC_GRAPEVINE_WINDOW="execGrapevineWindow",ServiceConstants.EXEC_GRAPEVINE_LAUNCH="execGrapevineLaunch",ServiceConstants.SAVE_EXPLORE_GOAL="SaveGoal",ServiceConstants.REACTIVATE_CANDIDATE="ReactivateCandidate",ServiceConstants.DEFAULT_PAGE_SIZE_FOR_PAGINATION=25,ServiceConstants.ADP_DELIVERY_TIME="ADPDeliveryTime",ServiceConstants.BILLING_RATE="BillingRate",ServiceConstants.MOMENT="moment",ServiceConstants.CANDIDATE_LOCATION_API_PATH="CandidateLocation",ServiceConstants.CANDIDATE_MOST_RECENT_JOB="candidateMostRecentJob",ServiceConstants.RECLASSIFICATION_COMPANY_LINK="https://www.infogreffe.fr/societes/",ServiceConstants.AMAZON_PREACTIVE_SAVE_API_PATH="SaveAmazonCandidateDetails",ServiceConstants.AMAZON_PREACTIVE_CANDIDATE_SUCCESS="AmazonPreactiveSuccess",ServiceConstants.AMAZON_PREACTIVE_CANDIDATE_FAILURE="AmazonPreactiveFailure",ServiceConstants.AMAZON_PREACTIVE_GET_USERPROFILE_API_PATH="GetUserProfile",ServiceConstants.RESUME_MICROSERVICE_API_PATH="ResumeMS",ServiceConstants.UPDATE_EXPLORE_CATEGORY_INITIATIVE="UpdateInitiativeExploreCategorySort",ServiceConstants.GET_EXPLORE_CATEGORY_INITIATIVE="getInitiativeExploreCategory",ServiceConstants.GET_LANGUAGES_FOR_GROUP="GetLanguagesForGroup",ServiceConstants.CRONOFY_GOOGLE_PROVIDER_NAME="google",ServiceConstants.CRONOFY_OFFICE_365_PROVIDER_NAME="office365",ServiceConstants.CRONOFY_OUTLOOK_PROVIDER_NAME="live_connect",ServiceConstants.CRONOFY_APPLE_PROVIDER_NAME="apple",ServiceConstants.CRONOFY_EXCHANGE_PROVIDER_NAME="exchange",ServiceConstants.CRONOFY_GET_EXTERNAL_CALENDAR_URL_API_PATH="/GetExternalCalendarsUrl/",ServiceConstants.CRONOFY_GET_EXTERNAL_CALENDAR_LIST_API_PATH="/GetUserExternalCalendarslist/",ServiceConstants.CRONOFY_GET_EXTERNAL_CALENDAR_USER_AUTH_CODE_API_PATH="/GetUserAuthCode/",ServiceConstants.CRONOFY_EXTERNAL_CALENDAR_REMOVE_PROFILE_API_PATH="/CronofyProfileRemove/",ServiceConstants.GET_CATEGORY_ID="GetCategoryId",ServiceConstants}(),UserConstants=function(){function UserConstants(){}return UserConstants.USER_STATUS_ACTIVE=1,UserConstants.USER_STATUS_INACTIVE=2,UserConstants.USER_STATUS_NEWUSER=3,UserConstants.NGEN_USER_STATUS_ACTIVE=12,UserConstants.NGEN_USER_STATUS_SCHEDULED=11,UserConstants.NGEN_USER_STATUS_INACTIVE=13,UserConstants.NGEN_USER_STATUS_REASON_PERSONAL_OTHER=130,UserConstants.NGEN_USER_STATUS_REASON_PERSONAL_WORKINGAT_SPONSOR=131,UserConstants.NGEN_USER_STATUS_REASON_PERSONAL_MEDICAL=129,UserConstants.USERS_START_DATE_END_DATE_VALDITATION="USERS_START_DATE_END_DATE_VALDITATION",UserConstants.USERS_START_DATE_END_DATE_CURRENT_DATE_VALIDATION="USERS_START_DATE_END_DATE_CURRENT_DATE_VALIDATION",UserConstants.USERS_END_DATE_START_DATE_VALIDATION="USERS_END_DATE_START_DATE_VALIDATION",UserConstants.USERS_START_DATE_CURRENT_DATE_VALIDATION="USERS_START_DATE_CURRENT_DATE_VALIDATION",UserConstants.USERS_END_DATE_CURRENT_DATE_VALIDATION="USERS_END_DATE_CURRENT_DATE_VALIDATION",UserConstants.ALUMNI_CANDIDATE_STATUS=14,UserConstants.STATUS_CATEGORY_ID=1,UserConstants.LEARNING_STATUS_ACTIVE=2,UserConstants.USER_CANDIDATE_ALUMNI="USER_CANDIDATE_ALUMNI",UserConstants.ALUMNI_HEADER="ALUMNI",UserConstants.USERS_CANDIDATE_PROGRESS_API_PATH="CandidateProgress",UserConstants.PREACTIVE_CANDIDATE_API_PATH="AmazonCandidate",UserConstants.USER_CANDIDATE_PROFILE_PHOTO_UPDATE="USER_CANDIDATE_PROFILE_PHOTO_UPDATE",UserConstants.USER_EXTERNAL_LOGIN_FROM_AUTHENTICATION="UserExternalLoginFromAuthentication",UserConstants.ALLOW_LIVE_EVENTS_ACCESS_KEY="AllowLiveEvents",UserConstants.HIDE_SOCIAL_MEDIA_LINKS_KEY="HideSocialMediaLinks",UserConstants.NO_ACCOUNTS_DETECTED="No accounts detected",UserConstants.MULTIPLE_ACCOUNTS_DETECTED="Multiple accounts detected, need to add choose account code",UserConstants.SILENT_TOKEN_ACQUISITION_FAILS="Silent token acquisition fails",UserConstants.USER_EXTERNAL_LOGIN_FROM_OLDCRN="UserExternalLoginFromOldCRN",UserConstants.COLLEAGUE_ID="ColleagueId",UserConstants.FRANCE_COUNTRY_ID=19,UserConstants.TALENT_RESUME_DATA="talentResumeData",UserConstants}(),LHH;(function(LHH){(function(NGen){var OutreachScheduleType,NotificationMethod,EmailType,PageType,SurveyType;(function(OutreachScheduleType){OutreachScheduleType[OutreachScheduleType.None=1]="None";OutreachScheduleType[OutreachScheduleType.Auto=2]="Auto";OutreachScheduleType[OutreachScheduleType.Manual=3]="Manual"})(NGen.OutreachScheduleType||(NGen.OutreachScheduleType={}));OutreachScheduleType=NGen.OutreachScheduleType,function(NotificationMethod){NotificationMethod[NotificationMethod.Email=1]="Email";NotificationMethod[NotificationMethod.Sms=2]="Sms"}(NGen.NotificationMethod||(NGen.NotificationMethod={}));NotificationMethod=NGen.NotificationMethod,function(EmailType){EmailType[EmailType.Default=1]="Default";EmailType[EmailType.InstaStart=2]="InstaStart";EmailType[EmailType.FutureStart=3]="FutureStart"}(NGen.EmailType||(NGen.EmailType={}));EmailType=NGen.EmailType,function(PageType){PageType[PageType.Email=1]="Email";PageType[PageType.Calendar=2]="Calendar"}(NGen.PageType||(NGen.PageType={}));PageType=NGen.PageType,function(SurveyType){SurveyType[SurveyType.Interim=1]="Interim";SurveyType[SurveyType.Final=2]="Final";SurveyType[SurveyType.Activity=3]="Activity"}(NGen.SurveyType||(NGen.SurveyType={}));SurveyType=NGen.SurveyType})(LHH.NGen||(LHH.NGen={}));var NGen=LHH.NGen})(LHH||(LHH={}));var KeywordConstants=function(){function KeywordConstants(){}return KeywordConstants.ClientActivityTypeKeywordCategoryID=1,KeywordConstants.ClientActivityMethodKeywordCategoryID=2,KeywordConstants.IndustryKeywordCategoryID=6,KeywordConstants.GenderKeywordCategoryID=23,KeywordConstants.ResultKeywordCategoryID=12,KeywordConstants.MaritalKeywordCategoryID=31,KeywordConstants.EducationKeywordCategoryID=33,KeywordConstants.TerminationReasonKeywordCategoryId=29,KeywordConstants.CSPStatusKeywordCategoryId=36,KeywordConstants.JobClassificationKeywordCategoryId=35,KeywordConstants.MobilityAcceptationKeywordCategoryId=1075,KeywordConstants.ClientActivityMethodByPhoneKeywordID=425,KeywordConstants.ClientActivityMethodByEmailKeywordID=424,KeywordConstants.ClientActivityMethodVirtualKeywordID=655,KeywordConstants.ClientActivityMethodByTextKeywordID=11977,KeywordConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_ICEO_CLIENT_SUPPORT=7919,KeywordConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_ADVISOR_MEETING=7920,KeywordConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_CONSULTANT_MEETING=419,KeywordConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_EVENT_ATTENDANCE=818,KeywordConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_CLIENT_SUPPORT=418,KeywordConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_WORKSHOPS=423,KeywordConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_GROUP_MEETING=420,KeywordConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_OTHER=422,KeywordConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_OFFICE_VISIT=421,KeywordConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_ICEO_CLIENT_SUPPORT_RESOURCE_KEY="KEYWORD_CLIENTACTIVITYTYPES_ICEO_CLIENT_SUPPORT",KeywordConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_ADVISOR_MEETING_RESOURCE_KEY="KEYWORD_CLIENTACTIVITYTYPES_ADVISOR_MEETING",KeywordConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_CONSULTANT_MEETING_RESOURCE_KEY="KEYWORD_CONSULTANT_MEETING",KeywordConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_CLIENT_SUPPORT_RESOURCE_KEY="KEYWORD_CLIENT_SUPPORT",KeywordConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_OTHER_RESOURCE_KEY="KEYWORD_OTHER",KeywordConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_GROUP_MEETING_RESOURCE_KEY="KEYWORD_GROUP_MEETING",KeywordConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_WORKSHOPS_RESOURCE_KEY="KEYWORD_WORKSHOP",KeywordConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_EVENT_ATTENDANCE_RESOURCE_KEY="KEYWORD_EVENT_ATTENDANCE",KeywordConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_OFFICE_VISIT_KEY="KEYWORD_OFFICE_VISIT",KeywordConstants.UnbilledFeesResasonsCategoryID=1077,KeywordConstants.CANDIDATE_FIRSTNAME_PLACEHOLDER="[Candidate_FirstName]",KeywordConstants.CANDIDATE_FULLNAME_PLACEHOLDER="[Candidate_FullName]",KeywordConstants.CONSULTANT_FIRSTNAME_PLACEHOLDER="[Consultant_FirstName]",KeywordConstants.REACTIVATION_DATE_PLACEHOLDER="[Reactivation_Date]",KeywordConstants.KEYWORD_CANDIDATE_ACTIVITY_TYPE_COACH_MEETING_NAME="Coach Meeting",KeywordConstants}(),CalendarConstants=function(){function CalendarConstants(){}return CalendarConstants.CalendarVenueTypePhoneID=1,CalendarConstants.CalendarVenueTypeSkypeID=2,CalendarConstants.CalendarVenueTypeOfficeID=3,CalendarConstants.CalendarVenueTypeWebExRoomID=4,CalendarConstants.CalendarVenueTypeOtherID=5,CalendarConstants.CalendarVenueTypeCandidatePhoneID=6,CalendarConstants.CalendarNewEventStatusType=1,CalendarConstants.CalendarInviteStatusNotResponded=1,CalendarConstants.CalendarEventStatusTypeComplete=2,CalendarConstants.CalendarEventTypeOtherCandidateSupportID=27,CalendarConstants.CalendarEventTypeTravelID=15,CalendarConstants.CalendarEventTypeTimeOffID=25,CalendarConstants.CalendarEventTypeOtherID=19,CalendarConstants.CalendarEventTypeBrandingID=43,CalendarConstants.CalendarEventTypeEngagementID=44,CalendarConstants.CalendarEventTypeCoachingID=45,CalendarConstants.ExternalCalendarOutlookProviderID=2,CalendarConstants.ExternalCalendarGoogleProviderID=3,CalendarConstants.ExternalCalendarOffice365ProviderID=4,CalendarConstants.ExternalCalendarExchangeProviderID=5,CalendarConstants.ExternalCalendarIcloudProviderID=6,CalendarConstants.ExternalCalendarOutlook_comProviderID=7,CalendarConstants.CalendarEventTypeHostSessionId=20,CalendarConstants.CalendarEventTypeWebinarId=21,CalendarConstants.CalendarEventTypeMeetingID=13,CalendarConstants.CalendarEventTypeCOC=50,CalendarConstants.CalendarEventTypeAskACoachID=46,CalendarConstants.CalendarEventTypeCandidateScheduledID=47,CalendarConstants.CALENDAR_DEFAULT_EVENT_MEETING_TIME=18e5,CalendarConstants.CALENDAR_DEFAULT_EVENT_MEETING_TIME_ASK_A_COACH=27e5,CalendarConstants.CALENDAR_DEFAULT_EVENT_MEETING_TIME_ASSIGNED_CONSULTANT=18e5,CalendarConstants.CALENDAR_DEFAULT_TIME_GAP_OFFICE=9e5,CalendarConstants.CALENDAR_EVENT_INVITE_STATUS_ACCEPTED=2,CalendarConstants.CALENDAR_EVENT_INVITE_STATUS_DECLINED=3,CalendarConstants.CALENDAR_EVENT_INVITE_STATUS_ATTENDED=4,CalendarConstants.CALENDAR_EVENT_INVITE_STATUS_NOT_ATTENDED=5,CalendarConstants.CalendarOfficeAvailabilityTypeID=1,CalendarConstants.CALENDAR_EVENT_STATUS_TYPE_COMPLETE=2,CalendarConstants.CALENDAR_EVENT_MEETING_MINUTES_DIFFERENCE="CALENDAR_EVENT_MEETING_MINUTES_DIFFERENCE",CalendarConstants.CALENDAR_CREATE_ACTIVITY_NOTE_SCHEDULED_KEY="CALENDAR_CREATE_ACTIVITY_NOTE_SCHEDULED",CalendarConstants.CALENDAR_EVENT_OFFICE_VENUE_ACCEPT_MSG_CONTENT_ID="CalendarEventOfficeVenueAcceptMsgContent",CalendarConstants.CALENDAR_EVENT_PHONE_VENUE_ACCEPT_MSG_CONTENT_ID="CalendarEventPhoneVenueAcceptMsgContent",CalendarConstants.CALENDAR_EVENT_CANDIDATE_PHONE_VENUE_ACCEPT_MSG_CONTENT_ID="CalendarEventCandidatePhoneVenueAcceptMsgContent",CalendarConstants.CALENDAR_EVENT_SKYPE_VENUE_ACCEPT_MSG_CONTENT_ID="CalendarEventSkypeVenueAcceptMsgContent",CalendarConstants.CALENDAR_EVENT_WEBEX_VENUE_ACCEPT_MSG_CONTENT_ID="CalendarEventWebExRoomVenueAcceptMsgContent",CalendarConstants.CALENDAR_EVENT_OTHER_VENUE_ACCEPT_MSG_CONTENT_ID="CalendarEventOtherVenueAcceptMsgContent",CalendarConstants.CALENDAR_EVENT_SMART_SCHEDULE_MESSAGE_CONTENT_ID="CalendarEventSmartScheduleMessageContent",CalendarConstants.CALENDAR_EVENT_SMART_SCHEDULE_BULK_INVITE_MSG_CONTENT_ID="CalendarEventSmartScheduleBulkInviteMessageContent",CalendarConstants.CALENDAR_EVENT_SINGLE_INVITE_DECLINE_MSG_CONTENT_ID="CalendarEventSingleInviteDeclineMsgContent",CalendarConstants.CALENDAR_EVENT_BULK_INVITE_DECLINE_MSG_CONTENT_ID="CalendarEventBulkInviteDeclineMsgContent",CalendarConstants.SMART_SCHEDULE_LINK_MESSAGE_CONTENT_ID="SmartScheduleLinkMessageContentID",CalendarConstants.SMART_SCHEDULE_LINK_Expired_CONTENT_ID="SmartScheduleLinkExpiredContentID",CalendarConstants.SMART_SCHEDULE_LINK_NOT_AVAILABLE_MESSAGE_CONTENT_ID="SmartScheduleLinkNotAvailableMessageContentID",CalendarConstants.CONSULTANTNAME_TOKEN="CONSULTANTNAME",CalendarConstants.CANDIDATENAME_TOKEN="CANDIDATENAME",CalendarConstants.EMAIL_TOKEN="EMAIL",CalendarConstants.CONSULTANT_TITLE_TOKEN="CONSULTANTTITLE",CalendarConstants.CALENDAR_EVENT_VENUE_OTHER_TOKEN="CALENDAREVENTOTHERVENUE",CalendarConstants.CALENDAR_SMART_SCHEDULE_LINK="CALENDAR_SMART_SCHEDULE_LINK",CalendarConstants.CALENDAR_ACCEPT_DECLINE_PAGE_UNAUTHORIZED="CALENDAR_ACCEPT_DECLINE_PAGE_UNAUTHORIZED",CalendarConstants.CALENDAR_EVENT_STATUS_TYPE_CANCELLED=3,CalendarConstants.MAX_FILE_SIZE_LIMIT=28.6,CalendarConstants.TOTAL_ATTACHMENTS_LIMIT=10,CalendarConstants.PDF="application/pdf",CalendarConstants.DOCX="application/vnd.openxmlformats-officedocument.wordprocessingml.document",CalendarConstants.RTF="application/rtf",CalendarConstants.TXT="text/plain",CalendarConstants.DOC="application/msword",CalendarConstants.PPT="application/vnd.ms-powerpoint",CalendarConstants.PTTX="application/vnd.openxmlformats-officedocument.presentationml.presentation",CalendarConstants.XLSX="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",CalendarConstants.XLS="application/vnd.ms-excel",CalendarConstants.CSV="text/csv",CalendarConstants.PNG="image/png",CalendarConstants.GIF="image/gif",CalendarConstants.FILE_FORMAT_MSG="CANDIDATE_EMAIL_ATTACHMENTS_ALLOWED_EXTENSIONS",CalendarConstants.CALENDAR_FILE_FORMAT_MSG="CALENDAR_CANDIDATE_EMAIL_ATTACHMENTS_ALLOWED_EXTENSIONS",CalendarConstants.MAX_ATTACHMENTS_MSG="CANDIDATE_EMAIL_MAX_ATTACHMENTS_ALLOWED",CalendarConstants.MAX_ATTACHMENT_SIZE_MSG="CANDIDATE_EMAIL_ATTACHMENT_SIZE_LIMIT",CalendarConstants.CALENDAR_SELECT_SUPPORT_ALL_TRACKS=5,CalendarConstants}(),GoogleMapsStylesConstants=function(){function GoogleMapsStylesConstants(){}return GoogleMapsStylesConstants.PURPLE_MARKER="/Content/Images/r19/marker_purple.svg",GoogleMapsStylesConstants.PURPLE_THEME=[{elementType:"labels.text",stylers:[{color:"#808080"},{visibility:"simplified"}]},{featureType:"landscape.man_made",stylers:[{visibility:"on"}]},{featureType:"landscape.natural",stylers:[{visibility:"on"}]},{featureType:"landscape.natural",elementType:"labels.text",stylers:[{visibility:"simplified"}]},{featureType:"landscape.natural.landcover",elementType:"geometry.fill",stylers:[{color:"#e6e6e6"}]},{featureType:"landscape.natural.terrain",elementType:"geometry.fill",stylers:[{color:"#e6e6e6"}]},{featureType:"poi",elementType:"geometry.fill",stylers:[{color:"#e6e6e6"}]},{featureType:"poi",elementType:"geometry.stroke",stylers:[{color:"#ffffff"}]},{featureType:"poi.park",elementType:"geometry.fill",stylers:[{color:"#b6b6b6"}]},{featureType:"poi.park",elementType:"labels.icon",stylers:[{color:"#808080"}]},{featureType:"poi.park",elementType:"labels.text",stylers:[{visibility:"simplified"}]},{featureType:"road",elementType:"geometry.fill",stylers:[{color:"#ffffff"}]},{featureType:"road",elementType:"geometry.stroke",stylers:[{visibility:"off"}]},{featureType:"road",elementType:"labels.text",stylers:[{color:"#000000"},{visibility:"simplified"}]},{featureType:"water",elementType:"geometry.fill",stylers:[{color:"#a68bac"}]},{featureType:"water",elementType:"labels.text",stylers:[{color:"#ffffff"}]}],GoogleMapsStylesConstants}(),LHH;(function(LHH){var DateHelper=function(){function DateHelper(){}return DateHelper.getMonthResourceKeys=function(){return DateHelper.monthResourceKeys},DateHelper.getDayResourceKeys=function(){return DateHelper.dayResourceKeys},DateHelper.getShortMonthResourceKeys=function(){return DateHelper.shortMonthResourceKeys},DateHelper.getTranlatedShortDate=function(date){var dateObj=DateHelper.ManagedTimeZone(date),year=dateObj.getFullYear(),day=dateObj.getDate(),monthSeq=dateObj.getMonth(),month=DateHelper.getShortMonthResourceKeys()[monthSeq];return[month,day.toString(),year.toString()]},DateHelper.getTranlatedDate=function(date){for(var dateObj=DateHelper.ManagedTimeZone(date),year=dateObj.getFullYear().toString(),day=dateObj.getDate().toString(),monthSeq=dateObj.getMonth(),daySeq=dateObj.getDay(),month=DateHelper.getMonthResourceKeys()[monthSeq],dayString=DateHelper.getWeekDay(daySeq);day.charAt(0)==="0";)day=day.substr(1);return[month,day,year,dayString]},DateHelper.checkIsIosOrMac=function(){var iOS=!!navigator.platform&&/iPad|iPhone|iPod/.test(navigator.platform),isMac=!!navigator.platform&&/MacIntel/.test(navigator.platform),isSafari=navigator.vendor&&navigator.vendor.indexOf("Apple")>-1&&navigator.userAgent&&navigator.userAgent.indexOf("CriOS")==-1&&navigator.userAgent.indexOf("FxiOS")==-1,tempVersionOffset,tempVersion,browserVersion,safariVersion;return isSafari==!0&&((tempVersionOffset=navigator.userAgent.indexOf("Version"))!=-1&&(browserVersion=navigator.userAgent.substring(tempVersionOffset+8)),((tempVersion=browserVersion.indexOf(" "))!=-1||(tempVersion=browserVersion.indexOf(";"))!=-1)&&(browserVersion=browserVersion.substring(0,tempVersion))),safariVersion=parseInt(browserVersion),safariVersion<14&&(iOS==!0||isMac)?iOS==!0||isSafari&&isMac:void 0},DateHelper.ManagedTimeZone=function(date){var dateObj=new Date(date),iOS=!!navigator.platform&&/iPad|iPhone|iPod/.test(navigator.platform),isMac=!!navigator.platform&&/MacIntel/.test(navigator.platform),isSafari=navigator.vendor&&navigator.vendor.indexOf("Apple")>-1&&navigator.userAgent&&navigator.userAgent.indexOf("CriOS")==-1&&navigator.userAgent.indexOf("FxiOS")==-1;return(iOS==!0||isSafari&&isMac)&&dateObj.setMinutes(dateObj.getMinutes()+dateObj.getTimezoneOffset()),dateObj},DateHelper.getWeekDay=function(dayOfTheWeek){var weekday=DateHelper.getDayResourceKeys();return weekday[dayOfTheWeek]},DateHelper.getFullMonth=function(fullMonth){var month_names=DateHelper.getMonthResourceKeys();return month_names[fullMonth]},DateHelper.getShortMonth=function(shortMonth){var month_names_short=DateHelper.getShortMonthResourceKeys();return month_names_short[shortMonth]},DateHelper.utcDateFormat=function(input,format){return input==undefined?undefined:moment(input).utc().format(format)},DateHelper.getUTCDate=function(){return moment().utc().toDate()},DateHelper.getDayStart=function(date){return typeof date=="undefined"&&(date=new Date),date.setHours(0,0,0,0),date},DateHelper.getDayEnd=function(date){return typeof date=="undefined"&&(date=new Date),date.setHours(23,59,59,0),date},DateHelper.isTimePastMinutesAgo=function(inDateTime,inMinutes){var inDateTimeStr;if(inDateTime!=null){inDateTimeStr=inDateTime.toString();inDateTimeStr.match(NGenConstants.HAS_TIMEZONE_REGEX)||(inDateTimeStr+="Z");var theDateTime=new Date(inDateTimeStr),currentDateTime=new Date,diffMinutes=(theDateTime.getTime()-currentDateTime.getTime())/NGenConstants.MILLISECONDS_IN_MINUTE;if(diffMinutes0?1:-1,businessDaysLeft=Math.abs(daysToAdjust);businessDaysLeft;)newDate.setDate(newDate.getDate()+direction),isWeekend=newDate.getDay()in{0:"Sunday",6:"Saturday"},isWeekend||businessDaysLeft--;return newDate},DateHelper.getNextCalendarDay=function(startingDate,daysToAdjust){var newCalendarDate=new Date;if(newCalendarDate.setDate(startingDate.getDate()+daysToAdjust),daysToAdjust!==parseInt(daysToAdjust,10))throw new TypeError("getNextCalendarDay can only adjust by whole days");return daysToAdjust===0?startingDate:newCalendarDate},DateHelper.isNothing=function(val){return val?!1:!0},DateHelper.isDateEqualWithoutTimeZone=function(firstDate,secondDate){return firstDate!=null&&firstDate!=undefined&&(secondDate!=null||secondDate!=undefined)?firstDate.getFullYear()==secondDate.getFullYear()&&firstDate.getMonth()==secondDate.getMonth()&&firstDate.getDate()==secondDate.getDate()?!0:!1:(firstDate==null||firstDate==undefined)&&(secondDate==null||secondDate==undefined)?!0:!1},DateHelper.removeTimezoneOffset=function(date){var tempDate=new Date(date);return new Date(tempDate.getTime()+tempDate.getTimezoneOffset()*NGenConstants.MILLISECONDS_IN_MINUTE)},DateHelper.addTimezoneOffset=function(date){var tempDate=new Date(date);return new Date(tempDate.getTime()-tempDate.getTimezoneOffset()*NGenConstants.MILLISECONDS_IN_MINUTE).toISOString()},DateHelper.addTimezoneOffsetByValue=function(date,timeZoneOffset){return new Date(date.getTime()+timeZoneOffset*NGenConstants.MILLISECONDS_IN_MINUTE)},DateHelper.getLocalizedCurrentDate=function(timeZoneOffset){return DateHelper.addTimezoneOffsetByValue(new Date((new Date).toUTCString().substr(0,25)),timeZoneOffset)},DateHelper.getLocalizeNoCaseDate=function(date,languageKey,options){var dateValue=new Date(date);return dateValue.toLocaleDateString(languageKey,options)},DateHelper.getLocalizeDate=function(date,languageKey,options){var dateValue=new Date(date);return this.getTitleCaseDate(dateValue.toLocaleDateString(languageKey,options))},DateHelper.getTitleCaseDate=function(date){for(var sentence=date.toLowerCase().split(" "),i=0;ireplacedvalue?translatedValue.substr(replacedvalue+1).trim():translatedValue},CandidateHelper}();LHH.CandidateHelper=CandidateHelper}(LHH||(LHH={})),function(LHH){var CommonHelper=function(){function CommonHelper(){}return CommonHelper.prepareRequestHeader=function(CorrelationId,CompaasUserId,ignoreLoadingBar){typeof ignoreLoadingBar=="undefined"&&(ignoreLoadingBar=!1);var iPinfo=window.localStorage.getItem(NGenConstants.SYSTEM_IP_INFO_KEY)===null?"":JSON.parse(window.localStorage.getItem(NGenConstants.SYSTEM_IP_INFO_KEY)),utcTime=new Date((new Date).toUTCString()).getTime();return{"Ocp-Apim-Subscription-Key":CommonConfig.APIM_KEY,UserId:CompaasUserId,RequestDateTime:utcTime,IPAddress:iPinfo[NGenConstants.SYSTEM_IP_ADDRESS_KEY],CorrelationId:CorrelationId,systemOperationName:NGenConstants.SYSTEM_OPERATION_NAME_VALUE,ignoreLoadingBar:ignoreLoadingBar}},CommonHelper}();LHH.CommonHelper=CommonHelper}(LHH||(LHH={})),function(LHH){var BrowserHelper=function(){function BrowserHelper(){}return BrowserHelper.currentInternetExplorerLanguage=function(){var currentLanguage=undefined,html=document.getElementsByTagName("html"),htmlElement;return html!=undefined&&html.length==1&&(htmlElement=html[0],htmlElement!=undefined&&(currentLanguage=htmlElement.lang!=undefined?htmlElement.lang:undefined)),currentLanguage},BrowserHelper.currentMozillaLanguage=function(){var currentLanguage=undefined,nav=window.navigator;return nav!=undefined&&(currentLanguage=nav.language||nav.browserLanguage||nav.systemLanguage||nav.userLanguage),currentLanguage},BrowserHelper.isInternetExplorer=function(){var isInternetExplorer=!1,nav=window.navigator,userAgent;return nav!=undefined&&(userAgent=nav.userAgent,userAgent!=undefined&&(BrowserHelper.msieRegularExpression.test(userAgent)||BrowserHelper.tridentRegularExpression.test(userAgent))&&(isInternetExplorer=!0)),isInternetExplorer},BrowserHelper.currentPreferredLanguage=function(){var currentPreferredLanguage=undefined;return currentPreferredLanguage=BrowserHelper.isInternetExplorer()?BrowserHelper.currentInternetExplorerLanguage():BrowserHelper.currentMozillaLanguage(),console.log("Setting Preferred Language to "+currentPreferredLanguage),currentPreferredLanguage||NGenConstants.TRANSLATE_LANGUAGEKEY_EN_US.toUpperCase()},BrowserHelper.getParameterByName=function(name,url){name=name.replace(/[\[\]]/g,"\\$&");var regex=new RegExp("[?&]"+name+"(=([^&#]*)|&|#|$)","i"),results=regex.exec(url);return results?results[2]?decodeURIComponent(results[2].replace(/\+/g," ")):"":null},BrowserHelper.buildRedirectParameter=function(parameterName,parameterValue){var parameter="";return parameterValue!=null&&(parameter="?"+parameterName+"="+parameterValue),parameter},BrowserHelper.isDevelopMeSite=function(){var isDevelopMeSite=!1,host=window.location.host;return host!=undefined&&(isDevelopMeSite=host.indexOf("developme")>-1),isDevelopMeSite},BrowserHelper.mobileCheck=function(){var check=!1;return function(a){(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i.test(a)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(a.substr(0,4)))&&(check=!0)}(navigator.userAgent||navigator.vendor),check},BrowserHelper.msieRegularExpression=/MSIE\s([\d.]+)/,BrowserHelper.tridentRegularExpression=/(Trident\/(\d{2,}|7|8|9)(.*)rv:(\d{2,}))|(MSIE\ (\d{2,}|8|9)(.*)Tablet\ PC)|(Trident\/(\d{2,}|7|8|9))/,BrowserHelper}();LHH.BrowserHelper=BrowserHelper}(LHH||(LHH={})),function(LHH){var ErrorWrapper=function(){function ErrorWrapper(error,title,action){this.error=error;this.title="Error";this.action="Click for details";this.error!=undefined&&this.error.data!==undefined&&(this.detailError=this.recurseInnerExceptions(this.error.data));this.title=title;this.action=action}return ErrorWrapper.prototype.toString=function(){if(this.error!=undefined&&this.error.data!==undefined){if(this.detailError.ExceptionType!=undefined)return this.detailError.ExceptionType+": "+this.detailError.ExceptionMessage;if(this.error.statusText!=undefined&&this.error.data.ModelState!=undefined)return this.error.statusText+" - "+this.error.data.Message+"ModelState: "+JSON.stringify(this.error.data.ModelState)}},ErrorWrapper.prototype.recurseInnerExceptions=function(error){return error.InnerException!=undefined?this.recurseInnerExceptions(error.InnerException):error},ErrorWrapper}();LHH.ErrorWrapper=ErrorWrapper}(LHH||(LHH={})),function(LHH){(function(NGen){(function(LogLevel){LogLevel[LogLevel.Debug=0]="Debug";LogLevel[LogLevel.Info=1]="Info";LogLevel[LogLevel.Warn=2]="Warn";LogLevel[LogLevel.Error=3]="Error"})(NGen.LogLevel||(NGen.LogLevel={}));var LogLevel=NGen.LogLevel,Log=function(){function Log(){}return Log.debug=function(message,typeString){this.log(0,message,typeString)},Log.info=function(message,typeString){this.log(1,message,typeString)},Log.warn=function(message,typeString){this.log(2,message,typeString)},Log.error=function(message,typeString,error){this.log(3,message,typeString,error)},Log.log=function(level,message,typeString,error){if(Log.logToConsole){var date=new Date;window.console!=undefined&&console.log("["+LogLevel[level]+"]"+date.toDateString()+" "+date.getHours()+":"+date.getMinutes()+":"+date.getSeconds()+": "+typeString+" - "+message+(error!==undefined?error.toString():""))}},Log.logToConsole=!0,Log}();NGen.Log=Log})(LHH.NGen||(LHH.NGen={}));var NGen=LHH.NGen}(LHH||(LHH={})),function(LHH){var MessageLevel,MessageHandler;(function(MessageLevel){MessageLevel[MessageLevel.Success=0]="Success";MessageLevel[MessageLevel.Info=1]="Info";MessageLevel[MessageLevel.Warn=2]="Warn";MessageLevel[MessageLevel.Error=3]="Error"})(LHH.MessageLevel||(LHH.MessageLevel={}));MessageLevel=LHH.MessageLevel;LHH.messageSignal=new signals.Signal;MessageHandler=function(){function MessageHandler(messageLevel,message,exception,translateManager){this.messageLevel=messageLevel;this.message=message;this.exception=exception;this.translateManager=translateManager}return MessageHandler}();LHH.MessageHandler=MessageHandler}(LHH||(LHH={})),function(LHH){var ColleagueHelper=function(){function ColleagueHelper(){}return ColleagueHelper.getColleagueFullName=function(colleague){return colleague.NickName?colleague.NickName.trim()+" "+(colleague.LastName?colleague.LastName.trim():""):colleague.FirstName?colleague.FirstName.trim()+" "+(colleague.LastName?colleague.LastName.trim():""):void 0},ColleagueHelper}();LHH.ColleagueHelper=ColleagueHelper}(LHH||(LHH={})),function(LHH){(function(Shared){(function(Services){var Log=LHH.NGen.Log,LocalDataService=function(){function LocalDataService(restangular,translateManager,$q){this.restangular=restangular;this.translateManager=translateManager;this.$q=$q}return LocalDataService.prototype.$get=function(){var _this=this;return{NewCollection:function(apiPath){return _this.NewCollection(apiPath)},NewItem:function(apiPath){return _this.NewItem(apiPath)},GetList:function(listModel,searchParams,clean,onSuccess,onFail){return _this.GetList(listModel,searchParams,clean,onSuccess,onFail)},GetAll:function(listModel,clean,onSaveSuccess,onFail){return _this.GetAll(listModel,clean,onSaveSuccess,onFail)},GetByName:function(listModel,name,pageNumber,clean,params,onSaveSuccess,onFail){return _this.GetByName(listModel,name,pageNumber,clean,params,onSaveSuccess,onFail)},Get:function(apiPath,id,params,onSuccess,onFail){return _this.Get(apiPath,id,params,onSuccess,onFail)},GetWithHeaders:function(apiPath,id,params,headers,onSuccess,onFail){return _this.GetWithHeaders(apiPath,id,params,headers,onSuccess,onFail)},GetClean:function(apiPath,id,params){return _this.GetClean(apiPath,id,params)},SaveNewModel:function(apiPath,model,params,currentUserID,onSaveSuccess,onFail){return _this.SaveNewModel(apiPath,model,params,currentUserID,onSaveSuccess,onFail)},SaveExistingModel:function(model,params,currentUserID,onSaveSuccess,onFail){return _this.SaveExistingModel(model,params,currentUserID,onSaveSuccess,onFail)},Put:function(apiPath,params,onSaveSuccess,onFail){return _this.Put(apiPath,params,onSaveSuccess,onFail)},Post:function(apiPath,elem,params,onSaveSuccess,onFail){return _this.Post(apiPath,elem,params,onSaveSuccess,onFail)},Delete:function(model,onDeleteSuccess,onFail){return _this.Delete(model,onDeleteSuccess,onFail)},CustomDelete:function(apiPath,params,headers){return _this.CustomDelete(apiPath,params,headers)},EmptyPromise:function(){return _this.EmptyPromise()},InstantPromise:function(object){return _this.InstantPromise(object)},SuccessMessage:function(action){return _this.SuccessMessage(action)},FailMessage:function(action,reason){return _this.FailMessage(action,reason)},Clean:function(items){return _this.Clean(items)}}},LocalDataService.prototype.NewCollection=function(apiPath){return this.restangular.all(apiPath)},LocalDataService.prototype.NewItem=function(apiPath){return this.restangular.one(apiPath)},LocalDataService.prototype.GetList=function(listModel,searchParams,clean,onSuccess){var _this=this;return typeof searchParams=="undefined"&&(searchParams={}),typeof clean=="undefined"&&(clean=!1),listModel.getList(searchParams).then(function(items){var array=clean?_this.Clean(items):items;return onSuccess!=undefined&&onSuccess(),array})},LocalDataService.prototype.GetAll=function(listModel,clean,onSaveSuccess,onFail){var _this=this,params;return typeof clean=="undefined"&&(clean=!1),params={pageSize:-1},clean?this.GetList(listModel,params,clean,onSaveSuccess,onFail).then(function(items){return _this.Clean(items)}):this.GetList(listModel,params,clean,onSaveSuccess,onFail)},LocalDataService.prototype.GetByName=function(listModel,name,pageNumber,clean,params,onSaveSuccess,onFail){typeof clean=="undefined"&&(clean=!1);typeof params=="undefined"&&(params={});var commaPos=name.indexOf(",");return commaPos>-1?(params.lastName=name.substr(0,commaPos).trim(),params.firstName=name.substr(commaPos+1).trim(),params.andFlag=!0):(params.lastName=name,params.firstName=name,params.andFlag=!1),params.name=name,params.PageNumber=pageNumber,this.GetList(listModel,params,clean,onSaveSuccess,onFail)},LocalDataService.prototype.Get=function(apiPath,id,params,onSuccess,onFail){return params==undefined&&(params={}),this.restangular.one(apiPath,id).customGET("",params).then(function(item){return(item==null||item=="null")&&(item=undefined),onSuccess!=undefined&&onSuccess(),item}).catch(function(reason){return onFail!=undefined&&onFail(reason),reason})},LocalDataService.prototype.GetWithHeaders=function(apiPath,id,params,headers,onSuccess,onFail){return params||(params={}),this.restangular.one(apiPath,id).customGET("",params,headers).then(function(item){return(item===null||item==="null")&&(item=undefined),onSuccess&&onSuccess(),item}).catch(function(reason){return onFail&&onFail(reason),reason})},LocalDataService.prototype.GetClean=function(apiPath,id,params){var _this=this;return this.Get(apiPath,id,params).then(function(item){return item!=undefined?_this.Clean(item):undefined})},LocalDataService.prototype.SaveNewModel=function(apiPath,model,params,currentUserID,onSaveSuccess,onFail){var _this=this;return Log.debug("Save Model "+JSON.stringify(model),typeof this),this.updateCurrentUser(model,currentUserID,!0),this.restangular.all(apiPath).post(model,params).then(function(response){return onSaveSuccess!=undefined&&onSaveSuccess(),response}).catch(function(reason){return _this.FailMessage("Create",reason),onFail!=undefined&&onFail(reason),reason})},LocalDataService.prototype.SaveExistingModel=function(model,params,currentUserID,onSaveSuccess,onFail){var _this=this;return Log.debug("Save Model "+JSON.stringify(model),typeof this),this.updateCurrentUser(model,currentUserID,!1),model.put(params).then(function(response){return onSaveSuccess!=undefined&&onSaveSuccess(),response}).catch(function(reason){return _this.FailMessage("Update",reason),onFail!=undefined&&onFail(reason),reason})},LocalDataService.prototype.Put=function(apiPath,params,onSaveSuccess,onFail){var _this=this;return this.restangular.one(apiPath).customPUT({},"",params).then(function(response){return onSaveSuccess!=undefined&&onSaveSuccess(),response}).catch(function(reason){return _this.FailMessage("Update",reason),onFail!=undefined&&onFail(reason),reason})},LocalDataService.prototype.CustomPut=function(apiPath,params,onSaveSuccess,onFail){var _this=this;return this.restangular.one(apiPath).customPUT(params,"").then(function(response){return onSaveSuccess!=undefined&&onSaveSuccess(),response}).catch(function(reason){return _this.FailMessage("Update",reason),onFail!=undefined&&onFail(reason),reason})},LocalDataService.prototype.Post=function(apiPath,elem,params,onSaveSuccess,onFail){var _this=this;return this.restangular.one(apiPath).customPOST(elem,"",params).then(function(response){return onSaveSuccess!=undefined&&onSaveSuccess(),response}).catch(function(reason){return _this.FailMessage("Create",reason),onFail!=undefined&&onFail(reason),reason})},LocalDataService.prototype.PostFile=function(apiPath,elem,params,contentType){return this.restangular.one(apiPath).withHttpConfig({transformRequest:angular.identity}).customPOST(elem,"",params,{"Content-Type":contentType})},LocalDataService.prototype.Delete=function(model,onDeleteSuccess,onFail){var _this=this;return Log.debug("Delete Model "+JSON.stringify(model),typeof this),model.remove({id:model.ID}).then(function(response){return onDeleteSuccess!=undefined&&onDeleteSuccess(),response}).catch(function(reason){return _this.FailMessage("Delete",reason),onFail!=undefined&&onFail(reason),reason})},LocalDataService.prototype.CustomDelete=function(apiPath,params,headers){return this.restangular.one(apiPath).customDELETE(undefined,params,headers)},LocalDataService.prototype.EmptyPromise=function(){var deferred=this.$q.defer();return deferred.resolve(),deferred.promise},LocalDataService.prototype.InstantPromise=function(object){var deferred=this.$q.defer();return deferred.resolve(object),deferred.promise},LocalDataService.prototype.SuccessMessage=function(action){var message=this.toString()+" "+action;Log.debug(message,typeof this)},LocalDataService.prototype.FailMessage=function(action,reason){var _this=this,message=this.toString()+" "+this.translateManager.translate(ResourceKeyConstants.NGEN_FAILED_TO)+" "+action,translation,ex;reason!=undefined&&reason.data!=undefined&&reason.data.ResourceKeys!=undefined?reason.data.ResourceKeys.forEach(function(t){var translation=_this.translateManager.translate(t);translation!=undefined&&translation!=t&&(reason.data.ExceptionMessage=reason.data.ExceptionMessage.replace(t.toString(),translation),reason.data.Message=reason.data.Message.replace(t.toString(),translation))}):reason!=undefined&&reason.data!=undefined&&reason.data.Message!=undefined&&reason.data.ExceptionMessage==undefined&&reason.data.ExceptionType==undefined&&(translation=this.translateManager.translate(reason.data.Message),translation!=undefined&&translation!=reason.data.Message?(reason.data.ExceptionMessage="",reason.data.Message=translation,reason.data.ExceptionType=""):(reason.data.ExceptionMessage="",reason.data.Message=reason.data.Message,reason.data.ExceptionType=""));ex=new LHH.ErrorWrapper(reason,this.translateManager.translate(ResourceKeyConstants.NGEN_ERROR),this.translateManager.translate(ResourceKeyConstants.NGEN_CLICK_FOR_DETAILS));Log.error(message,typeof this,ex);LHH.messageSignal.dispatch({MessageHandler:new LHH.MessageHandler(3,message,ex,this.translateManager)})},LocalDataService.prototype.Clean=function(items){return this.restangular.stripRestangular(items)},LocalDataService.prototype.updateCurrentUser=function(model,currentUserID,isNew){currentUserID!=undefined&&(isNew&&(model.CreatedBy=currentUserID),model.UpdatedBy=currentUserID,model.LastUpdatedBy=currentUserID);model.LastUpdated=LHH.DateHelper.getUTCDate()},LocalDataService.prototype.sendSuccess=function(action){var message=this.toString()+" "+action+" "+this.translateManager.translate(NGenConstants.NGEN_SUCCESSFUL);Log.debug(message,typeof this)},LocalDataService.prototype.sendFailure=function(action,reason){var message=this.toString()+" "+this.translateManager.translate(NGenConstants.NGEN_FAILED_TO)+" "+action,ex=new LHH.ErrorWrapper(reason);Log.error(message,typeof this,ex);LHH.messageSignal.dispatch({MessageHandler:new LHH.MessageHandler(3,message,ex,this.translateManager)})},LocalDataService.prototype.getBlobFile=function(apiPath,params,headers){return this.restangular.withConfig(function(restangularConfigurer){restangularConfigurer.setFullResponse(!0)}).one("").withHttpConfig({responseType:"blob"}).customGET(apiPath,params,headers)},LocalDataService.prototype.getDTEResumeInfo=function(candidateID){return this.restangular.one(FieldConstants.CANDIDATE_GET_DTE_RESUME).customGET(null,{userID:candidateID})},LocalDataService.prototype.downloadDTEResume=function(candidateID,documentID){return this.restangular.one(FieldConstants.CANDIDATE_DOWNLOAD_DTE_RESUME).withHttpConfig({responseType:"blob"}).customGET(null,{userID:candidateID,userDocumentId:documentID})},LocalDataService.$name="localDataSvc",LocalDataService.$inject=[ServiceConstants.RESTANGULAR,ServiceConstants.TRANSLATE_MANAGER,ServiceConstants.Q_SERVICE],LocalDataService}();Services.LocalDataService=LocalDataService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={})),function(LHH){(function(Shared){(function(Services){var Log=LHH.NGen.Log,LogMessageService=function(){function LogMessageService(translateManager,localDataSvc){this.translateManager=translateManager;this.localDataSvc=localDataSvc}return LogMessageService.prototype.sendSuccess=function(action){var message=this.toString()+" "+action+" "+this.translateManager.translate(NGenConstants.NGEN_SUCCESSFUL);Log.debug(message,typeof this)},LogMessageService.prototype.sendFailure=function(action,reason){var message=this.toString()+" "+this.translateManager.translate(NGenConstants.NGEN_FAILED_TO)+" "+action,ex=new LHH.ErrorWrapper(reason);Log.error(message,typeof this,ex);LHH.messageSignal.dispatch({MessageHandler:new LHH.MessageHandler(3,message,ex,this.translateManager)})},LogMessageService.prototype.logError=function(message){this.localDataSvc.Post("LogError",null,{message:message})},LogMessageService.$name="logMessageSvc",LogMessageService.$inject=[ServiceConstants.TRANSLATE_MANAGER,Services.LocalDataService.$name],LogMessageService}();Services.LogMessageService=LogMessageService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={})),function(LHH){(function(Shared){(function(Services){var BundlesService=function(){function BundlesService(){}return BundlesService.prototype.switchTo=function(bundle){if(!$("head link["+bundle+"]").length){var oldBundles=$("head link[bundled]"),newBundles=$("#style-bundle-"+bundle).html(),previousElement=oldBundles.first().prev();$("body").css("visibility","hidden");oldBundles.remove();previousElement.after(newBundles);setTimeout(function(){$("body").removeAttr("style")},1e3)}},BundlesService.prototype.preLoad=function(bundle){$($("#style-bundle-"+bundle).html()).find("link").map(function(i,el){return $.get($(el).attr("href"))})},BundlesService.$name="bundlesSvc",BundlesService}();Services.BundlesService=BundlesService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={})),function(LHH){(function(Shared){(function(Services){var ModalsService=function(){function ModalsService($modal){this.$modal=$modal}return ModalsService.prototype.openAlertModal=function(message,btnOkText){var modalInstance=this.$modal.open({templateUrl:"Spa/shared/common/modals/alertmodal.htm",controller:Shared.Pages.Modals.AlertModalController.$name,windowClass:"modal-large",resolve:{message:function(){return message},btnOkText:function(){return btnOkText}},backdrop:"static"})},ModalsService.prototype.openAlertSmallModal=function(message,btnOkText){var modalInstance=this.$modal.open({templateUrl:"Spa/shared/common/modals/alertmodal.htm",controller:Shared.Pages.Modals.AlertModalController.$name,windowClass:"modal-small",resolve:{message:function(){return message},btnOkText:function(){return btnOkText}},backdrop:"static"})},ModalsService.prototype.openConfirmModal=function(message,btnAcceptText,btnDeclineText,yesCallback,noCallback,customClass){typeof customClass=="undefined"&&(customClass=undefined);var modalInstance=this.$modal.open({templateUrl:UsersConstants.CONFIRMATION_MODAL_HTM,controller:Shared.Pages.Modals.ConfirmationModalController.$name,windowClass:customClass,resolve:{message:function(){return message},callbackAccept:function(){return function(){return yesCallback()}},callbackDecline:function(){return function(){return noCallback()}},btnAcceptText:function(){return btnAcceptText},btnDeclineText:function(){return btnDeclineText}},backdrop:"static"})},ModalsService.$name="ModalsSvc",ModalsService.$inject=[NGenConstants.MODAL],ModalsService}();Services.ModalsService=ModalsService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={})),function(LHH){(function(Shared){(function(Services){var RestService=function(){function RestService(dataSvc){var _this=this;this.dataSvc=dataSvc;this.GetOptionParams=function(){return _this.OptionParams};this.SearchParams=this.SetupSearchParams();this.EditParams=this.SetupEditParams();this.OptionParams=this.SetupSelect2OptionParams();this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID)}return RestService.prototype.Setup=function(apiPath){this.ApiPath=apiPath;this.ListModel=this.dataSvc.NewCollection(apiPath)},RestService.prototype.SetupApiSwitch=function(apiPathSwitch){this.ApiPathSwitch=apiPathSwitch},RestService.prototype.Get=function(apiPath,id,params,onSuccess,onFail){return this.dataSvc.Get(apiPath,id,params,onSuccess,onFail)},RestService.prototype.GetWithHeaders=function(apiPath,id,params,headers,onSuccess,onFail){return this.dataSvc.GetWithHeaders(apiPath,id,params,headers,onSuccess,onFail)},RestService.prototype.GetClean=function(apiPath,id,params){return this.dataSvc.GetClean(apiPath,id,params)},RestService.prototype.Put=function(apiPath,params,onSaveSuccess,onFail){return this.dataSvc.Put(apiPath,params,onSaveSuccess,onFail)},RestService.prototype.Post=function(apiPath,elem,params,onSaveSuccess,onFail){return this.dataSvc.Post(apiPath,elem,params,onSaveSuccess,onFail)},RestService.prototype.Delete=function(apiPath,params,headers){return this.dataSvc.CustomDelete(apiPath,params,headers)},RestService.prototype.SetSearchField=function(field,reload,resourceKey){return(typeof reload=="undefined"&&(reload=!1),this.SearchParams.SearchField=field,resourceKey!=undefined&&(this.SearchParams.SearchResourceKey=resourceKey),reload)?this.Search(this.SearchParams.SearchText):this.dataSvc.EmptyPromise()},RestService.prototype.GetSearchParams=function(){return{pageSize:this.SearchParams.PageSize,pageNumber:this.SearchParams.PageNumber,sortField:this.SearchParams.SortField,sortAscending:this.SearchParams.SortAscending}},RestService.prototype.AddSearchOption=function(field,name,value){this.SearchParams.SearchOptions.push({Field:field,Name:name,Value:value})},RestService.prototype.GetSearchOption=function(field){var option=undefined;return this.SearchParams.SearchOptions.forEach(function(t){if(t.Field==field){option=t;return}}),option},RestService.prototype.SetSearchOption=function(field,value){this.SearchParams.SearchOptions.forEach(function(t){if(t.Field==field){t.Value=value;return}})},RestService.prototype.SetupSortOptions=function(){return[{Field:FieldConstants.ID_FIELD,Name:ResourceKeyConstants.NGEN_ID},{Field:FieldConstants.NAME_FIELD,Name:ResourceKeyConstants.NGEN_NAME}]},RestService.prototype.SetupRowCounts=function(){return[2,10,25,50]},RestService.prototype.SetupSearchParams=function(){return{SearchText:"",SearchField:undefined,SearchResourceKey:undefined,SearchOptions:[],Search:$.proxy(this.Search,this),SetSearchField:$.proxy(this.SetSearchField,this),GetSearchOption:$.proxy(this.GetSearchOption,this),SetSearchOption:$.proxy(this.SetSearchOption,this),HideSortOptions:!1,AllowSearchModal:!1,ShowSearchModal:$.proxy(this.ShowSearchModal,this),SortField:undefined,SortResourceKey:undefined,SortOptions:this.SetupSortOptions(),SortAscending:!0,SetSortField:$.proxy(this.SetSortField,this),SetSortAscending:$.proxy(this.SetSortAscending,this),PageNumber:1,PageSize:DefaultConstants.DEFAULT_PAGE_SIZE,TotalRows:0,RowCounts:this.SetupRowCounts(),SetPage:$.proxy(this.SetPage,this),SetPageSize:$.proxy(this.SetPageSize,this),OnPageChanged:$.proxy(this.OnPageChanged,this),ListData:[],DebounceTime:750}},RestService.prototype.SetSortField=function(field,reload,resourceKey){return(typeof reload=="undefined"&&(reload=!1),this.SearchParams.SortField=field,resourceKey!=null&&(this.SearchParams.SortResourceKey=resourceKey),reload)?this.Search(this.SearchParams.SearchText):this.dataSvc.EmptyPromise()},RestService.prototype.SetSortAscending=function(param,reload){return(typeof reload=="undefined"&&(reload=!1),this.SearchParams.SortAscending=param,reload)?this.Search(this.SearchParams.SearchText):this.dataSvc.EmptyPromise()},RestService.prototype.SetPage=function(num,reload){return typeof reload=="undefined"&&(reload=!1),this.SearchParams.PageNumber=num,reload?this.Search(this.SearchParams.SearchText):this.dataSvc.EmptyPromise()},RestService.prototype.SetPageSize=function(size,reload){return typeof reload=="undefined"&&(reload=!1),this.SearchParams.PageSize=size,reload?this.SetPage(1,reload):this.dataSvc.EmptyPromise()},RestService.prototype.OnPageChanged=function(){this.Search(this.SearchParams.SearchText)},RestService.prototype.Search=function(searchText){var _this=this,params=this.GetSearchParams();return this.SearchParams.SearchField!=undefined&&(this.SearchParams.SearchText=searchText,params[this.SearchParams.SearchField]=searchText),this.SearchParams.SearchOptions&&this.SearchParams.SearchOptions.forEach(function(t){t.Value!=undefined&&t.Value!=""&&(params[t.Field]=t.Value)}),this.dataSvc.GetList(this.ListModel,params).then(function(items){return _this.setTotalRows(items),_this.SearchParams.ListData=items,items})},RestService.prototype.ShowSearchModal=function(){},RestService.prototype.SetupEditParams=function(){return{Model:this.dataSvc.NewItem(this.ApiPath),ID:DefaultConstants.NEW_ID,IsNew:!0,Save:$.proxy(this.SaveModel,this),Delete:$.proxy(this.DeleteModel,this)}},RestService.prototype.GetModel=function(id){var _this=this;return id==undefined||id==DefaultConstants.NEW_ID?(this.EditParams.ID=DefaultConstants.NEW_ID,this.EditParams.IsNew=!0,this.EditParams.Model=this.dataSvc.NewItem(this.ApiPath),this.dataSvc.InstantPromise(this.EditParams.Model)):this.dataSvc.Get(this.ApiPath,id).then(function(item){return _this.EditParams.ID=id,_this.EditParams.IsNew=!1,_this.EditParams.Model=item})},RestService.prototype.SaveModel=function(currentUserID,params){var _this=this;return params==undefined&&(params={}),this.EditParams.IsNew?this.dataSvc.SaveNewModel(this.ApiPath,this.EditParams.Model,params,currentUserID,this.onSaveSuccess,this.onFail).then(function(response){response!=undefined&&(_this.EditParams.ID=response.ID,_this.EditParams.IsNew=!1,_this.EditParams.Model=response)}):(params.id=this.EditParams.ID,this.dataSvc.SaveExistingModel(this.EditParams.Model,params,currentUserID,this.onSaveSuccess,this.onFail))},RestService.prototype.DeleteModel=function(){var _this=this;return this.dataSvc.Delete(this.EditParams.Model,this.onDeleteSuccess,this.onFail).then(function(){_this.EditParams.ID=DefaultConstants.NEW_ID;_this.EditParams.Model=_this.dataSvc.NewItem(_this.ApiPath)})},RestService.prototype.SetupSelect2OptionParams=function(){return{}},RestService.prototype.Select2Options=function(maximumSelectionSize){var debouncedOptions=this.debounce(this.GetSelect2Options,this.SearchParams.DebounceTime);return{multiple:!1,maximumSelectionSize:maximumSelectionSize,query:$.proxy(debouncedOptions,this),formatSelection:$.proxy(this.FormatSelect2Options,this),formatResult:$.proxy(this.FormatSelect2Options,this),initSelection:$.proxy(this.InitSelect2Option,this)}},RestService.prototype.Select2OptionsMulti=function(){var debouncedOptions=this.debounce(this.GetSelect2Options,this.SearchParams.DebounceTime);return{multiple:!0,query:$.proxy(debouncedOptions,this),formatSelection:$.proxy(this.FormatSelect2Options,this),formatResult:$.proxy(this.FormatSelect2Options,this),initSelection:$.proxy(this.InitSelect2Option,this)}},RestService.prototype.FormatSelect2Options=function(item){return item.text!=undefined?item.text:item.Name},RestService.prototype.GetSelect2Options=function(query){var _this=this;query!=undefined?this.dataSvc.GetByName(this.ListModel,query.term,query.page,!0,this.GetOptionParams()).then(function(items){if(items!=undefined&&items!=null){_this.setTotalRows(items);var more=query.page*10<_this.SearchParams.TotalRows;_this.updateListForSelect2(items);query.callback({results:items,more:more})}else query.callback({results:[]})}):query.callback({results:[]})},RestService.prototype.InitSelect2Option=function(element,callback){var id=element.val(),object;angular.isString(id)&&id!=""&&(object=this.Get(this.ApiPath,id).then(function(response){callback({id:response.ID,text:response.Name})}))},RestService.prototype.updateListForSelect2=function(items){if(items!=undefined)for(var i=0;i0){for(results=[],i=0;i0){for(results=[],i=0;i0){for(results=[],i=0;i3&&(colleague.AllowedLanguagesTitle+=value),i<=2?colleague.AllowedLanguagesTranslated+=value:i==3&&(colleague.AllowedLanguagesTranslated+=" ...")}),colleagues},ColleagueService.prototype.TranslateManageTeamKeys=function(colleagues){var _this=this;colleagues.forEach(function(colleague){var consultancyFocusesLength,allowedCountriesLength,allowedLanguages,i,value;if(colleague.ConsultancyFocusesTitle="",colleague.AllowedCountriesTitle="",colleague.AllowedLanguagesTitle="",colleague.ConsultancyFocusesTranslated="",colleague.AllowedCountriesTranslated="",colleague.AllowedLanguagesTranslated="",colleague.ConsultancyFocuses)for(colleague.ConsultancyFocuses=colleague.ConsultancyFocuses.split(","),consultancyFocusesLength=colleague.ConsultancyFocuses.length,i=0;i3&&(colleague.ConsultancyFocusesTitle+=value),i<=2?colleague.ConsultancyFocusesTranslated+=value:i==3&&(colleague.ConsultancyFocusesTranslated+=" ...");if(colleague.AllowedCountries)for(colleague.AllowedCountries=colleague.AllowedCountries.split(","),allowedCountriesLength=colleague.AllowedCountries.length,i=0;i3&&(colleague.AllowedCountriesTitle+=value),i<=2?colleague.AllowedCountriesTranslated+=value:i==3&&(colleague.AllowedCountriesTranslated+=" ...");if(colleague.AllowedLanguages)for(colleague.AllowedLanguages=colleague.AllowedLanguages.split(","),allowedLanguages=colleague.AllowedLanguages.length,i=0;i3&&(colleague.AllowedLanguagesTitle+=value),i<=2?colleague.AllowedLanguagesTranslated+=value:i==3&&(colleague.AllowedLanguagesTranslated+=" ...")})},ColleagueService.prototype.getCalendarSchedulingPreference=function(){return this.Get(this.ApiPath+"/ColleagueSchedulePreferences")},ColleagueService.prototype.GetColleaguePreferenceScheduled=function(){return this.Get(this.ApiPath+"/ColleaguePreferenceScheduled")},ColleagueService.prototype.UpdateColleaguePreferenceScheduled=function(calenderScheduleRequest){return this.Post(this.ApiPath+"/ColleaguePreferenceScheduled",calenderScheduleRequest)},ColleagueService.$inject=[Services.LocalDataService.$name,Services.UserService.$name,NGenConstants.MODAL,NGenConstants.TRANSLATE_MANAGER,NGenConstants.Q_SERVICE],ColleagueService}(Services.RestService);Services.ColleagueService=ColleagueService,function(ColleagueService){ColleagueService.$name="colleagueSvc"}(Services.ColleagueService||(Services.ColleagueService={}));ColleagueService=Services.ColleagueService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={})),function(LHH){(function(Shared){(function(Services){var UserValidationService=function(){function UserValidationService(restangular){this.restangular=restangular}return UserValidationService.prototype.CheckEmailAddressFormat=function(email){if(email!==null&&email!==""&&email!==undefined)if(/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(email))return!0;return!1},UserValidationService.prototype.checkURLformat=function(siteURL){if(siteURL!==null&&siteURL!==""&&siteURL!==undefined)if(/^https?:\/\/(www\.)?([-a-zA-Z0-9@:%._\+~#=]{2,256})\.([a-z]{2,12})\b((?=\/)[-a-zA-Z0-9@:%_\+.~#?&//=]*|)$/.test(siteURL))return!0;return!1},UserValidationService.prototype.checkLinkedinFormat=function(linkedinURL){if(linkedinURL!==null&&linkedinURL!==""&&linkedinURL!==undefined)if(/(^https?:\/\/?((www|\w\w)\.)?linkedin\.com\/)((([\w]{2,3})?)|([^\/]+\/(([\[A-zÀ-ÿ0-9%$'*^'_.-]|\d-&#?=%])+\/?){1,}))$/.test(linkedinURL))return!0;return!1},UserValidationService.prototype.checkHashMasked=function(data){if(data!==null&&data!==""&&data!==undefined){var hashRegex=new RegExp("^[#]*$");if(hashRegex.test(data))return!0}return!1},UserValidationService.prototype.checkAstrickMasked=function(data){if(data!==null&&data!==""&&data!==undefined){var hashRegex=new RegExp("^[*]*$");if(hashRegex.test(data))return!0}return!1},UserValidationService.prototype.CheckPhoneNumberFormat=function(phoneNumber){if(phoneNumber!==null&&phoneNumber!==""&&phoneNumber!==undefined)if(/^[\d(+][\d .()/-]+[\d]+$/.test(phoneNumber))return!0;return!1},UserValidationService.prototype.checkPasswordLengthForCandidate=function(password){return password!=undefined&&password.length>=NGenConstants.PASSWORD_LENGTH_FOR_CANDIDATE?!0:!1},UserValidationService.prototype.checkPasswordLengthForColleague=function(password){return password!=undefined&&password.length>=NGenConstants.PASSWORD_LENGTH_FOR_COLLEAGUE?!0:!1},UserValidationService.prototype.checkPasswordForUppercase=function(password){var upperRegex=new RegExp("(?=.*[A-Z])");return upperRegex.test(password)?!0:!1},UserValidationService.prototype.checkPasswordForNumeric=function(password){var numRegex=new RegExp("(?=.*[0-9])");return numRegex.test(password)?!0:!1},UserValidationService.prototype.checkPasswordForSpecialChar=function(password){var specCharRegex=new RegExp("(?=.*[!@#$%^&*])");return specCharRegex.test(password)?!0:!1},UserValidationService.prototype.checkFirstAndLastNameForSpecialChar=function(name){return/^[^!"#%&<>@$()*^]+$/.test(name)?!0:!1},UserValidationService.prototype.checkUserNameAvail=function(userName,userID){return this.restangular.one(NGenConstants.ACCOUNT).customGET(NGenConstants.CHECK_USERNAME_AVAIL,{userName:userName,userID:userID})},UserValidationService.prototype.checkPasswordPrevious=function(password,userName,code){return this.restangular.one(NGenConstants.ACCOUNT).customPOST({Password:password,UserName:userName,Code:code},NGenConstants.IS_PREVIOUS_PASSWORD,{},{})},UserValidationService.prototype.checkUserNameSpaces=function(userName){return userName!=undefined&&userName!=""&&userName.indexOf(" ")<0?!0:!1},UserValidationService.prototype.checkUserNameLength=function(userName){return userName!=undefined&&userName.trim().length>=6?!0:!1},UserValidationService.prototype.checkUserNameSpecialCharacter=function(userName){return userName!=undefined&&userName.indexOf("\\")<0&&userName.indexOf("/")<0&&userName.indexOf("!")<0?!0:!1},UserValidationService.prototype.checkForUnsafeChar=function(text){var specCharRegex=new RegExp("(?=^[A-Za-z0-9._@-]*$)");return specCharRegex.test(text)?!0:!1},UserValidationService.prototype.checkNumericWithDecimal=function(data){if(data!==null&&data!==""&&data!==undefined){var hashRegex=new RegExp("^[0-9.]*$");if(hashRegex.test(data))return!0}return!1},UserValidationService.prototype.checkNumeric=function(data){if(data!==null&&data!==""&&data!==undefined){var hashRegex=new RegExp("^[0-9]*$");if(hashRegex.test(data))return!0}return!1},UserValidationService.$name="userValidationSvc",UserValidationService.$inject=[NGenConstants.RESTANGULAR],UserValidationService}();Services.UserValidationService=UserValidationService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){(function(User){(function(Roles){var PermissionsService=function(_super){function PermissionsService(dataSvc,$q){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.$q=$q;this.Setup(ServiceConstants.PERMISSION);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID)}return __extends(PermissionsService,_super),PermissionsService.prototype.SelectOptionsPermissions=function(){var debouncedOptions=this.debounce(this.GetSelect2Options,this.SearchParams.DebounceTime);return{multiple:!1,query:$.proxy(debouncedOptions,this),formatSelection:$.proxy(this.FormatSelect2Options,this),formatResult:$.proxy(this.FormatSelect2Options,this),initSelection:$.proxy(this.InitSelect2Option,this)}},PermissionsService.prototype.getRoleByPermission=function(id){return this.Get("RoleByPermission",id)},PermissionsService.prototype.removeRoleFromPermission=function(permissionId,roleId){return this.Delete("RemoveRoleFromPermission",{permissionId:permissionId,roleId:roleId})},PermissionsService.prototype.addRoleToPermission=function(permissionId,roleId){return this.Put("AddRoleToPermission",{permissionId:permissionId,roleId:roleId})},PermissionsService.$name="permissionsSvc",PermissionsService.$inject=[Services.LocalDataService.$name,NGenConstants.Q_SERVICE],PermissionsService}(Services.RestService);Roles.PermissionsService=PermissionsService})(User.Roles||(User.Roles={}));var Roles=User.Roles})(Services.User||(Services.User={}));var User=Services.User})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){(function(User){(function(Roles){var RolesService=function(_super){function RolesService(dataSvc,$q,$modal){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.$q=$q;this.$modal=$modal;this.Setup(ServiceConstants.ROLE);this.SearchParams.AllowSearchModal=!0;this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.AddSearchOption(FieldConstants.CATEGORY_FIELD,ResourceKeyConstants.NGEN_CATEGORY,"");this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID)}return __extends(RolesService,_super),RolesService.prototype.SetupSortOptions=function(){var options=_super.prototype.SetupSortOptions.call(this);return options.push({Field:FieldConstants.CATEGORY_FIELD,Name:ResourceKeyConstants.NGEN_CATEGORY}),options},RolesService.prototype.ShowSearchModal=function(){var modalInstance=this.$modal.open({templateUrl:PageConstants.ROLE_SEARCH_MODAL_VIEW,controller:Shared.Pages.Modals.RoleSearchModalController.$name,windowClass:"modal-large"})},RolesService.prototype.addPermissionToRole=function(permissionId,roleId){return this.Put(ServiceConstants.ADD_PERMISSION_TO_ROLE,{permissionId:permissionId,roleId:roleId})},RolesService.prototype.removePermissionFromRole=function(permissionId,roleId){return this.Delete(ServiceConstants.REMOVE_PERMISSION_FROM_ROLE,{permissionId:permissionId,roleId:roleId})},RolesService.prototype.checkNewRoleName=function(id,name){return this.Get(ServiceConstants.CHECK_NEW_ROLE_NAME,id,{name:name})},RolesService.prototype.getRolesList=function(params){return this.Get(ServiceConstants.ROLE,null,params)},RolesService.prototype.getAllRoles=function(){return this.Get("GetAllRoles")},RolesService.$name="rolesSvc",RolesService.$inject=[Services.LocalDataService.$name,NGenConstants.Q_SERVICE,ServiceConstants.MODAL],RolesService}(Services.RestService);Roles.RolesService=RolesService})(User.Roles||(User.Roles={}));var Roles=User.Roles})(Services.User||(Services.User={}));var User=Services.User})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){(function(User){var AppUserRoleService=function(_super){function AppUserRoleService(dataSvc,rolesSvc,permissionsSvc,$q){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.rolesSvc=rolesSvc;this.permissionsSvc=permissionsSvc;this.$q=$q;this.Setup(ServiceConstants.APPUSERROLE)}return __extends(AppUserRoleService,_super),AppUserRoleService.prototype.addRoleToUser=function(userId,roleId){return this.Post(ServiceConstants.ADD_APPUSERROLE,undefined,{userId:userId,roleId:roleId})},AppUserRoleService.prototype.removeRoleFromUser=function(userId,roleId){return this.Delete(ServiceConstants.DELETE_APPUSERROLE,{userId:userId,roleId:roleId})},AppUserRoleService.prototype.hasRole=function(roleId){return this.roles?this.roles.some(function(val){if(roleId!=undefined)return val.ID==roleId?!0:!1}):!1},AppUserRoleService.prototype.hasPermission=function(permissionId){return this.permissions?this.permissions.some(function(val){if(permissionId!=undefined)return val.ID==permissionId?!0:!1}):!1},AppUserRoleService.prototype.load=function(id){var _this=this,dependencies=[];return dependencies.push(this.loadRolesForUser(id).then(function(roles){return _this.roles=roles})),dependencies.push(this.loadPermissionsForUser(id).then(function(permissions){return _this.permissions=permissions})),this.$q.all(dependencies)},AppUserRoleService.prototype.loadRolePermission=function(id){var _this=this,dependencies=[],userRolesAndPermissions=JSON.parse(sessionStorage.getItem(ServiceConstants.ROLES_AND_PERMISSIONS));return userRolesAndPermissions==null||userRolesAndPermissions==undefined?dependencies.push(this.loadRolesAndPermissionsForUser(id).then(function(rolesAndPermissions){_this.roles=rolesAndPermissions.Roles;_this.permissions=rolesAndPermissions.Permissions})):dependencies.push(this.getRolesAndPermissionsAsync(userRolesAndPermissions)),this.$q.all(dependencies)},AppUserRoleService.prototype.getRolesAndPermissionsAsync=function(userRolesAndPermissions){var deferred=this.$q.defer();return this.roles=userRolesAndPermissions.Roles,this.permissions=userRolesAndPermissions.Permissions,deferred.resolve(),deferred.promise},AppUserRoleService.prototype.getNumberOfAssignedUsers=function(id){return this.Get(ServiceConstants.GET_ASSIGNED_USERS_COUNT,null,{roleID:id})},AppUserRoleService.prototype.loadPermissionsForUser=function(){return this.Get(ServiceConstants.PERMISSIONS_FOR_USER).then(function(permissions){if(permissions!=undefined)return permissions})},AppUserRoleService.prototype.loadRolesForUser=function(id){return this.Get(ServiceConstants.ROLESFORUSER,undefined,{id:id}).then(function(roles){if(roles!=undefined)return roles})},AppUserRoleService.prototype.loadRolesAndPermissionsForUser=function(id){return this.Get(ServiceConstants.LOAD_ROLES_AND_PERMISSIONS,undefined,{id:id}).then(function(rolesAndPermissions){if(rolesAndPermissions!=undefined)return sessionStorage.setItem(ServiceConstants.ROLES_AND_PERMISSIONS,JSON.stringify(rolesAndPermissions)),rolesAndPermissions})},AppUserRoleService.$inject=[Services.LocalDataService.$name,Services.User.Roles.RolesService.$name,Services.User.Roles.PermissionsService.$name,NGenConstants.Q_SERVICE],AppUserRoleService}(Services.RestService);User.AppUserRoleService=AppUserRoleService,function(AppUserRoleService){AppUserRoleService.$name="appUserRoleSvc"}(User.AppUserRoleService||(User.AppUserRoleService={}));AppUserRoleService=User.AppUserRoleService})(Services.User||(Services.User={}));var User=Services.User})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var CandidateActivityTopicSearchRequest=function(){function CandidateActivityTopicSearchRequest(){this.pageNumber=1;this.name="";this.sortField="Name";this.appendCountry=!0}return CandidateActivityTopicSearchRequest}(),CandidateActivityTopicService;Services.CandidateActivityTopicSearchRequest=CandidateActivityTopicSearchRequest;CandidateActivityTopicService=function(_super){function CandidateActivityTopicService(localDataService,translateManager){_super.call(this,localDataService);this.translateManager=translateManager;this.Setup(ServiceConstants.CANDIDATE_ACTIVITY_TOPIC);this.OptionParams={actvityTypeID:0,countryID:0,programID:0,lineOfBusinessID:0,programCategoryId:0}}return __extends(CandidateActivityTopicService,_super),CandidateActivityTopicService.prototype.setOptionsParams=function(actvityTypeID,countryID,programID,lineOfBusinessID,programCategoryId){this.OptionParams={actvityTypeID:actvityTypeID,countryID:countryID,programID:programID,lineOfBusinessID:lineOfBusinessID,programCategoryId:programCategoryId}},CandidateActivityTopicService.prototype.GetCandidateActivityTopics=function(actvityTypeID,countryID,programID,lineOfBusinessID,sortfield,pageNumber,pageSize,programCategoryId){return this.dataSvc.Get(this.ApiPath,undefined,{name:null,activityTypeID:actvityTypeID,countryID:countryID,programID:0,lineOfBusinessID:lineOfBusinessID,sortfield:sortfield,pageNumber:pageNumber,pageSize:pageSize,programCategoryId:programCategoryId})},CandidateActivityTopicService.prototype.GetCandidateActivityTopicID=function(name,activityTypeId,lobId,countryId){return this.dataSvc.Get(this.ApiPath+"/Details",undefined,{name:name,activityTypeId:activityTypeId,lobId:lobId,countryId:countryId})},CandidateActivityTopicService.prototype.SelectCandidateActiveActivityTopic=function(){var debouncedOptions=this.debounce(this.GetSelect2CandidateActiveActivityTopic,this.SearchParams.DebounceTime);return{multiple:!0,query:$.proxy(debouncedOptions,this),formatSelection:$.proxy(this.FormatSelect2Options,this),formatResult:$.proxy(this.FormatSelect2Options,this)}},CandidateActivityTopicService.prototype.GetSelect2CandidateActiveActivityTopic=function(query){var _this=this;query!=undefined?(query.exceptIds="",this.GetCandidateActiveActivityTopic(query).then(function(item){var more;if(item!=undefined&&item!=null&&item.length>0){var totalCount=item[0].totalRows,results=[],_that=_this;angular.forEach(item,function(value){if(value.ResourceKey!=null)var keys=value.ResourceKey.split(","),text=_that.translateManager.translate(keys[0])+(keys.length>1?" ("+_that.translateManager.translate(keys[1])+")":"");else text=value.Name;results.push({id:value.ID,text:text})});_this.SearchParams.TotalRows=totalCount;more=query.page*10<_this.SearchParams.TotalRows;query.callback({results:results,more:more})}else query.callback({results:[]})})):query.callback({results:[]})},CandidateActivityTopicService.prototype.GetCandidateActiveActivityTopic=function(query){var request=new CandidateActivityTopicSearchRequest;return request.pageNumber=query.page,request.name=query.term,this.Get(ServiceConstants.CANDIDATE_ACTIVITY_TOPIC,null,request)},CandidateActivityTopicService.$inject=[Services.LocalDataService.$name,NGenConstants.TRANSLATE_MANAGER],CandidateActivityTopicService.$name="candidateActivityTopicService",CandidateActivityTopicService}(Services.RestService);Services.CandidateActivityTopicService=CandidateActivityTopicService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var ContractService=function(_super){function ContractService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.CONTRACT);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID)}return __extends(ContractService,_super),ContractService.prototype.InitSelect2Option=function(element,callback){var id=element.val(),object;angular.isString(id)&&id!=""&&(object=this.Get(this.ApiPath,id).then(function(response){callback({id:response.ID,text:response.Name,CountryName:response.Country.Name})}))},ContractService.prototype.GetContracts=function(id,Name,pageNumber){return this.dataSvc.Get(this.ApiPath,undefined,{Name:Name,pageNumber:pageNumber,pageSize:10,id:id})},ContractService.prototype.GetContract=function(id){return this.dataSvc.Get(this.ApiPath+"/"+id)},ContractService.$inject=[Services.LocalDataService.$name],ContractService}(Services.RestService);Services.ContractService=ContractService,function(ContractService){ContractService.$name="contractSvc"}(Services.ContractService||(Services.ContractService={}));ContractService=Services.ContractService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var ContractProgramService=function(_super){function ContractProgramService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup("ContractProgram");this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID)}return __extends(ContractProgramService,_super),ContractProgramService.prototype.SetOptionParams=function(contractID,countryID,candidateTypeID,IsFromProgram){typeof IsFromProgram=="undefined"&&(IsFromProgram=!1);this.OptionParams.contractID=contractID;this.OptionParams.countryID=countryID;this.OptionParams.candidateTypeID=candidateTypeID;this.OptionParams.IsFromProgram=IsFromProgram},ContractProgramService.$name="contractProgramSvc",ContractProgramService.$inject=[Services.LocalDataService.$name],ContractProgramService}(Services.RestService);Services.ContractProgramService=ContractProgramService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var Log=LHH.NGen.Log,MessagingService=function(_super){function MessagingService(dataSvc,userSvc,$modal,$q){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.userSvc=userSvc;this.$modal=$modal;this.$q=$q;this.transitionQueueApi="TransitionQueue/Search";this.lastQueryDate=null;this.Setup(ServiceConstants.MESSAGING);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID)}return __extends(MessagingService,_super),MessagingService.prototype.FormatSelect2Options=function(item){return item.text?item.text:item.FullName},MessagingService.prototype.SetupSelect2OptionParams=function(){return{userStatus:1}},MessagingService.prototype.SetCandidateIdOption=function(candidateID){this.OptionParams.CandidateID=candidateID},MessagingService.prototype.SetAllColleagueOption=function(allColleague){this.OptionParams.isShowAllColleague=allColleague},MessagingService.prototype.SelectUserOptions=function(){var debouncedOptions=this.debounce(this.GetSelect2Options,this.SearchParams.DebounceTime);return{multiple:!1,query:$.proxy(debouncedOptions,this),initSelection:$.proxy(this.InitUserOptions,this),formatSelection:$.proxy(this.FormatSelect2Options,this),formatResult:$.proxy(this.FormatSelect2Options,this)}},MessagingService.prototype.InitUserOptions=function(element,callback){var id=element.val(),object;angular.isString(id)&&id!=""&&(object=this.userSvc.GetSimpleUser(id).then(function(response){callback({id:response.UserID,text:response.LastNameFirstName})}))},MessagingService.prototype.GetCandidateMessages=function(candidateID){return this.dataSvc.Get(this.ApiPath+"/CandidateMessages",undefined,{candidateID:candidateID})},MessagingService.prototype.GetMessage=function(messageID){return this.dataSvc.Get(this.ApiPath,messageID)},MessagingService.prototype.GetSubject=function(candidateID){return this.dataSvc.Get(ServiceConstants.MESSAGING+"/Subject",undefined,{candidateID:candidateID})},MessagingService.prototype.SendMessage=function(messageParams){return this.dataSvc.Post(this.ApiPath+"/SendMessage",messageParams)},MessagingService.prototype.SendMessageToCoach=function(messageParams){return this.dataSvc.Post(this.ApiPath+"/SendMessageToCoach",messageParams)},MessagingService.prototype.loadTransitionCandidates=function(consultantID){return this.lastQueryDate=LHH.DateHelper.getUTCDate(),this.dataSvc.Get(this.transitionQueueApi,consultantID)},MessagingService.prototype.getTransitionCandidates=function(id){var _this=this,defer=this.$q.defer();return this.isRefreshDataTimeExpired(this.lastQueryDate)||!this.transitionQueue?this.loadTransitionCandidates(id).then(function(result){_this.transitionQueue=result;defer.resolve(_this.transitionQueue)},function(error){Log.error(error,typeof _this);defer.reject(error)}):defer.resolve(this.transitionQueue),defer.promise},MessagingService.prototype.isRefreshDataTimeExpired=function(lastDateUpdated){if(!lastDateUpdated)return!0;var currentDate=moment(LHH.DateHelper.getUTCDate()),updatedDate=moment(lastDateUpdated),lastUpdatedInterval=moment.duration(currentDate.diff(updatedDate)).asMinutes();return this.refreshInterval0?(angular.forEach(item,function(value){results.push({id:value.ID,text:value.Name})}),_this.SearchParams.TotalRows=item[0].totalRows,more=query.page*10<_this.SearchParams.TotalRows,query.callback({results:results,more:more})):query.callback({results:[]})})):query.callback({results:[]})},ProgramGroupService.prototype.getSelect2ProgramGroups=function(query){return this.Get(this.ApiPath+"/GetProgramGroups?name="+query.term+"&exceptIDs="+query.exceptIds+"&sortField=1&sortAscending=true&pageNumber="+query.page+"&pageSize=10")},ProgramGroupService.prototype.getProgramGroupById=function(programGroupId){return this.Get(this.ApiPath+"/"+programGroupId)},ProgramGroupService.$name="programGroupSvc",ProgramGroupService.$inject=[Services.LocalDataService.$name],ProgramGroupService}(Services.RestService);Services.ProgramGroupService=ProgramGroupService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var NGenRedirectService=function(_super){function NGenRedirectService(localDataService){_super.call(this,localDataService);this.Setup("NGenRedirect")}return __extends(NGenRedirectService,_super),NGenRedirectService.prototype.getNGenRedirect=function(id){return this.Get(this.ApiPath,id)},NGenRedirectService.prototype.getNGenRedirectByProgramID=function(programID){return this.Get("NGenRedirectByProgramID",programID)},NGenRedirectService.prototype.addNGenRedirect=function(nGenRedirect){return this.Post(this.ApiPath,nGenRedirect)},NGenRedirectService.prototype.deleteNGenRedirect=function(id){return this.Delete(this.ApiPath,{id:id})},NGenRedirectService.prototype.deleteNGenRedirectByProgramId=function(programId){return this.Delete(this.ApiPath,{CRNProgramID:programId})},NGenRedirectService.prototype.exists=function(programID){return this.Get("NGenRedirectByProgramID",programID).then(function(result){return result!=undefined&&result.CRNProgramID==programID?!0:!1})},NGenRedirectService.$inject=[Services.LocalDataService.$name],NGenRedirectService.$name="nGenRedirectService",NGenRedirectService}(Services.RestService);Services.NGenRedirectService=NGenRedirectService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Modules){(function(Resume){(function(Services){var ResumeService=function(_super){function ResumeService(dataSvc,$modal,userManager,settingManager,$q,restangular,apiString){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.$modal=$modal;this.userManager=userManager;this.settingManager=settingManager;this.$q=$q;this.restangular=restangular;this.apiString=apiString;this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID);this.Setup(ServiceConstants.RESUME);this.SetupApiSwitch(ServiceConstants.RESUME_MICROSERVICE_API_PATH)}return __extends(ResumeService,_super),ResumeService.prototype.GetForUser=function(userID){return this.dataSvc.Get(this.ApiPath+"/GetForUser",userID)},ResumeService.prototype.UpdatePBS=function(userID,pbsID){return this.dataSvc.Put(this.ApiPath+"/UpdatePBS",{userID:userID,pbsID:pbsID})},ResumeService.prototype.UpdateBrandingSupport=function(userID,bssID){return this.dataSvc.Put(this.ApiPath+"/UpdateBrandingSupport",{userID:userID,brandingSupportId:bssID})},ResumeService.prototype.openResumeModal=function(candidate){var modalInstance=this.$modal.open({templateUrl:"Spa/shared/pages/modals/resume/resumeUploadModal.htm",controller:LHH.Shared.Pages.Modals.ResumeUploadModalController.$name,windowClass:"modal-large",resolve:{candidate:function(){return candidate}},backdrop:"static"})},ResumeService.prototype.UploadResume=function(candidateID,fd){return this.dataSvc.PostFile(this.ApiPath+"/UploadResume/"+candidateID,fd)},ResumeService.prototype.GetBrandingResume=function(candidateID){return this.Get(this.ApiPath+"/GetBrandingResume",candidateID)},ResumeService.prototype.GetResumeStatus=function(candidateID){return this.dataSvc.Get(this.ApiPath+"/GetResumeStatus",candidateID)},ResumeService.prototype.GetDecentralizeBrandingStatus=function(candidateID){return this.dataSvc.Get(this.ApiPath+"/GetDecentralizeBrandingStatus",candidateID)},ResumeService.prototype.GetDTEResume=function(candidateID){return this.dataSvc.getBlobFile(ServiceConstants.RESUME+"/GetDTEResume/"+candidateID,null,{Accept:"application/pdf","Content-Type":"application/pdf"})},ResumeService.prototype.GetPublicDTEResume=function(candidateID){return this.dataSvc.getBlobFile(ServiceConstants.RESUME+"/GetPublicDTEResume/"+candidateID,null,{Accept:"application/pdf","Content-Type":"application/pdf"})},ResumeService.prototype.GetDTEResumeInfo=function(candidateID){return this.dataSvc.getDTEResumeInfo(candidateID)},ResumeService.prototype.GetdownloadDTEResume=function(candidateID,documentID){return this.dataSvc.downloadDTEResume(candidateID,documentID)},ResumeService.prototype.PublishDTEResume=function(candidateID,documentID){return this.Post("/Resume/PublishToTextKernel/"+candidateID+"/"+documentID,null)},ResumeService.prototype.RepublishDTEResume=function(candidateID,talentProfileId){return typeof talentProfileId=="undefined"&&(talentProfileId=null),talentProfileId==null&&(talentProfileId=this.userManager.CurrentUser.TalentProfileId),this.Post(this.ApiPathSwitch+"/RepublishDTE/"+candidateID+"?talentProfileId="+talentProfileId,null)},ResumeService.prototype.GetDTEResumeStatus=function(candidateID){return this.Get(this.ApiPathSwitch+"/GetDTEResumeStatus/"+candidateID+"?talentProfileId="+this.userManager.CurrentUser.TalentProfileId+"&compaasUserId="+this.userManager.CurrentUser.CompaasUserId+"&countryCode="+this.userManager.CurrentUser.CountryCode+"&timeZoneId="+this.userManager.CurrentUser.TimeZoneID,null)},ResumeService.prototype.DeleteDTEResume=function(candidateID,resumeId,talentProfileId){var resumeId,talentProfileId;return resumeId||(resumeId=this.userManager.CurrentUser.ResumeId),talentProfileId||(talentProfileId=this.userManager.CurrentUser.TalentProfileId),this.Delete("TalentProfileMS/Resume/"+candidateID+"/null?talentProfileId="+talentProfileId+"&resumeId="+resumeId)},ResumeService.prototype.MakeDTEResumePrivate=function(candidateID,system,talentProfileId){typeof talentProfileId=="undefined"&&(talentProfileId=null);var deferred=this.$q.defer();return talentProfileId==null&&(talentProfileId=this.userManager.CurrentUser.TalentProfileId),this.Put("/TalentProfileMS/MakeDTEResumePrivate/"+candidateID+"/"+system+"?talentProfileId="+talentProfileId)},ResumeService.prototype.UploadResumeReplaceProfile=function(candidateID,fd,isRedeployment){var _this=this;return this.Post(this.ApiPath+"/UploadResumeDocument/"+isRedeployment+"/false/"+this.userManager.CurrentUser.CountryID,fd).then(function(response){var resume={};return resume.UserDocument=response,resume.CandidateId=candidateID,resume.LoggedInUserID=_this.userManager.CurrentUser.ID,resume.IsRedeployment=isRedeployment,resume.siteType=_this.userManager.CurrentUser.SiteType,resume.compaasUserId=_this.userManager.CurrentUser.CompaasUserId,resume.countryCode=_this.userManager.CurrentUser.CountryCode,resume.ProfilePublishingStatus=0,_this.Post("Talentcloud/Resume/ReplaceProfile",resume).then(function(){}).catch(function(error){bootbox.alert(error)})}).catch(function(error){bootbox.alert(error)})},ResumeService.prototype.GetTalentCloudResume=function(candidateID){return this.Get("Talentcloud/Resume/"+candidateID)},ResumeService.prototype.GetResume=function(candidateId,resumeDocumentId){return this.dataSvc.getBlobFile("Resume/Download/"+candidateId+"/"+resumeDocumentId.ID,{userId:candidateId,docIds:resumeDocumentId.ID},{Accept:"application/octet-stream"})},ResumeService.$inject=[LHH.Shared.Services.LocalDataService.$name,NGenConstants.MODAL,NGenConstants.USER_MANAGER,NGenConstants.SETTING_MANAGER,NGenConstants.Q_SERVICE],ResumeService}(LHH.Shared.Services.RestService);Services.ResumeService=ResumeService,function(ResumeService){ResumeService.$name="resumeSvc"}(Services.ResumeService||(Services.ResumeService={}));ResumeService=Services.ResumeService})(Resume.Services||(Resume.Services={}));var Services=Resume.Services})(Modules.Resume||(Modules.Resume={}));var Resume=Modules.Resume})(Shared.Modules||(Shared.Modules={}));var Modules=Shared.Modules})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var OfficeService=function(_super){function OfficeService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.OFFICE)}return __extends(OfficeService,_super),OfficeService.prototype.FormatSelect2Options=function(item){return item.text?item.text:item.Name},OfficeService.prototype.SelectOfficeOptions=function(countryID){typeof countryID=="undefined"&&(countryID=null);this.OptionParams.countryID=countryID;var debouncedOptions=this.debounce(this.GetSelect2Options,this.SearchParams.DebounceTime);return{multiple:!1,query:$.proxy(debouncedOptions,this),initSelection:$.proxy(this.InitOfficeOptions,this),formatSelection:$.proxy(this.FormatSelect2Options,this),formatResult:$.proxy(this.FormatSelect2Options,this)}},OfficeService.prototype.InitOfficeOptions=function(element,callback){var id=element.val(),object;angular.isString(id)&&id!=""&&(object=this.dataSvc.Get(this.ApiPath,id).then(function(response){callback({id:response.ID,text:response.Name})}))},OfficeService.prototype.OfficeTemplate=function(item){var officeName=item.Name==null||item.Name==undefined?"":item.Name,address1=item.Address1==null||item.Address1==undefined?"":item.Address1,city=item.City==null||item.City==undefined?"":item.City,state=item.State==null||item.State==undefined?"":item.State,postalCode=item.PostalCode==null||item.PostalCode==undefined?"":item.PostalCode;return"

"+officeName+"<\/p>

"+address1+"<\/p>

"+city+" "+state+" "+postalCode+"<\/p><\/div>

<\/div>"},OfficeService.prototype.FormatOfficeAddress=function(item){if(item!=undefined)var res=this.OfficeTemplate(item);return res},OfficeService.prototype.SelectOfficeAddressOptions=function(costcenter,isAvailability){typeof isAvailability=="undefined"&&(isAvailability=!1);this.OptionParams.isAvailability=isAvailability;this.OptionParams.costcenter=costcenter;var debouncedOptions=this.debounce(this.GetSelect2Options,this.SearchParams.DebounceTime);return{query:$.proxy(this.loadOfficeAddress,this),initSelection:$.proxy(this.InitOfficeAddress,this),formatSelection:$.proxy(this.FormatOfficeAddress,this),formatResult:$.proxy(this.FormatOfficeAddress,this)}},OfficeService.prototype.loadOfficeAddress=function(query){var _this=this;query!=undefined?(query.exceptIds="",this.dataSvc.Get(this.ApiPath+"/OfficeAddressSearch",null,{name:query.term,pageNumber:query.page,costcenter:this.OptionParams.costcenter,isAvailability:this.OptionParams.isAvailability}).then(function(items){items!=undefined&&items!=null&&items.length>0?_this.processResult(items,query):query.callback({results:[]})})):query.callback({results:[]})},OfficeService.prototype.processResult=function(items,query){var results=[],totalRows,i,more;for(items[0]!=undefined&&(totalRows=items[0].totalRows,totalRows==undefined&&(totalRows=0)),i=0;i0?this.dataSvc.Get(this.apiPath).then(function(result){return _this.loggedInUserContentKeys=result,result}):this.dataSvc.InstantPromise(this.loggedInUserContentKeys)},UserContentAccessService.prototype.keysAreLoaded=function(){return this.loggedInUserContentKeys!==null},UserContentAccessService.prototype.GetAllForUser=function(userID){var _this=this;return this.dataSvc.Get(this.apiPath+"/GetAllForUser",userID).then(function(result){return _this.userContentKeys=result,result})},UserContentAccessService.prototype.HasKey=function(key){return this.loggedInUserContentKeys&&this.loggedInUserContentKeys.filter(function(v){return v===key}).length>0},UserContentAccessService.prototype.HasKeyInUserContentKeys=function(key){return this.userContentKeys&&this.userContentKeys.filter(function(v){return v===key}).length>0},UserContentAccessService.prototype.Reset=function(){this.loggedInUserContentKeys=null},UserContentAccessService.prototype.ResetUserContentKeys=function(){this.userContentKeys=null},UserContentAccessService.$name="UserContentAccessSvc",UserContentAccessService.$inject=[Services.LocalDataService.$name,NGenConstants.Q_SERVICE],UserContentAccessService}();Services.UserContentAccessService=UserContentAccessService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var LoginHistoryService=function(_super){function LoginHistoryService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.LOGIN_HISTORY)}return __extends(LoginHistoryService,_super),LoginHistoryService.prototype.getCandidateSummary=function(userId,timeZoneId){return this.Get(this.ApiPath+"/CandidateSummary",undefined,{userId:userId,timeZoneId:timeZoneId})},LoginHistoryService.$inject=[Services.LocalDataService.$name],LoginHistoryService}(Services.RestService);Services.LoginHistoryService=LoginHistoryService,function(LoginHistoryService){LoginHistoryService.$name="loginHistorySvc"}(Services.LoginHistoryService||(Services.LoginHistoryService={}));LoginHistoryService=Services.LoginHistoryService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var SiteService=function(_super){function SiteService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.SITE);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID);this.SetSortField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME)}return __extends(SiteService,_super),SiteService.$name="siteSvc",SiteService.$inject=[Services.LocalDataService.$name],SiteService}(Services.RestService);Services.SiteService=SiteService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var BannersService=function(_super){function BannersService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.HOME_BANNER);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID);this.SetSortField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME)}return __extends(BannersService,_super),BannersService.prototype.DeleteContentAccessFromBanners=function(homeBannerID,userId){return this.Post("HomeBanner/DeleteContentAccess",null,{homeBannerID:homeBannerID,userId:userId})},BannersService.$name="bannersSvc",BannersService.$inject=[LHH.Shared.Services.LocalDataService.$name],BannersService}(LHH.Shared.Services.RestService);Services.BannersService=BannersService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var ExploreCategoryService=function(_super){function ExploreCategoryService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.EXPLORE_CATEGORY)}return __extends(ExploreCategoryService,_super),ExploreCategoryService.prototype.GetExploreCategoryByContentAccess=function(param){return this.Get("ExploreCategory/LoadExploreCategoriesByContentAccess",null,param)},ExploreCategoryService.prototype.DeleteContentAccessFromExploreCateory=function(exploreCategoryID){return this.Post("ExploreCategory/DeleteContentAccess",null,{exploreCategoryID:exploreCategoryID})},ExploreCategoryService.$name="exploreCategoryServiceSvc",ExploreCategoryService.$inject=[LHH.Shared.Services.LocalDataService.$name],ExploreCategoryService}(LHH.Shared.Services.RestService);Services.ExploreCategoryService=ExploreCategoryService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var GoalsService=function(_super){function GoalsService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.GOALS);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID);this.SetSortField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME)}return __extends(GoalsService,_super),GoalsService.prototype.DeleteContentAccessFromGoals=function(goalId){return this.Post("Goal/DeleteContentAccess",null,{goalId:goalId})},GoalsService.$name="goalsServiceSvc",GoalsService.$inject=[LHH.Shared.Services.LocalDataService.$name],GoalsService}(LHH.Shared.Services.RestService);Services.GoalsService=GoalsService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var InitiativesService=function(_super){function InitiativesService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.INITIATIVES);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID);this.SetSortField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME)}return __extends(InitiativesService,_super),InitiativesService.prototype.DeleteContentAccessFromInitiatives=function(InitiativeID,userId){return this.Post("Initiatives/DeleteContentAccess",null,{InitiativeID:InitiativeID,userId:userId})},InitiativesService.$name="initiativesSvc",InitiativesService.$inject=[LHH.Shared.Services.LocalDataService.$name],InitiativesService}(LHH.Shared.Services.RestService);Services.InitiativesService=InitiativesService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var RoadmapsService=function(_super){function RoadmapsService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.ROADMAP);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID);this.SetSortField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME)}return __extends(RoadmapsService,_super),RoadmapsService.prototype.DeleteContentAccessFromRoadmaps=function(roadmapId,userId){return this.Post("Roadmap/DeleteContentAccess",null,{roadmapId:roadmapId,userId:userId})},RoadmapsService.$name="roadmapsServiceSvc",RoadmapsService.$inject=[LHH.Shared.Services.LocalDataService.$name],RoadmapsService}(LHH.Shared.Services.RestService);Services.RoadmapsService=RoadmapsService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var SiteTypeService=function(_super){function SiteTypeService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.SITETYPE);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID);this.SetSortField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME)}return __extends(SiteTypeService,_super),SiteTypeService.prototype.InitSelect2Option=function(element,callback){var ids=element.val(),object;angular.isString(ids)&&ids!=""&&(object=this.Get(this.ApiPath,null,{ids:ids}).then(function(response){response.length>0&&callback({id:response[0].ID,text:response[0].Name})}))},SiteTypeService.$name="siteTypeSvc",SiteTypeService.$inject=[Services.LocalDataService.$name],SiteTypeService}(Services.RestService);Services.SiteTypeService=SiteTypeService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var AudioService=function(_super){function AudioService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.AUDIO);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID)}return __extends(AudioService,_super),AudioService.$name="audioSvc",AudioService.$inject=[Services.LocalDataService.$name],AudioService}(Services.RestService);Services.AudioService=AudioService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var SubjectService=function(_super){function SubjectService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.SUBJECT);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME)}return __extends(SubjectService,_super),SubjectService.$name="subjectSvc",SubjectService.$inject=[Services.LocalDataService.$name],SubjectService}(Services.RestService);Services.SubjectService=SubjectService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var TagService=function(_super){function TagService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.TAG);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME)}return __extends(TagService,_super),TagService.$name="tagSvc",TagService.$inject=[Services.LocalDataService.$name],TagService}(Services.RestService);Services.TagService=TagService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var ResourceKeyService=function(_super){function ResourceKeyService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.RESOURCEKEY);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME)}return __extends(ResourceKeyService,_super),ResourceKeyService.prototype.FormatSelect2Options=function(item){return item.text!=undefined?item.text:item.Key},ResourceKeyService.prototype.InitSelect2Option=function(element,callback){var id=element.val();angular.isString(id)&&id!=""&&this.Get(this.ApiPath,id).then(function(item){callback({id:item.ID,text:item.Key})})},ResourceKeyService.prototype.resourceKeyOptions=function(){return{multiple:!1,query:$.proxy(function(query){this.resourceKeyQuery(query)},this),formatSelection:$.proxy(this.FormatSelect2Options,this),formatResult:$.proxy(this.FormatSelect2Options,this),initSelection:$.proxy(this.InitSelect2OptionByKey,this)}},ResourceKeyService.prototype.resourceKeyQuery=function(query){var _this=this;this.dataSvc.Get(this.ApiPath,null,{key:query.term,pageNumber:query.page}).then(function(items){var more=query.page*10<_this.SearchParams.TotalRows;_this.updateitems(items);query.callback({results:items,more:more})})},ResourceKeyService.prototype.InitSelect2OptionByKey=function(element,callback){var key=element.val();angular.isString(key)&&key!=""&&this.dataSvc.Get(this.ApiPath,null,{key:key}).then(function(item){callback({id:item[0].Key,text:item[0].Key})})},ResourceKeyService.prototype.updateitems=function(items){if(items!=undefined)for(var i=0;i "+item.Name},ImageFileService.prototype.InitSelect2Option=function(element,callback){var id=element.val();angular.isString(id)&&id!=""&&this.Get(this.ApiPath,id).then(function(item){callback({id:item.ID,Name:item.Name,Key:item.Key})})},ImageFileService.$name="imageFileSvc",ImageFileService.$inject=[Services.LocalDataService.$name],ImageFileService}(Services.RestService);Services.ImageFileService=ImageFileService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var InitiativeService=function(_super){function InitiativeService(dataSvc,$modal){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.$modal=$modal;this.Setup(ServiceConstants.INITIATIVE);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME)}return __extends(InitiativeService,_super),InitiativeService.prototype.isInitiativeOnly=function(state){return state.name==ServiceConstants.INITIATIVE_ONLY_STATE||state.name==ServiceConstants.QUESTION_ANSWER_REPORT_ONLY_STATE?!0:!1},InitiativeService.prototype.getInitiativeTypes=function(userID,typeID){return typeof typeID=="undefined"&&(typeID=null),this.dataSvc.restangular.all("Initiative/GetType").getList({userID:userID,typeID:typeID})},InitiativeService.prototype.addActionsToInitiative=function(actionIds,initiativeId){return this.Post(this.ApiPath+"/Action",{initiativeId:initiativeId,ItemsIds:actionIds})},InitiativeService.prototype.removeActionFromInitiative=function(actionId,initiativeId){return this.Delete(this.ApiPath+"/Action",{actionId:actionId,initiativeId:initiativeId})},InitiativeService.prototype.getInitiatives=function(prms){return this.dataSvc.Get(ServiceConstants.INITIATIVE_API_PATH+"/cards",null,prms)},InitiativeService.prototype.getTypes=function(){return this.dataSvc.Get(ServiceConstants.INITIATIVE_API_PATH+"/types",null)},InitiativeService.prototype.getInitiative=function(initiativeID){return this.dataSvc.Get(ServiceConstants.INITIATIVE_API_PATH,initiativeID)},InitiativeService.prototype.getAssociatedToDos=function(initiativeID,userID){return this.Get(ServiceConstants.INITIATIVE_API_PATH+"/ToDos/"+initiativeID+"/"+userID,null)},InitiativeService.prototype.updateAssociatedToDos=function(initiativeID,userID){return this.Put(ServiceConstants.INITIATIVE_API_PATH+"/ToDos/"+initiativeID+"/"+userID,null)},InitiativeService.prototype.createAutomaticToDosForRoadmap=function(roadMapID,userID){roadMapID!=undefined&&this.Post(ServiceConstants.INITIATIVE_API_PATH+"/ToDos/GenerateForRoadmap/"+roadMapID+"/"+userID,null)},InitiativeService.prototype.getInitiativeExploreCategory=function(ExploreCategoryId){return this.Get(ServiceConstants.GET_EXPLORE_CATEGORY_INITIATIVE,null,{ExploreCategoryId:ExploreCategoryId}).then(function(result){return result})},InitiativeService.prototype.updateInitiativeExploreCategorySort=function(Initiativeslist){return this.Post(ServiceConstants.UPDATE_EXPLORE_CATEGORY_INITIATIVE,Initiativeslist)},InitiativeService.prototype.formatNameID=function(item){var name=item.text||item.Name;return item.ID!=undefined&&(name+=" ("+item.ID+")"),name},InitiativeService.prototype.generateCandidatesTodosByHomePage=function(homePageID){this.Post(ServiceConstants.INITIATIVE_API_PATH+"/ToDos/GenerateCandidatesTodosByHomePage/"+homePageID,null)},InitiativeService.prototype.updateInitiativeSort=function(initiatives){return this.Post(ServiceConstants.UPDATE_ZONE_INITIATIVE_SORT_API_PATH,initiatives)},InitiativeService.prototype.getZoneInitiatives=function(ZoneId){return this.Get(ServiceConstants.GET_ZONE_INITIATIVE_API_PATH,null,{ZoneId:ZoneId})},InitiativeService.prototype.openBookmarkConfirmationModal=function(initiative,zoneName){var modalInstance=this.$modal.open({templateUrl:"Spa/bookmark/modals/BookmarkConfirmationModal.htm",controller:LHH.Bookmark.Controllers.BookmarkConfirmationModalController.$name,windowClass:"bookmark-modal-small",resolve:{initiative:function(){return initiative},zoneName:function(){return zoneName}},backdrop:"static"})},InitiativeService.$name="initiativeSvc",InitiativeService.$inject=[Shared.Services.LocalDataService.$name,"$modal",NGenConstants.Q_SERVICE,NGenConstants.ROOT_SCOPE],InitiativeService}(Services.RestService);Services.InitiativeService=InitiativeService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var CronofyNewEventService=function(_super){function CronofyNewEventService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.CRONOFYEVENT)}return __extends(CronofyNewEventService,_super),CronofyNewEventService.prototype.AddCronofyEvent=function(cronofyEvent){return this.Post(this.ApiPath+"/PostCronofyNewEvent/",cronofyEvent)},CronofyNewEventService.$name="cronofyNewEventSvc",CronofyNewEventService.$inject=[Services.LocalDataService.$name],CronofyNewEventService}(Services.RestService);Services.CronofyNewEventService=CronofyNewEventService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var CalendarCountryDayScheduleService=function(_super){function CalendarCountryDayScheduleService(dataSvc,$modal){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.$modal=$modal;this.Setup(ServiceConstants.CALENDAR_COUNTRY_DAY_SCHEDULE)}return __extends(CalendarCountryDayScheduleService,_super),CalendarCountryDayScheduleService.prototype.getCalendarCountryDayScheduleByCountryId=function(countryId){return this.Get(this.ApiPath+"/CountryDayScheduleByCountryId/"+countryId)},CalendarCountryDayScheduleService.$name="CalendarCountryDayScheduleSvc",CalendarCountryDayScheduleService.$inject=[Services.LocalDataService.$name],CalendarCountryDayScheduleService}(Services.RestService);Services.CalendarCountryDayScheduleService=CalendarCountryDayScheduleService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var ColleagueOfficeService=function(_super){function ColleagueOfficeService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.COLLEAGUE_OFFICE);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID)}return __extends(ColleagueOfficeService,_super),ColleagueOfficeService.prototype.OfficeTemplate=function(item){var officeName=item.Name==null||item.Name==undefined?"":item.Name,address1=item.Address1==null||item.Address1==undefined?"":item.Address1,city=item.City==null||item.City==undefined?"":item.City,state=item.State==null||item.State==undefined?"":item.State,postalCode=item.PostalCode==null||item.PostalCode==undefined?"":item.PostalCode;return"

"+officeName+"<\/p>

"+address1+"<\/p>

"+city+" "+state+" "+postalCode+"<\/p><\/div>

<\/div>"},ColleagueOfficeService.prototype.FormatSelect2Options=function(item){if(item!=undefined)var res=this.OfficeTemplate(item);return res},ColleagueOfficeService.prototype.SelectOfficeOptions=function(isScheduleWithColleague,SelectedHostId,SelectedOfficeId,SelectedRoleId,LanguageID,SelectedSpecialityId){typeof isScheduleWithColleague=="undefined"&&(isScheduleWithColleague=!1);typeof SelectedHostId=="undefined"&&(SelectedHostId=null);typeof SelectedOfficeId=="undefined"&&(SelectedOfficeId=null);typeof SelectedRoleId=="undefined"&&(SelectedRoleId=null);typeof LanguageID=="undefined"&&(LanguageID=null);typeof SelectedSpecialityId=="undefined"&&(SelectedSpecialityId=null);this.OptionParams.isScheduleWithColleague=isScheduleWithColleague;this.OptionParams.selectedHostId=SelectedHostId;this.OptionParams.selectedOfficeId=SelectedOfficeId;this.OptionParams.selectedRoleId=SelectedRoleId;this.OptionParams.languageId=LanguageID;this.OptionParams.selectedSpecialityId=SelectedSpecialityId;var debouncedOptions=this.debounce(this.GetSelect2Options,this.SearchParams.DebounceTime);return{query:$.proxy(this.loadOffice,this),initSelection:$.proxy(this.InitOfficeOptions,this),formatSelection:$.proxy(this.FormatSelect2Options,this),formatResult:$.proxy(this.FormatSelect2Options,this)}},ColleagueOfficeService.prototype.loadOffice=function(query){if(query!=undefined){var _this=this;query.exceptIds="";this.dataSvc.Get(this.ApiPath,null,{name:query.term,isScheduleWithColleague:_this.OptionParams.isScheduleWithColleague,SelectedHostId:_this.OptionParams.selectedHostId,SelectedOfficeId:_this.OptionParams.selectedOfficeId,SelectedRoleId:_this.OptionParams.selectedRoleId,LanguageID:_this.OptionParams.languageId,SelectedSpecialityId:_this.OptionParams.selectedSpecialityId}).then(function(items){var results,i;if(items!=undefined&&items!=null&&items.length>0){for(results=[],i=0;i0&&angular.forEach(item.Surveys,function(value){results.push({id:value.id,text:value.name})}),_this.SearchParams.TotalRows=item.totalCount,more=query.page*10<_this.SearchParams.TotalRows,query.callback({results:results,more:more})):query.callback({results:[]})})):query.callback({results:[]})},ConsultantSurveyMSService.prototype.InitSurveyOptions=function(element,callback){var id=element.val(),request;angular.isString(id)&&id!=""&&(request={surveyId:id,vendorSurveyId:null,surveyName:null,createdDate:null,createdDateInString:"",createdBy:"",type:null,pageNumber:1,pageSize:10,sortDirection:"ASC",sortName:"Name",timeZoneID:this.userManager.CurrentUser.TimeZoneID,includeInActive:!1},(this.OptionParams.selectedSurveyType!=null||this.OptionParams.selectedSurveyType!="")&&(request.type=this.OptionParams.selectedSurveyType),this.SurveySearch(request).then(function(item){element.val()&&item&&item.Surveys&&item.Surveys.length>0&&callback({id:item.Surveys[0].id,text:item.Surveys[0].name})}))},ConsultantSurveyMSService.prototype.descendingSortByConsultantLastDateHelper=function(a,b){if(a.DateSentLast!=null&&b.DateSentLast!=null){var aStr=a.DateSentLast.toString(),bStr=b.DateSentLast.toString(),_b=new Date(bStr).getTime(),_a=new Date(aStr).getTime();return _b-_a}return 0},ConsultantSurveyMSService.prototype.descendingSortBySurveyCompleteDateHelper=function(a,b){if(a.finalSurveyCompleteDate!=null&&b.finalSurveyCompleteDate!=null){var aStr=a.finalSurveyCompleteDate.toString(),bStr=b.finalSurveyCompleteDate.toString(),_b=new Date(bStr).getTime(),_a=new Date(aStr).getTime();return _b-_a}return 0},ConsultantSurveyMSService.prototype.descendingSortBySurveyInterimCompleteDateHelper=function(a,b){if(a.interimSurveyCompleteDate!=null&&b.interimSurveyCompleteDate!=null){var aStr=a.interimSurveyCompleteDate.toString(),bStr=b.interimSurveyCompleteDate.toString(),_b=new Date(bStr).getTime(),_a=new Date(aStr).getTime();return _b-_a}return 0},ConsultantSurveyMSService.prototype.descendingSortBySurveyActivityCompleteDateHelper=function(a,b){if(a.activitySurveyCompleteDate!=null&&b.activitySurveyCompleteDate!=null){var aStr=a.activitySurveyCompleteDate.toString(),bStr=b.activitySurveyCompleteDate.toString(),_b=new Date(bStr).getTime(),_a=new Date(aStr).getTime();return _b-_a}return 0},ConsultantSurveyMSService.$name="consultantSurveyMSService",ConsultantSurveyMSService.$inject=[Services.LocalDataService.$name,NGenConstants.MODAL,NGenConstants.USER_MANAGER],ConsultantSurveyMSService}(Services.RestService);Services.ConsultantSurveyMSService=ConsultantSurveyMSService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Modules){(function(Jobs){(function(Services){var CandidateLocationService=function(_super){function CandidateLocationService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.CANDIDATE_LOCATION_API_PATH)}return __extends(CandidateLocationService,_super),CandidateLocationService.prototype.getCandidateLocation=function(userID){return this.Get(this.ApiPath+"/IdealJobLocation",userID)},CandidateLocationService.prototype.saveCandidateLocation=function(info){return this.Post(this.ApiPath+"/SaveIdealJobLocation",info)},CandidateLocationService.$name="candidateLocationSvc",CandidateLocationService.$inject=[LHH.Shared.Services.LocalDataService.$name],CandidateLocationService}(LHH.Shared.Services.RestService);Services.CandidateLocationService=CandidateLocationService})(Jobs.Services||(Jobs.Services={}));var Services=Jobs.Services})(Modules.Jobs||(Modules.Jobs={}));var Jobs=Modules.Jobs})(Shared.Modules||(Shared.Modules={}));var Modules=Shared.Modules})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Modules){(function(Jobs){(function(Services){var CandidateMostRecentJobService=function(_super){function CandidateMostRecentJobService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.CANDIDATE_MOST_RECENT_JOB)}return __extends(CandidateMostRecentJobService,_super),CandidateMostRecentJobService.prototype.getCandidateMostRecentJob=function(userID){return this.Get(this.ApiPath+"/Details",userID)},CandidateMostRecentJobService.prototype.saveCandidateMostRecentJob=function(info){return this.Post(this.ApiPath+"/Save",info)},CandidateMostRecentJobService.$name="candidateMostRecentJobSvc",CandidateMostRecentJobService.$inject=[LHH.Shared.Services.LocalDataService.$name],CandidateMostRecentJobService}(LHH.Shared.Services.RestService);Services.CandidateMostRecentJobService=CandidateMostRecentJobService})(Jobs.Services||(Jobs.Services={}));var Services=Jobs.Services})(Modules.Jobs||(Modules.Jobs={}));var Jobs=Modules.Jobs})(Shared.Modules||(Shared.Modules={}));var Modules=Shared.Modules})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={})),function(LHH){(function(Shared){(function(Services){var PublisherSubscriberService=function(){function PublisherSubscriberService(){this.subscribers=new Array(0)}return PublisherSubscriberService.prototype.publish=function(){this.subscribers.forEach(function(subscriber){if(subscriber!=undefined){var subscriberObject=subscriber;subscriberObject.subscriber()}})},PublisherSubscriberService.prototype.subscribe=function(subscriber){var results=this.subscribers.filter(function(s){return s.subscriberName==subscriber.subscriberName});results.length==0?this.subscribers.push(subscriber):results[0].subscriber=subscriber.subscriber},PublisherSubscriberService.$name="publisherSubscriberService",PublisherSubscriberService}();Services.PublisherSubscriberService=PublisherSubscriberService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={})),function(LHH){(function(Shared){(function(Services){var CandidateStylesService=function(){function CandidateStylesService(){this.candidateAttentionColor="#d6643c";this.candidateZerotAttentionColor="#737880";this.candidateSatisfactoryColor="#737880";this.candidateOutperformingColor="#93c648"}return CandidateStylesService.prototype.getSettingByName=function(settingName){return this.settings==undefined?undefined:this.settings[settingName]},CandidateStylesService.prototype.loadCandidateRanges=function(){this.scoreStyles=[{range:{minValue:this.getSettingByName(DefaultConstants.CANDIDATE_ZERO_ATTENTION_STYLE_VALUE),maxValue:this.getSettingByName(DefaultConstants.CANDIDATE_ZERO_ATTENTION_STYLE_VALUE)},styles:{color:this.candidateZerotAttentionColor,background:""}},{range:{minValue:this.getSettingByName(DefaultConstants.CANDIDATE_ATTENTION_STYLE_MIN_VALUE),maxValue:this.getSettingByName(DefaultConstants.CANDIDATE_ATTENTION_STYLE_MAX_VALUE)},styles:{color:this.candidateAttentionColor,background:""}},{range:{minValue:this.getSettingByName(DefaultConstants.CANDIDATE_SATISFACTORY_STYLE_MIN_VALUE),maxValue:this.getSettingByName(DefaultConstants.CANDIDATE_SATISFACTORY_STYLE_MAX_VALUE)},styles:{color:this.candidateSatisfactoryColor,background:""}},{range:{minValue:this.getSettingByName(DefaultConstants.CANDIDATE_OUTPERFORMING_STYLE_MIN_VALUE),maxValue:this.getSettingByName(DefaultConstants.CANDIDATE_OUTPERFORMING_STYLE_MAX_VALUE)},styles:{color:this.candidateOutperformingColor,background:""}}]},CandidateStylesService.prototype.init=function(settings){this.settings=settings;this.loadCandidateRanges()},CandidateStylesService.prototype.getCandidateFrameStyles=function(scoreNumber){var scoreStyles=this.scoreStyles,i,scoreStyle;if(scoreNumber)for(i=0;i=scoreStyle.range.minValue&&scoreNumber<=scoreStyle.range.maxValue)return scoreStyle.styles;return scoreStyles[0].styles},CandidateStylesService.$name="candidateStylesSvc",CandidateStylesService}();Services.CandidateStylesService=CandidateStylesService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var CandidateActivitiesService=function(_super){function CandidateActivitiesService(dataSvc,$modal){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.$modal=$modal;this.comingFromAcivitySummary=!1;this.enableEditSummary=!1;this.isCandidate=!1;this.callFromCandidate=!1;this.callFromColleague=!1;this.isProjectTypeChanged=!1;this.isToDoCreated=!1;this.Setup(ServiceConstants.CANDIDATE_ACTIVITY);this.comingFromAcivitySummary=!1;this.enableEditSummary=!1;this.isProjectTypeChanged=!1;this.isToDoCreated=!1}return __extends(CandidateActivitiesService,_super),CandidateActivitiesService.prototype.getLastActivites=function(candidateID,timeZoneID){return this.dataSvc.Get(this.ApiPath+"/CandidateLastActivities",candidateID,{timeZoneID:timeZoneID})},CandidateActivitiesService.prototype.openActivityUpdatedModal=function(totalUpdated){var modalInstance=this.$modal.open({templateUrl:"Spa/shared/pages/modals/activity/candidateActivityUpdatedModal.htm",controller:Shared.Pages.Modals.CandidateActivityUpdatedModalController.$name,windowClass:"modal-large",resolve:{totalUpdated:function(){return totalUpdated}},backdrop:"static"})},CandidateActivitiesService.prototype.setCandidates=function(candidates){this.candidates=candidates},CandidateActivitiesService.prototype.getCandidates=function(){return this.candidates},CandidateActivitiesService.prototype.setEnableEditSummary=function(flag){this.enableEditSummary=flag},CandidateActivitiesService.prototype.setIsProjectTypeChanges=function(flag){this.isProjectTypeChanged=flag},CandidateActivitiesService.prototype.setIsToDoCreated=function(flag){this.isToDoCreated=flag},CandidateActivitiesService.prototype.getEnableEditSummary=function(){return this.enableEditSummary},CandidateActivitiesService.prototype.setComingFromAcivitySummaryFlag=function(flag){this.comingFromAcivitySummary=flag},CandidateActivitiesService.prototype.getComingFromAcivitySummaryFlag=function(){return this.comingFromAcivitySummary},CandidateActivitiesService.prototype.getIsCandidateFlag=function(){return this.isCandidate},CandidateActivitiesService.prototype.SetCandidateActivitySummaryPrerequisite=function(candidateActivityTabDirCtrl,activity,enableEditSummary,isComingFromActivityFlow){this.candidateActivityTabDirCtrl=candidateActivityTabDirCtrl;this.activity=activity;this.enableEditSummary=enableEditSummary;this.comingFromAcivitySummary=isComingFromActivityFlow;this.callFromCandidate=!0;this.callFromColleague=!1},CandidateActivitiesService.prototype.SetColleagueActivitySummaryPrerequisite=function(candidateActivityTabDirCtrl,colleagueActivity,enableEditSummary,isComingFromActivityFlow,isCandidate){this.colleagueActivityTabDirCtrl=candidateActivityTabDirCtrl;this.colleagueActivity=colleagueActivity;this.enableEditSummary=enableEditSummary;this.comingFromAcivitySummary=isComingFromActivityFlow;this.isCandidate=isCandidate;this.callFromCandidate=!1;this.callFromColleague=!0},CandidateActivitiesService.prototype.getcallFromColleague=function(){return this.callFromColleague},CandidateActivitiesService.prototype.getcallFromCandidate=function(){return this.callFromCandidate},CandidateActivitiesService.prototype.GetCandidateActivityTabDirCtrl=function(){return this.candidateActivityTabDirCtrl},CandidateActivitiesService.prototype.GetColleagueActivityTabDirCtrl=function(){return this.colleagueActivityTabDirCtrl},CandidateActivitiesService.prototype.GetColleagueActivity=function(){return this.colleagueActivity},CandidateActivitiesService.prototype.GetCandidateActivity=function(){return this.activity},CandidateActivitiesService.prototype.openActivitySummaryModal=function(candidateID,consultantID,candidateFullName,emailCc){var modalInstance=this.$modal.open({templateUrl:"Spa/shared/pages/modals/activity/candidateActivitySummaryModal.htm",controller:Shared.Pages.Modals.CandidateActivitySummaryModalController.$name,windowClass:"modal-large",resolve:{candidateID:function(){return candidateID},consultantID:function(){return consultantID},candidateFullName:function(){return candidateFullName},emailCc:function(){return emailCc}},backdrop:"static"})},CandidateActivitiesService.prototype.openActivityModal=function(methodID,candidateID,consultantID,activityDuration,activityTypeID,activityTopicID,candidateFullName,activityID,notificationID,pageType,previousModalinstance,isInactive,emailCc,calEventDate,calEventTime,eventID,isOngoingPastEvent,activitiesTab,selectedCandidates,processId,isAdhocActivity){typeof emailCc=="undefined"&&(emailCc=null);typeof calEventDate=="undefined"&&(calEventDate=null);typeof calEventTime=="undefined"&&(calEventTime=null);typeof eventID=="undefined"&&(eventID=0);typeof isOngoingPastEvent=="undefined"&&(isOngoingPastEvent=!1);typeof activitiesTab=="undefined"&&(activitiesTab=undefined);typeof selectedCandidates=="undefined"&&(selectedCandidates=null);typeof processId=="undefined"&&(processId=null);typeof isAdhocActivity=="undefined"&&(isAdhocActivity=!1);var modalInstance=this.$modal.open({templateUrl:"Spa/shared/pages/modals/activity/candidateActivityModal.htm",controller:Shared.Pages.Modals.CandidateActivityModalController.$name,windowClass:"modal-large",resolve:{candidateID:function(){return candidateID},consultantID:function(){return consultantID},methodID:function(){return methodID},activityTypeID:function(){return activityTypeID},activityTopicID:function(){return activityTopicID},isEdit:function(){return!1},activityDuration:function(){return activityDuration},candidateFullName:function(){return candidateFullName},activityID:function(){return activityID},notificationID:function(){return notificationID},pageType:function(){return pageType},candidateNotificationStatus:function(){return undefined},previousModalinstance:function(){return previousModalinstance},isCalendarInvite:function(){return!1},isInactive:function(){return isInactive},emailCc:function(){return emailCc},calEventDate:function(){return calEventDate},calEventTime:function(){return calEventTime},eventID:function(){return eventID},existingCandidateIds:function(){return null},isOngoingPastEvent:function(){return isOngoingPastEvent},activitiesTab:function(){return activitiesTab},selectedCandidates:function(){return selectedCandidates},processId:function(){return ProcessingInstruction},isAdhocActivity:function(){return isAdhocActivity}},backdrop:"static"})},CandidateActivitiesService.prototype.getCandidateActivityDefaultNotes=function(activityMethodID,languageID){return this.dataSvc.Get(this.ApiPath+"/DefaultNotes",undefined,{activityMethodID:activityMethodID,languageID:languageID}).then(function(result){return result?JSON.parse(result):null})},CandidateActivitiesService.prototype.getBulkEmailCandidateCardDetail=function(bulkID){return this.dataSvc.Get("BulkEmailCandidateCardDetail",bulkID)},CandidateActivitiesService.prototype.getColleagueActivities=function(staffId,timeZoneId,startDate,endDate){return this.Post(this.ApiPath+"/Activities",{StaffId:staffId,TimeZoneId:timeZoneId,StartDate:startDate,EndDate:endDate})},CandidateActivitiesService.prototype.getAllColleagueActivities=function(staffId,timeZoneId,startDate,endDate,pageNumber,pageSize){return this.Post(this.ApiPath+"/Activities",{StaffId:staffId,TimeZoneId:timeZoneId,StartDate:startDate,EndDate:endDate},{PageNumber:pageNumber,PageSize:pageSize})},CandidateActivitiesService.prototype.getColleagueActivitiesByPagination=function(staffId,timeZoneId,startDate,endDate,pageNumber,pageSize,activityTypeId){return this.Post(this.ApiPath+"/Activities",{StaffId:staffId,TimeZoneId:timeZoneId,StartDate:startDate,EndDate:endDate,ActivityTypeId:activityTypeId},{PageNumber:pageNumber,PageSize:pageSize})},CandidateActivitiesService.prototype.getColleagueSubActivities=function(bulkId,timeZoneId){return this.Get(this.ApiPath+"/SubActivities",undefined,{bulkId:bulkId,timeZoneId:timeZoneId})},CandidateActivitiesService.prototype.postCandidateActivityCalendarEvent=function(candidateActivities){return this.Post(this.ApiPath+"/CandidateActivityCalendarEvent",candidateActivities)},CandidateActivitiesService.prototype.AddUpdateCandidateActivity=function(candidateActivity,eventID){return typeof eventID=="undefined"&&(eventID=0),this.Post("/AddUpdatedCandidateActivity",{candidateActivity:candidateActivity,eventID:eventID})},CandidateActivitiesService.prototype.getResumeActivities=function(candidateID,timeZoneID){return this.dataSvc.Get(this.ApiPath+"/ResumeActivities",undefined,{candidateID:candidateID,timeZoneID:timeZoneID})},CandidateActivitiesService.prototype.getCandidateActivityFilterCount=function(candidateID){return this.dataSvc.Get(this.ApiPath+"/GetCandidateActivityFilterCount",candidateID)},CandidateActivitiesService.prototype.getColleaguesReferralActivitiesCount=function(staffId,TimeZoneId,startDate,endDate,activityTypeId){return this.Post(this.ApiPath+"/ReferralActivitiesCount",{StaffId:staffId,TimeZoneId:TimeZoneId,StartDate:startDate,EndDate:endDate,ActivityTypeId:activityTypeId})},CandidateActivitiesService.prototype.openAlertModal=function(message,btnOkText){var modalInstance=this.$modal.open({templateUrl:"Spa/shared/common/modals/alertmodal.htm",controller:Shared.Pages.Modals.AlertModalController.$name,windowClass:"modal-large",resolve:{message:function(){return message},btnOkText:function(){return btnOkText}},backdrop:"static"})},CandidateActivitiesService.prototype.DeleteCandidateActivity=function(staffId,candidateActivityID,deleteAll,isDelete){return typeof deleteAll=="undefined"&&(deleteAll=!1),typeof isDelete=="undefined"&&(isDelete=!1),this.Delete(this.ApiPath+"/DeleteCandidateActivity",{staffId:staffId,candidateActivityID:candidateActivityID,deleteAll:deleteAll,isDelete:isDelete})},CandidateActivitiesService.prototype.openConfirmModal=function(message,btnAcceptText,btnDeclineText,activityModal,candidateActivityInfo){var modalInstance=this.$modal.open({templateUrl:UsersConstants.CONFIRMATION_MODAL_HTM,controller:Shared.Pages.Modals.ConfirmationModalController.$name,windowClass:"modal-large",resolve:{message:function(){return message},callbackAccept:function(){return function(){return activityModal.callbackAccept(candidateActivityInfo)}},callbackDecline:function(){return function(){return activityModal.callbackDecline()}},btnAcceptText:function(){return btnAcceptText},btnDeclineText:function(){return btnDeclineText}},backdrop:"static"})},CandidateActivitiesService.prototype.showActivitySummaryDeleteByID=function(candidateActivityID){return this.Get(this.ApiPath+"/CandidateActivity",undefined,{id:candidateActivityID})},CandidateActivitiesService.prototype.openDeleteBulkDecisionModel=function(bulkID,candidateActivity,emailcc,activitiesTab,isDelete){typeof activitiesTab=="undefined"&&(activitiesTab=undefined);typeof isDelete=="undefined"&&(isDelete=!1);var modalInstance=this.$modal.open({templateUrl:"Spa/shared/pages/modals/activity/editBulkDecisionModal.htm",controller:LHH.Shared.Pages.Modals.EditBulkDecisionModalController.$name,windowClass:"modal-large modal-phone",resolve:{bulkID:function(){return bulkID},candidateActivity:function(){return candidateActivity},emailcc:function(){return emailcc},activitiesTab:function(){return activitiesTab},isDelete:function(){return isDelete}},backdrop:"static"})},CandidateActivitiesService.prototype.isValidMaskedEmails=function(emailData){return this.dataSvc.Post("Email/IsValidMaskedEMails",emailData)},CandidateActivitiesService.prototype.getCandidateProfile=function(candidateId){return this.Get(ServiceConstants.ALTEDIA+"/GetCandidateProfile",candidateId)},CandidateActivitiesService.prototype.getProgramProjectType=function(){return this.Get(ServiceConstants.ALTEDIA+"/GetProgramProjectType")},CandidateActivitiesService.prototype.getProgramProjectTypeById=function(ProjectTypeId){return this.Get(ServiceConstants.ALTEDIA+"/GetProgramProjectTypeById",ProjectTypeId)},CandidateActivitiesService.prototype.GetCandidateLOBId=function(candidateID){return this.Get(ServiceConstants.PROGRAM_DATA+"/GetCandidateLOBId",candidateID)},CandidateActivitiesService.prototype.getAdvancementType=function(ProjectTypeID){return this.Get(ServiceConstants.ALTEDIA+"/GetAdvancementType",ProjectTypeID)},CandidateActivitiesService.prototype.GetProgramCategoryId=function(candidateID){return this.Get(ServiceConstants.PROGRAM_DATA+"/GetProgramCategoryId",candidateID)},CandidateActivitiesService.$name="candidateActivitiesSvc",CandidateActivitiesService.$inject=[Services.LocalDataService.$name,NGenConstants.MODAL],CandidateActivitiesService}(Services.RestService);Services.CandidateActivitiesService=CandidateActivitiesService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var CandidateActivityTypeService=function(_super){function CandidateActivityTypeService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.CANDIDATE_ACTIVITY_SERVICE)}return __extends(CandidateActivityTypeService,_super),CandidateActivityTypeService.prototype.getCandidateActivityType=function(candidateId){return this.Get(this.ApiPath+"/CandidateActivitiyTypeLineOfBusiness",undefined,{candidateId:candidateId})},CandidateActivityTypeService.prototype.getCandidateActivityTypeProgramCategory=function(programCategory){return this.Get(this.ApiPath+"/CandidateActivityTypePorgramCategory",undefined,{programCategory:programCategory})},CandidateActivityTypeService.prototype.getCandidateActiveActivityType=function(){return this.Get(this.ApiPath+"/CandidateActiveActivityTypes")},CandidateActivityTypeService.prototype.SelectCandidateActiveActivityType=function(){var debouncedOptions=this.debounce(this.GetSelect2CandidateActiveActivityType,this.SearchParams.DebounceTime);return{multiple:!0,query:$.proxy(debouncedOptions,this),formatSelection:$.proxy(this.FormatSelect2Options,this),formatResult:$.proxy(this.FormatSelect2Options,this)}},CandidateActivityTypeService.prototype.GetSelect2CandidateActiveActivityType=function(query){var _this=this;query!=undefined?(query.exceptIds="",this.GetCandidateActiveActivityType(query).then(function(item){var results,more;item!=undefined&&item!=null&&item.length>0?(results=[],angular.forEach(item,function(value){results.push({id:value.ID,text:value.Name})}),query.term&&(results=results.filter(function(x){return x.text.toLowerCase().includes(query.term.toLowerCase())})),results.sort(function(a,b){var nameA=a.text.toLowerCase(),nameB=b.text.toLowerCase();return nameAnameB?1:0}),_this.SearchParams.TotalRows=item.TotalCount,more=query.page*10<_this.SearchParams.TotalRows,query.callback({results:results,more:more})):query.callback({results:[]})})):query.callback({results:[]})},CandidateActivityTypeService.prototype.GetCandidateActiveActivityType=function(){return this.Get(ServiceConstants.CANDIDATE_ACTIVITY_SERVICE+"/CandidateActiveActivityTypes",null)},CandidateActivityTypeService.$name="candidateActivityTypeSvc",CandidateActivityTypeService.$inject=[Services.LocalDataService.$name],CandidateActivityTypeService}(Services.RestService);Services.CandidateActivityTypeService=CandidateActivityTypeService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var ColleagueActivityTypeService=function(_super){function ColleagueActivityTypeService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.COLLEAGUE_ACTIVITY_TYPE_SERVICE)}return __extends(ColleagueActivityTypeService,_super),ColleagueActivityTypeService.prototype.getColleagueAllActivityType=function(){return this.Get(this.ApiPath+"/ColleagueAllActivityType")},ColleagueActivityTypeService.$name="colleagueActivityTypeSvc",ColleagueActivityTypeService.$inject=[Services.LocalDataService.$name],ColleagueActivityTypeService}(Services.RestService);Services.ColleagueActivityTypeService=ColleagueActivityTypeService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var ColleagueBioService=function(_super){function ColleagueBioService(dataSvc,$modal){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.$modal=$modal;this.Setup(ServiceConstants.COLLEAGUE)}return __extends(ColleagueBioService,_super),ColleagueBioService.prototype.getColleagueAllBio=function(colleagueId){return this.Get(this.ApiPath+"/ColleagueBio",colleagueId)},ColleagueBioService.prototype.updateColleagueBio=function(colleagueBio){return this.Post(this.ApiPath+"/UpdateBio",colleagueBio)},ColleagueBioService.prototype.deleteColleagueBio=function(colleagueBioId){return this.Delete(this.ApiPath+"/DeleteBio",{colleageBioId:colleagueBioId})},ColleagueBioService.prototype.openConfirmModal=function(message,btnAcceptText,btnDeclineText,yesCallback,noCallback){var modalInstance=this.$modal.open({templateUrl:UsersConstants.CONFIRMATION_MODAL_HTM,controller:Shared.Pages.Modals.ConfirmationModalController.$name,windowClass:"modal-large",resolve:{message:function(){return message},callbackAccept:function(){return function(){return yesCallback()}},callbackDecline:function(){return function(){return noCallback()}},btnAcceptText:function(){return btnAcceptText},btnDeclineText:function(){return btnDeclineText}},backdrop:"static"})},ColleagueBioService.prototype.OpenColleagueBioModal=function(colleagueObj){var modalInstance=this.$modal.open({templateUrl:"Spa/users/colleague/modals/colleagueBio.htm",controller:"colleagueBioModalCtrl",windowClass:"modal-medium",resolve:{colleagueObj:function(){return colleagueObj}},backdrop:"static"})},ColleagueBioService.$name="colleagueBioSvc",ColleagueBioService.$inject=[Services.LocalDataService.$name,NGenConstants.MODAL],ColleagueBioService}(Services.RestService);Services.ColleagueBioService=ColleagueBioService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={})),function(LHH){(function(Shared){(function(Services){var UpdateProfilePhotoService=function(){function UpdateProfilePhotoService(translateManager,$modal,localDataSvc){this.translateManager=translateManager;this.$modal=$modal;this.localDataSvc=localDataSvc}return UpdateProfilePhotoService.prototype.ShowUpdateProfileModal=function(){return this.$modal.open({templateUrl:LHH.Shared.Modules.Modals.UpdateProfilePhotoController.$view,controller:LHH.Shared.Modules.Modals.UpdateProfilePhotoController.$name,windowClass:"r19-modal"})},UpdateProfilePhotoService.prototype.close=function(ctrl){ctrl.$modalInstance.dismiss("close")},UpdateProfilePhotoService.$name="UpdateProfilePhotoSvc",UpdateProfilePhotoService.$inject=[NGenConstants.TRANSLATE_MANAGER,NGenConstants.MODAL,Shared.Services.LocalDataService.$name],UpdateProfilePhotoService}();Services.UpdateProfilePhotoService=UpdateProfilePhotoService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={})),function(LHH){(function(Shared){(function(Services){var id_token="",ADB2CAuthService=function(){function ADB2CAuthService(){this.account=null;this.loginRedirectRequest=null;this.intervals=[];this.IsAdb2cLogin=!1;this.myMSALObj=null;this.postlogouturl="/"}return Object.defineProperty(ADB2CAuthService.prototype,"getIsAdb2cLogin",{get:function(){return this.IsAdb2cLogin},enumerable:!0,configurable:!0}),Object.defineProperty(ADB2CAuthService.prototype,"setIsAdb2cLogin",{set:function(IsAdb2cLoginFlag){this.IsAdb2cLogin=IsAdb2cLoginFlag},enumerable:!0,configurable:!0}),ADB2CAuthService.prototype.setPostLogoutUrl=function(postlogouturl){this.postlogouturl=postlogouturl;this.myMSALObj.config.auth.postLogoutRedirectUri=this.postlogouturl},ADB2CAuthService.prototype.configureMSAL=function(tenantName,clientid,redirectUrl,siginPolicyName,customdomain){var _this=this,cacheLocation,msalConfig;return this.loginRedirectRequest={scopes:["openid","offline_access","https://"+tenantName+".onmicrosoft.com/NgenCandidateAPI/access_as_user"]},this.loginRedirectRequest[NGenConstants.EXTRA_QUERY_PARAMETERS]={},cacheLocation="sessionStorage",msalConfig={auth:{clientId:clientid,authority:"https://"+customdomain+"/"+tenantName+".onmicrosoft.com/"+siginPolicyName,knownAuthorities:[customdomain],redirectUri:redirectUrl,navigateToLoginRequestUrl:!0},cache:{cacheLocation:cacheLocation,storeAuthStateInCookie:!1},system:{loggerOptions:{loggerCallback:function(level,message){switch(level){case msal.LogLevel.Error:LHH.NGen.Log.error(message,typeof _this);return;case msal.LogLevel.Info:LHH.NGen.Log.info(message,typeof _this);return;case msal.LogLevel.Verbose:LHH.NGen.Log.debug(message,typeof _this);return;case msal.LogLevel.Warning:LHH.NGen.Log.warn(message,typeof _this);return}}}}},this.myMSALObj=new msal.PublicClientApplication(msalConfig),this.myMSALObj},ADB2CAuthService.prototype.getAccount=function(){if(!this.myMSALObj)return null;var currentAccounts=this.myMSALObj.getAllAccounts();return currentAccounts===null?(LHH.NGen.Log.error(UserConstants.NO_ACCOUNTS_DETECTED,typeof this),null):currentAccounts.length>1?(LHH.NGen.Log.error(UserConstants.MULTIPLE_ACCOUNTS_DETECTED,typeof this),currentAccounts[0]):currentAccounts.length===1?currentAccounts[0]:null},ADB2CAuthService.prototype.handleResponse=function(response){var _this=this;response!==null?(this.account=response.account,id_token=response.idToken):this.getAccount();this.account&&this.getTokenRedirect(this.account).then(function(res){LHH.NGen.Log.info("Access Token "+res,typeof _this)})},ADB2CAuthService.prototype.login=function(domain_hint,ngenUserId,sessionGuid,kmsi){if(typeof domain_hint=="undefined"&&(domain_hint=null),typeof ngenUserId=="undefined"&&(ngenUserId=null),typeof sessionGuid=="undefined"&&(sessionGuid=null),typeof kmsi=="undefined"&&(kmsi=null),!this.myMSALObj)return null;domain_hint!=null&&ngenUserId!=null&&(this.loginRedirectRequest[NGenConstants.EXTRA_QUERY_PARAMETERS]={domain_hint:domain_hint,ngenUId:ngenUserId});this.loginRedirectRequest[NGenConstants.EXTRA_QUERY_PARAMETERS]?this.loginRedirectRequest[NGenConstants.EXTRA_QUERY_PARAMETERS].sessionGuid=sessionGuid:this.loginRedirectRequest[NGenConstants.EXTRA_QUERY_PARAMETERS]={sessionGuid:sessionGuid};this.loginRedirectRequest[NGenConstants.EXTRA_QUERY_PARAMETERS]?this.loginRedirectRequest[NGenConstants.EXTRA_QUERY_PARAMETERS].kmsi=kmsi:this.loginRedirectRequest[NGenConstants.EXTRA_QUERY_PARAMETERS]={kmsi:kmsi};this.loginRedirectRequest[NGenConstants.EXTRA_QUERY_PARAMETERS].cookieaccepted=localStorage.getItem(NGenConstants.COOKIE_BANNER_KEY)==NGenConstants.COOKIE_BANNER_VALUE?"true":"false";sessionStorage.getItem(NGenConstants.BRANDING_URL)&&(this.loginRedirectRequest[NGenConstants.EXTRA_QUERY_PARAMETERS]?this.loginRedirectRequest[NGenConstants.EXTRA_QUERY_PARAMETERS].branding_customer=sessionStorage.getItem(NGenConstants.BRANDING_URL):this.loginRedirectRequest[NGenConstants.EXTRA_QUERY_PARAMETERS]={branding_customer:sessionStorage.getItem(NGenConstants.BRANDING_URL)});this.loginRedirectRequest[NGenConstants.EXTRA_QUERY_PARAMETERS]["ui-locales"]=LHH.BrowserHelper.currentPreferredLanguage();this.myMSALObj.loginRedirect(this.loginRedirectRequest)},ADB2CAuthService.prototype.logout=function(){var logOutRequest={account:this.account,idTokenHint:id_token};localStorage.removeItem(NGenConstants.SESSION_DATA);sessionStorage.removeItem(NGenConstants.SESSION_DATA);sessionStorage.removeItem(NGenConstants.TOKEN_DATA);localStorage.removeItem(NGenConstants.SESSION_INFO);localStorage.removeItem(NGenConstants.SESSION_TIMEOUT_TIME);this.myMSALObj.logoutRedirect(logOutRequest)},ADB2CAuthService.prototype.getTokenRedirect=function(account){var _this=this,request=this.loginRedirectRequest;return request.account=account,this.myMSALObj.acquireTokenSilent(request).catch(function(error){LHH.NGen.Log.error(UserConstants.SILENT_TOKEN_ACQUISITION_FAILS,typeof _this);error instanceof msal.InteractionRequiredAuthError?(LHH.NGen.Log.error(error,typeof _this),_this.myMSALObj.acquireTokenRedirect(request)):LHH.NGen.Log.error(error,typeof _this)})},ADB2CAuthService.prototype.urlBase64Decode=function(str){var output=str.replace(/-/g,"+").replace(/_/g,"/");switch(output.length%4){case 0:break;case 2:output+="==";break;case 3:output+="=";break;default:throw"Illegal base64url string!";}return decodeURIComponent(window.escape(window.atob(output)))},ADB2CAuthService.prototype.getDecodedData=function(token){var parts,decoded;if(typeof token=="undefined"&&(token=""),token===null||token==="")return null;if(parts=token.accessToken?token.accessToken.split("."):token.AccessToken.split("."),parts.length!==3)throw new Error("JWT must have 3 parts");if(decoded=JSON.parse(this.urlBase64Decode(parts[1])),decoded)return decoded;throw new Error("Cannot decode the token");},ADB2CAuthService.prototype.decodeJwtToken=function(token){var parts,decoded;if(typeof token=="undefined"&&(token=""),token===null||token==="")return null;if(parts=token.accessToken.split("."),parts.length!==3)throw new Error("JWT must have 3 parts");if(decoded=JSON.parse(this.urlBase64Decode(parts[1])),!decoded)throw new Error("Cannot decode the token");var expDate=new Date(decoded.exp*1e3),iatDate=new Date(decoded.iat*1e3);return{AccessToken:token.accessToken,ExpireDate:expDate,IssuedDate:iatDate,UserName:decoded.name,TokenType:"bearer",ExpiresIn:decoded.exp-decoded.iat}},ADB2CAuthService.prototype.ssoLoginB2C=function(token){sessionStorage[NGenConstants.SSO_IN_PROGRESS]=NGenConstants.ADB2C_LOGIN_FLAG;this.loginRedirectRequest[NGenConstants.EXTRA_QUERY_PARAMETERS]={id_token_hint:token};this.login()},ADB2CAuthService.$name="ADB2CAuthSvc",ADB2CAuthService}();Services.ADB2CAuthService=ADB2CAuthService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var CandidateContactPhoneService=function(_super){function CandidateContactPhoneService(dataSvc,$modal){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.$modal=$modal;this.Setup(ServiceConstants.CANDIDATE_ACTIVITY)}return __extends(CandidateContactPhoneService,_super),CandidateContactPhoneService.prototype.getTimerDuration=function(){return setInterval(function(){},1e3)},CandidateContactPhoneService.prototype.openPhoneActivityModal=function(methodID,candidateID,consultantID,activityDuration,activityTypeID,activityTopicID,candidateFullName,activityID,isInactive){var modalInstance=this.$modal.open({templateUrl:"Spa/shared/pages/modals/contact/call.modal.htm",controller:Shared.Pages.Modals.CallModalController,windowClass:"modal-large modal-phone",resolve:{candidateID:function(){return candidateID},consultantID:function(){return consultantID},methodID:function(){return methodID},activityTypeID:function(){return activityTypeID},activityTopicID:function(){return activityTopicID},isEdit:function(){return!1},activityDuration:function(){return activityDuration},candidateFullName:function(){return candidateFullName},activityID:function(){return activityID},isInactive:function(){return isInactive}},backdrop:"static"})},CandidateContactPhoneService.$name="candidateContactPhoneSvc",CandidateContactPhoneService.$inject=[LHH.Shared.Services.LocalDataService.$name,NGenConstants.MODAL],CandidateContactPhoneService}(Services.RestService);Services.CandidateContactPhoneService=CandidateContactPhoneService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var CandidateEngagementEmailService=function(_super){function CandidateEngagementEmailService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.CANDIDATEENGAGEMENTEMAIL)}return __extends(CandidateEngagementEmailService,_super),CandidateEngagementEmailService.prototype.candidateMailDefault=function(candidateIDs,shortMessage,emailEngagementID,nextOutreachDate,outreachComment,sendToEmail){var _this=this,params;return typeof sendToEmail=="undefined"&&(sendToEmail=null),params={emailEngagementID:emailEngagementID,shortMessage:shortMessage,candidateIDs:candidateIDs,nextOutreachDate:nextOutreachDate,outreachComment:outreachComment,sendToEmail:sendToEmail},this.dataSvc.Post(this.ApiPath+"/"+ServiceConstants.CANDIDATE_MAIL_DEFAULT,params).then(function(){_this.dataSvc.sendSuccess(ServiceConstants.CANDIDATE_MAIL_DEFAULT)}).catch(function(reason){sessionStorage.getItem("AdB2cKeyValues")&&JSON.parse(sessionStorage.getItem("AdB2cKeyValues")).IsAdb2cLogin&&reason.status==401||_this.dataSvc.sendFailure(ServiceConstants.CANDIDATE_MAIL_DEFAULT,reason)})},CandidateEngagementEmailService.prototype.candidateMailInstaStart=function(candidateIDs,shortMessage,emailEngagementID,VGSOID,outreachComment,sendToEmail){var _this=this,params;return typeof sendToEmail=="undefined"&&(sendToEmail=null),params={emailEngagementID:emailEngagementID,shortMessage:shortMessage,candidateIDs:candidateIDs,VGSOID:VGSOID,outreachComment:outreachComment,sendToEmail:sendToEmail},this.dataSvc.Post(this.ApiPath+"/"+ServiceConstants.CANDIDATE_MAIL_INSTASTART,params).then(function(){_this.dataSvc.sendSuccess(ServiceConstants.CANDIDATE_MAIL_INSTASTART)}).catch(function(reason){sessionStorage.getItem("AdB2cKeyValues")&&JSON.parse(sessionStorage.getItem("AdB2cKeyValues")).IsAdb2cLogin&&reason.status==401||_this.dataSvc.sendFailure(ServiceConstants.CANDIDATE_MAIL_INSTASTART,reason)})},CandidateEngagementEmailService.prototype.candidateMailFutureStart=function(candidateIDs,shortMessage,emailEngagementID,scheduledDate,outreachComment,sendToEmail){var _this=this,params;return typeof sendToEmail=="undefined"&&(sendToEmail=null),params={emailEngagementID:emailEngagementID,shortMessage:shortMessage,candidateIDs:candidateIDs,scheduledDate:scheduledDate,outreachComment:outreachComment,sendToEmail:sendToEmail},this.dataSvc.Post(this.ApiPath+"/"+ServiceConstants.CANDIDATE_MAIL_FUTURESTART,params).then(function(){_this.dataSvc.sendSuccess(ServiceConstants.CANDIDATE_MAIL_FUTURESTART)}).catch(function(reason){sessionStorage.getItem("AdB2cKeyValues")&&JSON.parse(sessionStorage.getItem("AdB2cKeyValues")).IsAdb2cLogin&&reason.status==401||_this.dataSvc.sendFailure(ServiceConstants.CANDIDATE_MAIL_FUTURESTART,reason)})},CandidateEngagementEmailService.prototype.GetCandidateEmailList=function(candidateID){return this.dataSvc.Get(this.ApiPath+"/GetCandidateEmailList",candidateID)},CandidateEngagementEmailService.$name="candidateEngagementEmailSvc",CandidateEngagementEmailService.$inject=[Services.LocalDataService.$name],CandidateEngagementEmailService}(Services.RestService);Services.CandidateEngagementEmailService=CandidateEngagementEmailService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var CandidateActivityMethodService=function(_super){function CandidateActivityMethodService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.CANDIDATE_ACTIVITY_METHOD_SERVICE)}return __extends(CandidateActivityMethodService,_super),CandidateActivityMethodService.prototype.getCandidateActivityMethod=function(candidateId){return this.Get(this.ApiPath+"/CandidateActivityMethodLineOfBusiness",undefined,{candidateId:candidateId})},CandidateActivityMethodService.$name="candidateActivityMethodSvc",CandidateActivityMethodService.$inject=[Services.LocalDataService.$name],CandidateActivityMethodService}(Services.RestService);Services.CandidateActivityMethodService=CandidateActivityMethodService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var CandidateOutreachService=function(_super){function CandidateOutreachService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.CADIDATE_OUTREACH);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID)}return __extends(CandidateOutreachService,_super),CandidateOutreachService.prototype.addOutreach=function(userId,name,methodId,staffId,duration,updatedBy,outreachDate,nextContactDate,nextOutreachScheduleType,comments){var outreachDateFormatted=moment(outreachDate).format("MM/DD/YYYY HH:mm:ss"),nextContactDateFormatted=moment(nextContactDate).format("MM/DD/YYYY HH:mm:ss"),params={userId:userId,name:name,methodId:methodId,staffId:staffId,duration:duration,updatedBy:updatedBy,outreachDate:outreachDateFormatted,nextContactDate:nextContactDateFormatted,outreachScheduleType:nextOutreachScheduleType,comments:comments};return this.dataSvc.Post(ServiceConstants.CANDIDATE_OUTREACH_ADD,null,params)},CandidateOutreachService.prototype.createBulkOutreach=function(param){return this.dataSvc.Post(ServiceConstants.CANDIDATE_CREATE_BULK_OUTREACH,param)},CandidateOutreachService.$name="candidateOutreachSvc",CandidateOutreachService.$inject=[Services.LocalDataService.$name],CandidateOutreachService}(Services.RestService);Services.CandidateOutreachService=CandidateOutreachService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var NotificationMethodService=function(_super){function NotificationMethodService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.NOTIFICATIONMETHOD);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID)}return __extends(NotificationMethodService,_super),NotificationMethodService.$name="notificationMethodSvc",NotificationMethodService.$inject=[Services.LocalDataService.$name],NotificationMethodService}(Services.RestService);Services.NotificationMethodService=NotificationMethodService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var OutreachScheduleTypeService=function(_super){function OutreachScheduleTypeService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.OUTREACHSHEDULETYPE);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID)}return __extends(OutreachScheduleTypeService,_super),OutreachScheduleTypeService.prototype.checkDisabledOutreachScheduleTypes=function(typeId){return typeId==1||typeId==3},OutreachScheduleTypeService.$name="outreachScheduleTypeSvc",OutreachScheduleTypeService.$inject=[Services.LocalDataService.$name],OutreachScheduleTypeService}(Services.RestService);Services.OutreachScheduleTypeService=OutreachScheduleTypeService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var ContentCategoryService=function(_super){function ContentCategoryService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(AdminConstants.CONTENT_CATEGORY);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID)}return __extends(ContentCategoryService,_super),ContentCategoryService.prototype.GetContentCategoryID=function(name){return this.Get(ServiceConstants.CONTENT_CATEGORY_GET_ID,null,{name:name})},ContentCategoryService.$name="contentCategorySvc",ContentCategoryService.$inject=[Services.LocalDataService.$name],ContentCategoryService}(Services.RestService);Services.ContentCategoryService=ContentCategoryService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var ITranslationsModel=function(){function ITranslationsModel(){}return ITranslationsModel}(),ContentManagerService;Services.ITranslationsModel=ITranslationsModel;ContentManagerService=function(_super){function ContentManagerService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(AdminConstants.CONTENT_MANAGER)}return __extends(ContentManagerService,_super),ContentManagerService.prototype.GetContentTranslations=function(translationsModel){var apiFullPath=this.ApiPath+"/Translations";return console.log(apiFullPath),this.Post(apiFullPath,translationsModel)},ContentManagerService.$name="contentManagerSvc",ContentManagerService.$inject=[Services.LocalDataService.$name],ContentManagerService}(Services.RestService);Services.ContentManagerService=ContentManagerService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var EmailTypeService=function(_super){function EmailTypeService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.EMAIL_TYPE);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID)}return __extends(EmailTypeService,_super),EmailTypeService.$name="emailTypeSvc",EmailTypeService.$inject=[Services.LocalDataService.$name],EmailTypeService}(Services.RestService);Services.EmailTypeService=EmailTypeService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var VideoService=function(_super){function VideoService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.VIDEO);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID)}return __extends(VideoService,_super),VideoService.$name="videoSvc",VideoService.$inject=[Services.LocalDataService.$name],VideoService}(Services.RestService);Services.VideoService=VideoService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var VideoCategoryService=function(_super){function VideoCategoryService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.VIDEO_CATEGORY);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID)}return __extends(VideoCategoryService,_super),VideoCategoryService.prototype.GetCategoryID=function(name){return this.Get(ServiceConstants.VIDEO_CATEGORY_GET_ID,null,{name:name})},VideoCategoryService.$name="videoCategorySvc",VideoCategoryService.$inject=[Services.LocalDataService.$name],VideoCategoryService}(Services.RestService);Services.VideoCategoryService=VideoCategoryService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var ActivityTypeService=function(_super){function ActivityTypeService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.ACTIVITYTYPE);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID)}return __extends(ActivityTypeService,_super),ActivityTypeService.$name="activityTypeSvc",ActivityTypeService.$inject=[Services.LocalDataService.$name],ActivityTypeService}(Services.RestService);Services.ActivityTypeService=ActivityTypeService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var CountryService=function(_super){function CountryService(dataSvc,$q,restangular){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.$q=$q;this.restangular=restangular;this.Setup(ServiceConstants.COUNTRY);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID)}return __extends(CountryService,_super),CountryService.prototype.GetCountryHolidays=function(countryID){return this.dataSvc.Get(this.ApiPath+"/GetHolidays",countryID,{})},CountryService.prototype.getCountryNextBusinessDay=function(startingDate,daysToAdjust,countryHolidays){var newDate=new Date(startingDate.valueOf()),businessDaysLeft,isWeekend,isHoliday,direction;if(daysToAdjust!==parseInt(daysToAdjust,10))throw new TypeError("getNextBusinessDay can only adjust by whole days");if(daysToAdjust===0)return startingDate;for(direction=daysToAdjust>0?1:-1,businessDaysLeft=Math.abs(daysToAdjust);businessDaysLeft;)newDate.setDate(newDate.getDate()+direction),isWeekend=newDate.getDay()in{0:"Sunday",6:"Saturday"},isHoliday=countryHolidays&&countryHolidays.indexOf(newDate.getTime())>-1,isWeekend||isHoliday||businessDaysLeft--;return newDate},CountryService.prototype.GetCountries=function(countryCode){var _this=this;return localStorage.getItem(NGenConstants.NGEN_SET_LOCAL_STORAGE_COUNTRY_DATA)==null||localStorage.getItem(NGenConstants.NGEN_SET_LOCAL_STORAGE_COUNTRY_DATA)==undefined?this.dataSvc.Get(this.ApiPath,undefined,{pageNumber:NGenConstants.DEFAULT_PAGE_NUMBER,pageSize:NGenConstants.PAGE_SIZE_GET_ALL,countryCode:null}).then(function(data){return localStorage.setItem(NGenConstants.NGEN_SET_LOCAL_STORAGE_COUNTRY_DATA,JSON.stringify(data)),_this.FilterCountryByCode(countryCode)}):this.FilterCountryByCode(countryCode)},CountryService.prototype.FilterCountryByCode=function(countryCode){var deferred=this.$q.defer(),countryData=JSON.parse(localStorage.getItem(NGenConstants.NGEN_SET_LOCAL_STORAGE_COUNTRY_DATA));return countryCode!=null&&countryCode!=undefined?deferred.resolve(countryData.filter(function(data){return data[NGenConstants.FILTER_COUNTRY_BY_CODE]==countryCode})):deferred.resolve(countryData),deferred.promise},CountryService.prototype.FilterCountryByCountryName=function(countryName){var deferred=this.$q.defer(),countryData=JSON.parse(localStorage.getItem(NGenConstants.NGEN_SET_LOCAL_STORAGE_COUNTRY_DATA));return countryName!=null&&countryName!=undefined?deferred.resolve(countryData.filter(function(data){return data[NGenConstants.NAME_FIELD]==countryName})):deferred.resolve(countryData),deferred.promise},CountryService.prototype.GetCountryCode=function(countryName){var _this=this;return localStorage.getItem(NGenConstants.NGEN_SET_LOCAL_STORAGE_COUNTRY_DATA)==null||localStorage.getItem(NGenConstants.NGEN_SET_LOCAL_STORAGE_COUNTRY_DATA)==undefined?this.dataSvc.Get(this.ApiPath,undefined,{pageNumber:NGenConstants.DEFAULT_PAGE_NUMBER,pageSize:NGenConstants.PAGE_SIZE_GET_ALL,countryCode:null}).then(function(data){return localStorage.setItem(NGenConstants.NGEN_SET_LOCAL_STORAGE_COUNTRY_DATA,JSON.stringify(data)),_this.FilterCountryByCountryName(countryName)}):this.FilterCountryByCountryName(countryName)},CountryService.prototype.FilterCountryById=function(countryId){var deferred=this.$q.defer(),countryData=JSON.parse(localStorage.getItem(NGenConstants.NGEN_SET_LOCAL_STORAGE_COUNTRY_DATA));return countryId?deferred.resolve(countryData.filter(function(data){return data[NGenConstants.FILTER_COUNTRY_BY_ID]==countryId})[0]):deferred.resolve(countryData),deferred.promise},CountryService.prototype.getCountry=function(countryID){var _this=this;return localStorage.getItem(NGenConstants.NGEN_SET_LOCAL_STORAGE_COUNTRY_DATA)===null||localStorage.getItem(NGenConstants.NGEN_SET_LOCAL_STORAGE_COUNTRY_DATA)===undefined?this.dataSvc.Get(this.ApiPath,undefined,{pageNumber:NGenConstants.DEFAULT_PAGE_NUMBER,pageSize:NGenConstants.PAGE_SIZE_GET_ALL,countryCode:null}).then(function(data){return localStorage.setItem(NGenConstants.NGEN_SET_LOCAL_STORAGE_COUNTRY_DATA,JSON.stringify(data)),_this.FilterCountryById(countryID)}):this.FilterCountryById(countryID)},CountryService.prototype.getCountryData=function(searchParams){var countries;typeof searchParams=="undefined"&&(searchParams={});var _this=this,deferred=_this.$q.defer(),countryRecord=JSON.parse(localStorage.getItem(NGenConstants.NGEN_SET_LOCAL_STORAGE_COUNTRY_DATA));return countryRecord?(searchParams.name!=""?deferred.resolve(countryRecord.filter(function(v){return v.Name.toLowerCase().startsWith(searchParams.name.toLowerCase())})):deferred.resolve(countryRecord),deferred.promise):(countries=new LHH.NGen.Data.Countries(this.restangular),countries.get(searchParams))},CountryService.$name="countrySvc",CountryService.$inject=[Services.LocalDataService.$name,NGenConstants.Q_SERVICE,NGenConstants.RESTANGULAR],CountryService}(Services.RestService);Services.CountryService=CountryService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var LanguageService=function(_super){function LanguageService(localDataService,translateManager){_super.call(this,localDataService);this.localDataService=localDataService;this.translateManager=translateManager;this.Setup(ServiceConstants.LANGUAGE)}return __extends(LanguageService,_super),LanguageService.prototype.getActive=function(){return this.Get(this.ApiPath,null,{active:!0,pageSize:-1})},LanguageService.prototype.getLanguagesList=function(){return this.Get(this.ApiPath,null,{active:!0,pageSize:-1,pageNumber:-1})},LanguageService.prototype.getBrandingCountryLanguages=function(countryID){return this.Get("TalentCloud/Resume/GetBrandingCountryLanguages",null,{countryID:countryID})},LanguageService.prototype.getMyCRNDisplay=function(customerID){return this.Get("CustomerLanguage",null,{customerID:customerID,display:!0,pageSize:-1})},LanguageService.prototype.getCountryLanguages=function(countryID){return this.Get("Language/GetCountryLanguages",null,{countryID:countryID})},LanguageService.prototype.getLanguagesForGroup=function(languageID){return this.Get(ServiceConstants.GET_LANGUAGES_FOR_GROUP,null,{languageID:languageID})},LanguageService.prototype.getLanguageGroups=function(){return this.Get("GetLanguageGroups",null,{})},LanguageService.prototype.getGroupByLanguageID=function(languageID){return this.Get("GetGroupByLanguageID",null,{languageID:languageID})},LanguageService.$name="languageService",LanguageService.$inject=[LHH.Shared.Services.LocalDataService.$name,NGenConstants.TRANSLATE_MANAGER],LanguageService}(Services.RestService);Services.LanguageService=LanguageService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={})),function(LHH){(function(Shared){(function(Services){var UploadService=function(){function UploadService($fileUploaderService,userManager){this.$fileUploaderService=$fileUploaderService;this.userManager=userManager}return UploadService.prototype.factory=function($scope,url,preCallback,errorCallback,successCallback,afterAddingFileCallback,multiple,autoUpload,queueLimit,suppressDefaultErrorHandlers,removeAfterUpload){typeof multiple=="undefined"&&(multiple=!1);typeof autoUpload=="undefined"&&(autoUpload=!0);typeof queueLimit=="undefined"&&(queueLimit=1);typeof suppressDefaultErrorHandlers=="undefined"&&(suppressDefaultErrorHandlers=!0);typeof removeAfterUpload=="undefined"&&(removeAfterUpload=!0);var uploader=this.$fileUploaderService.create({scope:$scope,url:url,headers:this.getTokenHeader(),multiple:multiple,autoUpload:autoUpload,queueLimit:queueLimit,suppressDefaultErrorHanlers:suppressDefaultErrorHandlers,removeAfterUpload:removeAfterUpload});return uploader.bind("beforeupload",preCallback),uploader.bind("error",errorCallback),uploader.bind("success",successCallback),uploader.bind("afteraddingfile",afterAddingFileCallback),uploader},UploadService.prototype.getTokenHeader=function(){var tokenData=this.userManager.getTokenData();return{Authorization:"Bearer "+tokenData.AccessToken}},UploadService.$name="uploadService",UploadService.$inject=[NGenConstants.FILE_UPLOADER_SERVICE,NGenConstants.USER_MANAGER],UploadService}();Services.UploadService=UploadService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var WebConfigSettingsService=function(_super){function WebConfigSettingsService(localDataService){_super.call(this,localDataService);this.Setup("WebConfigSettings")}return __extends(WebConfigSettingsService,_super),WebConfigSettingsService.prototype.getGoogleRecaptchaVersion3SiteKey=function(){return this.Get(this.ApiPath+"/GoogleRecaptchaVersion3SiteKey")},WebConfigSettingsService.prototype.getGoogleRecaptchaVersion2SiteKey=function(){return this.Get(this.ApiPath+"/GoogleRecaptchaVersion2SiteKey")},WebConfigSettingsService.prototype.getHoppenstedtURL=function(){return this.Get(this.ApiPath+"/HoppenstedtURL")},WebConfigSettingsService.prototype.getAdB2cKeyValues=function(){return this.Get(this.ApiPath+"/GetAdB2cKeyValues")},WebConfigSettingsService.$inject=[LHH.Shared.Services.LocalDataService.$name],WebConfigSettingsService.$name="webConfigSettingsService",WebConfigSettingsService}(Services.RestService);Services.WebConfigSettingsService=WebConfigSettingsService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var SSOSettingsService=function(_super){function SSOSettingsService(localDataService){_super.call(this,localDataService);this.Setup("SSOSettings")}return __extends(SSOSettingsService,_super),SSOSettingsService.prototype.getSkillSoftv8Url=function(){return this.Get(this.ApiPath+"/"+ServiceConstants.skillSoftv8_URL).then(function(result){return result.replace(/"/g,"")})},SSOSettingsService.prototype.getSkillSoftv8SSOAdminPassword=function(){return this.Get(this.ApiPath+"/"+ServiceConstants.skillSoftv8_SSO_ADMIN_PASSWORD).then(function(result){return result.replace(/"/g,"")})},SSOSettingsService.prototype.getSkillSoftv8SSOv8AdminUsername=function(){return this.Get(this.ApiPath+"/"+ServiceConstants.skillSoftv8_SSO_ADMIN_USERNAME).then(function(result){return result.replace(/"/g,"")})},SSOSettingsService.prototype.getSkillSoftv8SSODefaultPassword=function(){return this.Get(this.ApiPath+"/"+ServiceConstants.skillSoftv8_SSO_ADMIN_DEFAULT_PASSWORD).then(function(result){return result.replace(/"/g,"")})},SSOSettingsService.prototype.getOneSourceVersionTwoUrl=function(){return this.Get(this.ApiPath+"/"+ServiceConstants.ONESOURCE_VERSIONTWO_URL).then(function(result){return result.replace(/"/g,"")})},SSOSettingsService.prototype.getOneSourceVersionTwoATToken=function(){return this.Get(this.ApiPath+"/"+ServiceConstants.ONESOURCE_VERSIONTWO_AT_TOKEN).then(function(result){return result.replace(/"/g,"")})},SSOSettingsService.prototype.getExecGrapevineSSOGroupName=function(){return this.Get(this.ApiPath+"/"+ServiceConstants.EXEC_GRAPEVINE_SSO_GROUP_NAME).then(function(result){return result.replace(/"/g,"")})},SSOSettingsService.prototype.getExecGrapevineSSOGroupPass=function(){return this.Get(this.ApiPath+"/"+ServiceConstants.EXEC_GRAPEVINE_SSO_GROUP_PASS).then(function(result){return result.replace(/"/g,"")})},SSOSettingsService.$inject=[LHH.Shared.Services.LocalDataService.$name],SSOSettingsService.$name="SSOSettingsService",SSOSettingsService}(Services.RestService);Services.SSOSettingsService=SSOSettingsService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var Log=LHH.NGen.Log,KeywordService=function(_super){function KeywordService(dataSvc,$q){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.$q=$q;this.Setup(ServiceConstants.KEYWORD)}return __extends(KeywordService,_super),KeywordService.prototype.GetKeywords=function(categoryID){var _this=this,defer=this.$q.defer();return this.dataSvc.Get(this.ApiPath,undefined,{categoryId:categoryID,pageSize:-1}).then(function(result){defer.resolve(result)},function(error){Log.debug(error,typeof _this);defer.reject(error)}),defer.promise},KeywordService.$name="keywordSvc",KeywordService.$inject=[Services.LocalDataService.$name,ServiceConstants.Q_SERVICE],KeywordService}(Services.RestService);Services.KeywordService=KeywordService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var JobSeniorityService=function(_super){function JobSeniorityService(dataSvc,settingManager,$q){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.settingManager=settingManager;this.$q=$q;this.Setup(ServiceConstants.JOB_MS)}return __extends(JobSeniorityService,_super),JobSeniorityService.prototype.GetByID=function(id){return this.Get(this.ApiPath,id)},JobSeniorityService.prototype.GetByCountryID=function(countryID){return typeof countryID=="undefined"&&(countryID=-1),this.dataSvc.Get(this.ApiPath+"/GetAll",undefined,{countryID:countryID})},JobSeniorityService.prototype.GetListJobSenioritiesByCountryID=function(name,pageNumber,pageSize,countryID){return typeof pageSize=="undefined"&&(pageSize=-1),typeof countryID=="undefined"&&(countryID=-1),this.Get(this.ApiPath,undefined,{name:name,pageNumber:pageNumber,pageSize:pageSize,countryID:countryID})},JobSeniorityService.prototype.JobSenioritySelect2Options=function(){var debouncedOptions=this.debounce(this.GetSelect2Options,this.SearchParams.DebounceTime);return{multiple:!1,minimumResultsForSearch:-1,query:$.proxy(debouncedOptions,this),formatSelection:$.proxy(this.FormatSelect2Options,this),formatResult:$.proxy(this.FormatSelect2Options,this),initSelection:$.proxy(this.InitSelect2Option,this)}},JobSeniorityService.$name="jobSenioritySvc",JobSeniorityService.$inject=[Services.LocalDataService.$name,NGenConstants.SETTING_MANAGER,NGenConstants.Q_SERVICE],JobSeniorityService}(Services.RestService);Services.JobSeniorityService=JobSeniorityService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var JobIndustryService=function(_super){function JobIndustryService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.JOB_INDUSTRY)}return __extends(JobIndustryService,_super),JobIndustryService.prototype.SetCountryIdOption=function(countryID){this.OptionParams.CountryID=countryID},JobIndustryService.prototype.GetIndustries=function(countryID){return this.dataSvc.Get(this.ApiPath,undefined,{countryID:countryID,pageSize:-1})},JobIndustryService.prototype.GetListJobIndustries=function(name,pageNumber,pageSize){return this.dataSvc.Get(this.ApiPath,null,{name:name,pageNumber:pageNumber,pageSize:pageSize})},JobIndustryService.prototype.GetJobIndustriesByCountry=function(name,pageNumber,pageSize,countryID){return this.dataSvc.Get(this.ApiPath,null,{name:name,pageNumber:pageNumber,pageSize:pageSize,CountryID:countryID})},JobIndustryService.prototype.GetJobIndustry=function(jobIndustryID){return this.dataSvc.Get(this.ApiPath,jobIndustryID)},JobIndustryService.prototype.GetJobIndustries=function(){return this.Get(this.ApiPath+"/GetJobIndustries")},JobIndustryService.$name="jobIndustrySvc",JobIndustryService.$inject=[Services.LocalDataService.$name],JobIndustryService}(Services.RestService);Services.JobIndustryService=JobIndustryService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var IdealJobIndustryService=function(_super){function IdealJobIndustryService(dataSvc,settingManager,$q){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.settingManager=settingManager;this.$q=$q;this.Setup(ServiceConstants.JOB_INDUSTRY_MS)}return __extends(IdealJobIndustryService,_super),IdealJobIndustryService.prototype.SetCountryIdOption=function(countryID){this.OptionParams.CountryID=countryID},IdealJobIndustryService.prototype.GetIndustries=function(countryID){return this.dataSvc.Get(this.ApiPath,undefined,{countryID:countryID,pageSize:-1})},IdealJobIndustryService.prototype.GetListJobIndustries=function(name,pageNumber,pageSize){return this.dataSvc.Get(this.ApiPath,null,{name:name,pageNumber:pageNumber,pageSize:pageSize})},IdealJobIndustryService.prototype.GetJobIndustriesByCountry=function(name,pageNumber,pageSize,countryID){return this.dataSvc.Get(this.ApiPath,null,{name:name,pageNumber:pageNumber,pageSize:pageSize,CountryID:countryID})},IdealJobIndustryService.prototype.GetJobIndustry=function(jobIndustryID){return this.dataSvc.Get(this.ApiPath,jobIndustryID)},IdealJobIndustryService.prototype.GetJobIndustries=function(){return this.Get(this.ApiPath+"/GetJobIndustries")},IdealJobIndustryService.$name="idealJobIndustrySvc",IdealJobIndustryService.$inject=[Services.LocalDataService.$name,NGenConstants.SETTING_MANAGER,NGenConstants.Q_SERVICE],IdealJobIndustryService}(Services.RestService);Services.IdealJobIndustryService=IdealJobIndustryService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var JobFunctionService=function(_super){function JobFunctionService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.JOB_FUNCTION)}return __extends(JobFunctionService,_super),JobFunctionService.prototype.SetCountryIdOption=function(countryID){this.OptionParams.CountryID=countryID},JobFunctionService.prototype.GetFunctions=function(countryID,active){return this.dataSvc.Get(this.ApiPath,undefined,{countryID:countryID,active:active,pageNumber:-1,pageSize:-1})},JobFunctionService.prototype.GetFunctionsById=function(functionID){return this.dataSvc.Get(this.ApiPath+"/"+functionID)},JobFunctionService.prototype.SelectJobFunctionOptions=function(countryID){typeof countryID=="undefined"&&(countryID=null);this.OptionParams.countryID=countryID;this.OptionParams.active=!0;var debouncedOptions=this.debounce(this.GetSelect2Options,this.SearchParams.DebounceTime);return{multiple:!1,query:$.proxy(debouncedOptions,this),initSelection:$.proxy(this.InitSelect2Option,this),formatSelection:$.proxy(this.FormatSelect2Options,this),formatResult:$.proxy(this.FormatSelect2Options,this)}},JobFunctionService.prototype.GetSelect2Options=function(query){var _this=this;query!=undefined?(query.exceptIds="",this.dataSvc.Get(this.ApiPath,undefined,{countryID:query.countryID,active:!0,pageNumber:query.page,pageSize:10}).then(function(item){var results,more;item!=undefined&&item!=null&&item.length>0?(results=[],angular.forEach(item,function(value){results.push({id:value.ID,text:value.Name})}),_this.SearchParams.TotalRows=item[0].totalRows,more=query.page*10<_this.SearchParams.TotalRows,query.callback({results:results,more:more})):query.callback({results:[]})})):query.callback({results:[]})},JobFunctionService.prototype.InitSelect2Option=function(element,callback){var id=element.val(),object;angular.isString(id)&&id!=""&&(object=this.GetFunctionsById(id).then(function(response){callback({id:response.ID,text:response.Name})}))},JobFunctionService.prototype.FormatSelect2Options=function(item){return item.text?item.text:item.Name},JobFunctionService.$name="jobFunctionSvc",JobFunctionService.$inject=[Services.LocalDataService.$name],JobFunctionService}(Services.RestService);Services.JobFunctionService=JobFunctionService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var AccountService=function(_super){function AccountService(localDataService){_super.call(this,localDataService);this.localDataService=localDataService;this.Setup(ServiceConstants.ACCOUNT)}return __extends(AccountService,_super),AccountService.prototype.emailForgotUserName=function(email,recaptchaResponse,onSaveSuccess,onFail){return this.Post(this.ApiPath+"/EmailForgotUserNameSPA",undefined,{email:email,recaptchaResponse:recaptchaResponse},onSaveSuccess,onFail)},AccountService.$name="accountService",AccountService.$inject=[LHH.Shared.Services.LocalDataService.$name],AccountService}(Services.RestService);Services.AccountService=AccountService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var CurriculumService=function(_super){function CurriculumService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.CURRICULUM);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID)}return __extends(CurriculumService,_super),CurriculumService.$name="curriculumSvc",CurriculumService.$inject=[Services.LocalDataService.$name],CurriculumService}(Services.RestService);Services.CurriculumService=CurriculumService})(Shared.Services||(Shared.Services={}));var Services=Shared.Services})(LHH.Shared||(LHH.Shared={}));var Shared=LHH.Shared}(LHH||(LHH={}));__extends=this.__extends||function(d,b){function __(){this.constructor=d}for(var p in b)b.hasOwnProperty(p)&&(d[p]=b[p]);__.prototype=b.prototype;d.prototype=new __},function(LHH){(function(Shared){(function(Services){var CourseService=function(_super){function CourseService(dataSvc){_super.call(this,dataSvc);this.dataSvc=dataSvc;this.Setup(ServiceConstants.COURSE);this.SetSearchField(FieldConstants.NAME_FIELD,!1,ResourceKeyConstants.NGEN_NAME);this.SetSortField(FieldConstants.ID_FIELD,!1,ResourceKeyConstants.NGEN_ID)}return __extends(CourseService,_super),CourseService.prototype.Select2Options=function(){var debouncedOptions=this.debounce(this.loadCourses,this.SearchParams.DebounceTime);return{multiple:!1,query:$.proxy(debouncedOptions,this),formatSelection:$.proxy(this.FormatSelect2Options,this),formatResult:$.proxy(this.FormatSelect2Options,this),initSelection:$.proxy(this.InitSelect2Option,this)}},CourseService.prototype.FormatCourseNameId=function(item){var name=item.Name||item.text,id=item.ID||item.id;return id!=undefined&&(name+=" ("+id+")"),''+name+"<\/span>"},CourseService.prototype.loadCourses=function(query){if(query!=undefined){query.exceptIds="";var tempThis=this,params=this.OptionParams;return params.SearchText=query.term,params.PageNumber=query.page,this.dataSvc.restangular.one("Course").customGET("CourseList",params).then(function(items){var totalRows,more,i;if(items!=undefined&&items!=null&&items.length>0){if(totalRows=items.length>0?items[0].totalRows:1,more=query.page*10=30;)divideAvailabilitySections[divideAvailabilitySections.length]={startTime:new Date(startFiveMinuteInterval.getFullYear(),startFiveMinuteInterval.getMonth(),startFiveMinuteInterval.getDate(),startFiveMinuteInterval.getHours(),startFiveMinuteInterval.getMinutes(),startFiveMinuteInterval.getSeconds()),timeLength:setMeetingInterval},startFiveMinuteInterval.setMinutes(startFiveMinuteInterval.getMinutes()+min);return divideAvailabilitySections},CalendarEventService.prototype.GetCalendarEventMessage=function(contentId,languageId){return this.Get(this.ApiPath+"/GetCalendarEventMessage/"+contentId+"/"+languageId)},CalendarEventService.prototype.openValidationModal=function(message,btnOkText){var modalInstance=this.$modal.open({templateUrl:"Spa/shared/common/modals/alertmodal.htm",controller:Shared.Pages.Modals.AlertModalController.$name,windowClass:"modal-large",resolve:{message:function(){return message},btnOkText:function(){return btnOkText}},backdrop:"static"})},CalendarEventService.prototype.openConfirmModal=function(message,btnAcceptText,btnDeclineText,eventModal,isRemoveEvent,isAlreadyScheduleEvent,isColleagueUnavailable,isPastDate,isMarkComplete){var modalInstance=this.$modal.open({templateUrl:UsersConstants.CONFIRMATION_MODAL_HTM,controller:Shared.Pages.Modals.ConfirmationModalController.$name,windowClass:"modal-large",resolve:{message:function(){return message},callbackAccept:function(){return function(){return eventModal.callbackAccept(isRemoveEvent,isAlreadyScheduleEvent,isColleagueUnavailable,isPastDate,isMarkComplete)}},callbackDecline:function(){return function(){return eventModal.callbackDecline(isRemoveEvent,isAlreadyScheduleEvent,isColleagueUnavailable,isPastDate,isMarkComplete)}},btnAcceptText:function(){return btnAcceptText},btnDeclineText:function(){return btnDeclineText}},backdrop:"static"})},CalendarEventService.prototype.GetAppRoleForAssignment=function(){return this.Get(this.ApiPath+"/GetAppRoleForAssignment")},CalendarEventService.prototype.GetVenueTypeDetailsRecap=function(VenueTypeID,candidateId,UserID,OfficeID){return this.Get(this.ApiPath+"/GetVenueTypeDetailsRecap/"+VenueTypeID+"/"+candidateId+"/"+UserID+"/"+OfficeID)},CalendarEventService.prototype.GetSpecialityOptions=function(){return{query:$.proxy(this.loadSpeciality,this),initSelection:$.proxy(this.InitSpecialityOptions,this)}},CalendarEventService.prototype.loadSpeciality=function(query){var _this=this;query!=undefined?(query.exceptIds="",this.GetColleagueSpecializationType().then(function(items){var filterResult=items.filter(function(x){return x}),matchingStrings,j,results,i;if(query.term!=""){for(matchingStrings=[],j=0;j0){for(results=[],i=0;i
";return templateString+=candidate.HasPhoto?"
<\/div>":"
"+candidateInitials+"<\/span><\/div>",templateString+="<\/div><\/div>