Package org.qi4j.sample.rental.web

Examples of org.qi4j.sample.rental.web.PageMetaInfo


    implements Assembler
{
    public void assemble( ModuleAssembly module )
        throws AssemblyException
    {
        PageMetaInfo mainpageMeta = new PageMetaInfo( "main" );
        module.services( MainPage.class ).setMetaInfo( mainpageMeta );

        PageMetaInfo bookingpageMeta = new PageMetaInfo( "booking" );
        module.services( BookingPage.class ).setMetaInfo( bookingpageMeta );

        module.services( UrlService.class );
    }
View Full Code Here

TOP

Related Classes of org.qi4j.sample.rental.web.PageMetaInfo

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.