Package com.linkedin.restli.server.resources.fixtures

Examples of com.linkedin.restli.server.resources.fixtures.SomeResource2


    assertNotNull(r1.getDependency1());
    assertNotNull(r1.getDependency2());
    assertNull(r1.getNonInjectedDependency());

    // #2 No deps
    SomeResource2 r2 = factory.create(SomeResource2.class);
    assertNotNull(r2);

    // #3 bean not registered with ResourceFactory
    try
    {
View Full Code Here

TOP

Related Classes of com.linkedin.restli.server.resources.fixtures.SomeResource2

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.