{"id":18699,"date":"2015-03-30T14:38:06","date_gmt":"2015-03-30T09:08:06","guid":{"rendered":"https:\/\/2thenew.xyz\/blog\/?p=18699"},"modified":"2015-03-30T14:55:45","modified_gmt":"2015-03-30T09:25:45","slug":"multikeymap-nested-maps-solution","status":"publish","type":"post","link":"https:\/\/2thenew.xyz\/blog\/multikeymap-nested-maps-solution\/","title":{"rendered":"MultikeyMap : Nested maps solution."},"content":{"rendered":"<p>Hi everyone , recently I came accross a usecase where I had to map multiple keys against one value. So Juggling with this I came to know about MultiKeyMap of apache.<\/p>\n<p>MultikeyMap is used to map multiple keys against one value . The purpose of this class is to avoid the need to write code to handle maps of maps. It simply implements java.io.Serializable, java.util.Map and IterableMap.<\/p>\n<p>These provide get(), containsKey(), put() and remove() methods for individual keys which operate without extra object creation.This map is implemented as a decorator of a AbstractHashedMap which enables extra behaviour to be added easily.<\/p>\n<p>[java]<br \/>\nimport org.apache.commons.collections.map.MultiKeyMap<\/p>\n<p>MultiKeyMap.decorate(new LinkedMap()) \/\/creates an ordered map<br \/>\nMultiKeyMap.decorate(new LRUMap()) \/\/creates an least recently used map.<br \/>\nMultiKeyMap.decorate(new ReferenceMap()) \/\/creates a garbage collector sensitive map.<br \/>\n[\/java]<\/p>\n<p>Lets take an example for this:-<\/p>\n<p>[java]<\/p>\n<p>MultiKeyMap multiKeyMap=MultiKeyMap.decorate(new LinkedHahMap())<\/p>\n<p>multiKeyMap.put(&quot;key1&quot;,&quot;key2&quot;,&quot;key3&quot;,&quot;value1&quot;) \/\/ Last parameter is value against defined keys.<br \/>\nmultiKeyMap.put(&quot;key11&quot;,&quot;key22&quot;,&quot;key33&quot;,&quot;key44&quot;,&quot;value11&quot;)<br \/>\nmultiKeyMap.put(&quot;key111&quot;,&quot;key222&quot;,&quot;key333&quot;,&quot;value111&quot;)<br \/>\nmultiKeyMap.put(&quot;key1111&quot;,&quot;key2222&quot;,&quot;value1111&quot;)<\/p>\n<p>[\/java]<\/p>\n<p>This is how we create a map with multiple keys. Now let&#8217;s see how to fetch value out of multiKeyMap for one combination of keys.<\/p>\n<p>PS :- One point to note is you have to provide combination of key in the same sequence that you provided while puting into map.<\/p>\n<p>[java]<br \/>\nString value1 = multiKeyMap.get(&quot;key1&quot;,&quot;key2&quot;,&quot;key3&quot;)<br \/>\nString value2 = multiKeyMap.get(&quot;key11&quot;,&quot;key22&quot;,&quot;key33&quot;,&quot;key44&quot;)<br \/>\n[\/java]<\/p>\n<p>During this learning I came to know about MultiKey which is again an another way to solve above use case.A MultiKey allows multiple map keys to be merged together. Example of MultiKeyMap With MultiKey :-<\/p>\n<p>[java]<br \/>\nimport org.apache.commons.collections.keyvalue.MultiKey<\/p>\n<p>MultiKey multiKey=new MultiKey(&quot;key1&quot;,&quot;key2&quot;,&quot;key3&quot;)<br \/>\nMultikeyMap multiKeyMap=MultiKeyMap.decorator(new LinkedHashMap())<\/p>\n<p>\/\/Map map = new HashMap(); you can also use simple Map while using Multikey.<br \/>\nmultiKeyMap.put(multiKey,&quot;value1&quot;)<\/p>\n<p>\/\/To fetch value from map using multikey, we simply do as follows :-<br \/>\nmultiKeyMap.get(multiKey)<br \/>\n[\/java]<\/p>\n<p>You can also access each key using index of key within MultiKey object. For Example :-<\/p>\n<p>[java]<br \/>\nmultikey.getKey(0) \/\/ output is &#8216;key1&#8217;<br \/>\n[\/java]<\/p>\n<p>I hope this blog was helpful and added useful content to your knowledge. For any queries you can comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hi everyone , recently I came accross a usecase where I had to map multiple keys against one value. So Juggling with this I came to know about MultiKeyMap of apache. MultikeyMap is used to map multiple keys against one value . The purpose of this class is to avoid the need to write code [&hellip;]<\/p>\n","protected":false},"author":72,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":68,"footnotes":""},"categories":[7,446],"tags":[1729],"class_list":["post-18699","post","type-post","status-publish","format-standard","hentry","category-grails","category-java","tag-grails-java-maps-multikeymap-nestedmap"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Hi everyone , recently I came accross a usecase where I had to map multiple keys against one value. So Juggling with this I came to know about MultiKeyMap of apache. MultikeyMap is used to map multiple keys against one value . The purpose of this class is to avoid the need to write code\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Komal Jain\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.xyz\/blog\/multikeymap-nested-maps-solution\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"MultikeyMap : Nested maps solution. | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Hi everyone , recently I came accross a usecase where I had to map multiple keys against one value. So Juggling with this I came to know about MultiKeyMap of apache. MultikeyMap is used to map multiple keys against one value . The purpose of this class is to avoid the need to write code\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.xyz\/blog\/multikeymap-nested-maps-solution\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"MultikeyMap : Nested maps solution. | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Hi everyone , recently I came accross a usecase where I had to map multiple keys against one value. So Juggling with this I came to know about MultiKeyMap of apache. MultikeyMap is used to map multiple keys against one value . The purpose of this class is to avoid the need to write code\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/multikeymap-nested-maps-solution\\\/#article\",\"name\":\"MultikeyMap : Nested maps solution. | TO THE NEW Blog\",\"headline\":\"MultikeyMap : Nested maps solution.\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/komal\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2015-03-30T14:38:06+05:30\",\"dateModified\":\"2015-03-30T14:55:45+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":1,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/multikeymap-nested-maps-solution\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/multikeymap-nested-maps-solution\\\/#webpage\"},\"articleSection\":\"Grails, Java\\\/JVM, grails java maps multiKeyMap nestedMap\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/multikeymap-nested-maps-solution\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"name\":\"Grails\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"position\":2,\"name\":\"Grails\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/multikeymap-nested-maps-solution\\\/#listItem\",\"name\":\"MultikeyMap : Nested maps solution.\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/multikeymap-nested-maps-solution\\\/#listItem\",\"position\":3,\"name\":\"MultikeyMap : Nested maps solution.\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"name\":\"Grails\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/komal\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/komal\\\/\",\"name\":\"Komal Jain\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/multikeymap-nested-maps-solution\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/6e680a75-b4b5-46c3-b118-6780ee85a9e2_komal.jain@tothenew.com.jpg\",\"width\":96,\"height\":96,\"caption\":\"Komal Jain\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/multikeymap-nested-maps-solution\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/multikeymap-nested-maps-solution\\\/\",\"name\":\"MultikeyMap : Nested maps solution. | TO THE NEW Blog\",\"description\":\"Hi everyone , recently I came accross a usecase where I had to map multiple keys against one value. So Juggling with this I came to know about MultiKeyMap of apache. MultikeyMap is used to map multiple keys against one value . The purpose of this class is to avoid the need to write code\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/multikeymap-nested-maps-solution\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/komal\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/komal\\\/#author\"},\"datePublished\":\"2015-03-30T14:38:06+05:30\",\"dateModified\":\"2015-03-30T14:55:45+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"MultikeyMap : Nested maps solution. | TO THE NEW Blog","description":"Hi everyone , recently I came accross a usecase where I had to map multiple keys against one value. So Juggling with this I came to know about MultiKeyMap of apache. MultikeyMap is used to map multiple keys against one value . The purpose of this class is to avoid the need to write code","canonical_url":"https:\/\/2thenew.xyz\/blog\/multikeymap-nested-maps-solution\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.xyz\/blog\/multikeymap-nested-maps-solution\/#article","name":"MultikeyMap : Nested maps solution. | TO THE NEW Blog","headline":"MultikeyMap : Nested maps solution.","author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/komal\/#author"},"publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"},"datePublished":"2015-03-30T14:38:06+05:30","dateModified":"2015-03-30T14:55:45+05:30","inLanguage":"en-US","commentCount":1,"mainEntityOfPage":{"@id":"https:\/\/2thenew.xyz\/blog\/multikeymap-nested-maps-solution\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/multikeymap-nested-maps-solution\/#webpage"},"articleSection":"Grails, Java\/JVM, grails java maps multiKeyMap nestedMap"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.xyz\/blog\/multikeymap-nested-maps-solution\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.xyz\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/grails\/#listItem","name":"Grails"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/grails\/#listItem","position":2,"name":"Grails","item":"https:\/\/2thenew.xyz\/blog\/category\/grails\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/multikeymap-nested-maps-solution\/#listItem","name":"MultikeyMap : Nested maps solution."},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/multikeymap-nested-maps-solution\/#listItem","position":3,"name":"MultikeyMap : Nested maps solution.","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/grails\/#listItem","name":"Grails"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.xyz\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.xyz\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.xyz\/blog\/author\/komal\/#author","url":"https:\/\/2thenew.xyz\/blog\/author\/komal\/","name":"Komal Jain","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.xyz\/blog\/multikeymap-nested-maps-solution\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/6e680a75-b4b5-46c3-b118-6780ee85a9e2_komal.jain@tothenew.com.jpg","width":96,"height":96,"caption":"Komal Jain"}},{"@type":"WebPage","@id":"https:\/\/2thenew.xyz\/blog\/multikeymap-nested-maps-solution\/#webpage","url":"https:\/\/2thenew.xyz\/blog\/multikeymap-nested-maps-solution\/","name":"MultikeyMap : Nested maps solution. | TO THE NEW Blog","description":"Hi everyone , recently I came accross a usecase where I had to map multiple keys against one value. So Juggling with this I came to know about MultiKeyMap of apache. MultikeyMap is used to map multiple keys against one value . The purpose of this class is to avoid the need to write code","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.xyz\/blog\/multikeymap-nested-maps-solution\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/komal\/#author"},"creator":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/komal\/#author"},"datePublished":"2015-03-30T14:38:06+05:30","dateModified":"2015-03-30T14:55:45+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.xyz\/blog\/#website","url":"https:\/\/2thenew.xyz\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"MultikeyMap : Nested maps solution. | TO THE NEW Blog","og:description":"Hi everyone , recently I came accross a usecase where I had to map multiple keys against one value. So Juggling with this I came to know about MultiKeyMap of apache. MultikeyMap is used to map multiple keys against one value . The purpose of this class is to avoid the need to write code","og:url":"https:\/\/2thenew.xyz\/blog\/multikeymap-nested-maps-solution\/","og:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"MultikeyMap : Nested maps solution. | TO THE NEW Blog","twitter:description":"Hi everyone , recently I came accross a usecase where I had to map multiple keys against one value. So Juggling with this I came to know about MultiKeyMap of apache. MultikeyMap is used to map multiple keys against one value . The purpose of this class is to avoid the need to write code","twitter:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"18699","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 13:26:16","updated":"2024-02-29 08:44:21","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\/category\/grails\/\" title=\"Grails\">Grails<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tMultikeyMap : Nested maps solution.\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.xyz\/blog"},{"label":"Grails","link":"https:\/\/2thenew.xyz\/blog\/category\/grails\/"},{"label":"MultikeyMap : Nested maps solution.","link":"https:\/\/2thenew.xyz\/blog\/multikeymap-nested-maps-solution\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/18699","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/users\/72"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/comments?post=18699"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/18699\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/media?parent=18699"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/categories?post=18699"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/tags?post=18699"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}