Examples of SlugResource


Examples of resources.article.SlugResource

                CacheBuilderSpec.parse("maximumSize=5,expireAfterAccess=5m"));
        environment.addProvider(new BasicAuthProvider<User>(authenticator, "Admin stuff"));

        // Create resources
        environment.addResource(new RootResource(articleDao));
        environment.addResource(new SlugResource(articleDao));
        environment.addResource(new SearchResource(articleDao));
        environment.addResource(new ArticleResource(articleDao));
        environment.addResource(new AdminResource(articleDao));
        environment.addResource(new TagResource(articleDao));
        environment.addResource(new TagSearchResource(articleDao));
View Full Code Here
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.