* @throws IOException If some IO problem inside
*/
@GET
@Path("/")
public Response index() throws IOException {
return new PageBuilder()
.stylesheet("/xsl/index.xsl")
.build(CommonPage.class)
.init(this)
.append(JaxbGroup.build(this.domains(), "domains"))
.link(new Link("add", "/add"))