Java back-end server programming; includes various exercises
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
486 B

// Pekka Helenius <fincer89@hotmail.com>, Fjordtek 2020
package com.fjordtek.chapter1_httprequest.web;
import java.util.HashMap;
import java.util.Map;
// NOTE: This is not actually required, will possibly be removed
public class PageMapper {
private Map<String, String> webPageNameMap = new HashMap<>();
protected String mapWebPageNames(String keyName, String valueName) {
webPageNameMap.put(keyName, valueName);
return webPageNameMap.get(keyName);
}
}