コード例 #1
0
ファイル: TokenVariable.java プロジェクト: bleujin/aradon
 /** {@inheritDoc} */
 public boolean resolve(String expanded, Map<Variable, Object> values) {
   values.put(this._var, URICoder.decode(expanded));
   return true;
 }
コード例 #2
0
ファイル: TokenVariable.java プロジェクト: bleujin/aradon
 /**
  * {@inheritDoc}
  *
  * @throws UnsupportedEncodingException
  */
 public String expand(Parameters variables) throws UnsupportedEncodingException {
   return URICoder.encode(this._var.value(variables));
 }