Examples of DomainServiceFacetAnnotation


Examples of org.apache.isis.core.metamodel.facets.object.domainservice.annotation.DomainServiceFacetAnnotation

        facetFactory.process(new ProcessClassContext(Customers.class, null, methodRemover, facetHolder));

        final Facet facet = facetHolder.getFacet(DomainServiceFacet.class);
        assertNotNull(facet);
        assertTrue(facet instanceof DomainServiceFacetAnnotation);
        DomainServiceFacetAnnotation domainServiceFacet = (DomainServiceFacetAnnotation) facet;
        Assert.assertThat(domainServiceFacet.getMenuOrder(), is("123"));
        Assert.assertThat(domainServiceFacet.getRepositoryFor(), classEqualTo(Customer.class));

        assertNoMethodsRemoved();
    }
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.