/**
* Creates query string that is sent to fraktguiden.bring.no
*/
public String toQueryString() {
if (fromPostalCode == null || toPostalCode == null) {
throw new MissingParameterException("To- and from postal code is required.");
}
// Postal code
String str = "?from=" + fromPostalCode + "&to=" + toPostalCode;