{"version":3,"sources":["assets/src/js/Domain/Model/Country.js"],"names":["Country","name","twoLetterIsoCode","threeLetterIsoCode","domain","this","url","host","getName","Name","getTwoLetterIsoCode","getTwoLetterThreeLetterIsoCode","getDomain","toJson"],"mappings":"AAAA,SAASA,QAAQC,EAAMC,EAAkBC,EAAoBC,GACzDC,KAAKJ,KAAOA,EACZI,KAAKH,iBAAmBA,EACxBG,KAAKF,mBAAqBA,EAC1BE,KAAKD,OAASA,EACdC,KAAKC,IAAM,UAAYF,EAAS,oBAChCC,KAAKE,KAAOH,EAAS,oBAErBC,KAAKG,QAAU,WACX,OAAOH,KAAKI,MAGhBJ,KAAKK,oBAAsB,WACvB,OAAOL,KAAKH,kBAGhBG,KAAKM,+BAAiC,WAClC,OAAON,KAAKF,oBAGhBE,KAAKO,UAAY,WACb,OAAOP,KAAKD,QAGhBC,KAAKQ,OAAS,WACV,MAAO,CACHZ,KAAQI,KAAKJ,KACbC,iBAAoBG,KAAKH,iBACzBC,mBAAsBE,KAAKF,mBAC3BC,OAAUC,KAAKD,OACfE,IAAQD,KAAKC,IACbC,KAASF,KAAKE","file":"Country.js","sourcesContent":["function Country(name, twoLetterIsoCode, threeLetterIsoCode, domain) {\r\n this.name = name;\r\n this.twoLetterIsoCode = twoLetterIsoCode;\r\n this.threeLetterIsoCode = threeLetterIsoCode;\r\n this.domain = domain;\r\n this.url = 'http://' + domain + '.markem-imaje.com';\r\n this.host = domain + '.markem-imaje.com';\r\n\r\n this.getName = function () {\r\n return this.Name;\r\n }\r\n\r\n this.getTwoLetterIsoCode = function () {\r\n return this.twoLetterIsoCode;\r\n }\r\n\r\n this.getTwoLetterThreeLetterIsoCode = function () {\r\n return this.threeLetterIsoCode;\r\n }\r\n\r\n this.getDomain = function () {\r\n return this.domain;\r\n }\r\n\r\n this.toJson = function () {\r\n return {\r\n 'name': this.name,\r\n 'twoLetterIsoCode': this.twoLetterIsoCode,\r\n 'threeLetterIsoCode': this.threeLetterIsoCode,\r\n 'domain': this.domain,\r\n 'url' : this.url,\r\n 'host' : this.host,\r\n }\r\n }\r\n}"]}