Added getDomain and getResourceURL for HATEOAS (*Hypermedia as the Engine of Application State*) design.
Example:
{
"links": [{
"rel": "self",
"href": "http://mascandobits.es:8080/soccer/api/teams/5000"
}, {
"rel": "stadium",
"href": "http://mascandobits.es:8080/soccer/api/teams/5000/stadium"
}, {
"rel": "players",
"href": "http://mascandobits.es:8080/soccer/api/teams/5000/players"
}],
"teamId": 5000,
"name": "Real Madrid C.F.",
"foundationYear": 1902,
"rankingPosition": 1
}