/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.infobip.jsouptest; /** * * @author linski */ public class Match { private String url; public Match(String url) { this.url = url; } @Override public String toString() { return "Match{" + "url=" + url + '}'; } }