Package com.rexsl.page

Examples of com.rexsl.page.Link


    @XmlElement(name = "link")
    @XmlElementWrapper(name = "links")
    public Collection<Link> getLinks() {
        final Collection<Link> links = new LinkedList<Link>();
        links.add(
            new Link(
                "remove",
                this.info.getBaseUriBuilder().clone()
                    .path("/remove")
                    .queryParam("host", "{name}")
                    .build(this.getName())
View Full Code Here


        return new PageBuilder()
            .stylesheet("/xsl/index.xsl")
            .build(CommonPage.class)
            .init(this)
            .append(JaxbGroup.build(this.domains(), "domains"))
            .link(new Link("add", "/add"))
            .render()
            .build();
    }
View Full Code Here

TOP

Related Classes of com.rexsl.page.Link

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.