Package org.lightadmin.test.scope

Examples of org.lightadmin.test.scope.DummySpecification


    public static FieldSetConfigurationUnit listView(final FieldSetConfigurationUnitBuilder listViewBuilder) {
        return listViewBuilder.field("firstname").caption("First Name").field("lastname").caption("Last Name").field("emailAddress").caption("Email Address").build();
    }

    public static ScopesConfigurationUnit scopes(final ScopesConfigurationUnitBuilder scopeBuilder) {
        return scopeBuilder.scope("All", all()).defaultScope().scope("Buyers", filter(DomainTypePredicates.alwaysTrue())).scope("Sellers", specification(new DummySpecification())).scope("DeletionTest", specification(new DeleteTestSpecification())).build();
    }
View Full Code Here

TOP

Related Classes of org.lightadmin.test.scope.DummySpecification

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.