Package com.tapestry5book.library.services

Source Code of com.tapestry5book.library.services.LibraryModule

package com.tapestry5book.library.services;

import org.apache.tapestry5.ioc.Configuration;
import org.apache.tapestry5.ioc.annotations.Contribute;
import org.apache.tapestry5.services.ComponentClassResolver;
import org.apache.tapestry5.services.LibraryMapping;

public class LibraryModule {

    @Contribute(ComponentClassResolver.class)
    public static void provideRootPackage(Configuration<LibraryMapping> configuration) {
        configuration.add(new LibraryMapping("lib", "com.tapestry5book.library"));
    }
}
TOP

Related Classes of com.tapestry5book.library.services.LibraryModule

TOP
Copyright © 2018 www.massapi.com. 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.