Examples of ExecutedFacetAbstract


Examples of org.apache.isis.core.metamodel.facets.actions.executed.ExecutedFacetAbstract

        facetFactory.process(new ProcessMethodContext(Customer.class, actionMethod, methodRemover, facetedMethod));

        final Facet facet = facetedMethod.getFacet(ExecutedFacet.class);
        assertNotNull(facet);
        assertTrue(facet instanceof ExecutedFacetAbstract);
        final ExecutedFacetAbstract executedFacetAbstract = (ExecutedFacetAbstract) facet;
        assertEquals(Target.LOCAL, executedFacetAbstract.getTarget());

        assertNoMethodsRemoved();
    }
View Full Code Here

Examples of org.apache.isis.core.metamodel.facets.actions.executed.ExecutedFacetAbstract

        facetFactory.process(new ProcessMethodContext(Customer.class, actionMethod, methodRemover, facetedMethod));

        final Facet facet = facetedMethod.getFacet(ExecutedFacet.class);
        assertNotNull(facet);
        assertTrue(facet instanceof ExecutedFacetAbstract);
        final ExecutedFacetAbstract executedFacetAbstract = (ExecutedFacetAbstract) facet;
        assertEquals(Target.REMOTE, executedFacetAbstract.getTarget());

        assertNoMethodsRemoved();
    }
View Full Code Here

Examples of org.apache.isis.core.metamodel.facets.actions.executed.ExecutedFacetAbstract

        facetFactory.process(new ProcessMethodContext(Customer.class, actionMethod, methodRemover, facetedMethod));

        final Facet facet = facetedMethod.getFacet(ExecutedFacet.class);
        assertNotNull(facet);
        assertTrue(facet instanceof ExecutedFacetAbstract);
        final ExecutedFacetAbstract executedFacetAbstract = (ExecutedFacetAbstract) facet;
        assertEquals(Target.LOCAL, executedFacetAbstract.getTarget());

        assertNoMethodsRemoved();
    }
View Full Code Here

Examples of org.apache.isis.core.metamodel.facets.actions.executed.ExecutedFacetAbstract

        facetFactory.process(new ProcessMethodContext(Customer.class, actionMethod, methodRemover, facetedMethod));

        final Facet facet = facetedMethod.getFacet(ExecutedFacet.class);
        assertNotNull(facet);
        assertTrue(facet instanceof ExecutedFacetAbstract);
        final ExecutedFacetAbstract executedFacetAbstract = (ExecutedFacetAbstract) facet;
        assertEquals(Target.REMOTE, executedFacetAbstract.getTarget());

        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.