Package org.apache.isis.viewer.json.applib.RestfulRequest

Examples of org.apache.isis.viewer.json.applib.RestfulRequest.DomainModel


    @Test
    public void parser_roundtrips() {
        final Parser<DomainModel> parser = RestfulRequest.DomainModel.parser();
        for (final DomainModel domainModel : DomainModel.values()) {
            final String asString = parser.asString(domainModel);
            final DomainModel roundtripped = parser.valueOf(asString);
            assertSame(roundtripped, domainModel);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.isis.viewer.json.applib.RestfulRequest.DomainModel

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.