Examples of LinksToSelf


Examples of org.apache.isis.viewer.json.applib.JsonRepresentation.LinksToSelf

                description.appendText("links to self");
            }

            @Override
            public boolean matchesSafely(final T item) {
                final LinksToSelf initialRepr = (LinksToSelf) item; // no easy
                                                                    // way to do
                                                                    // this with
                                                                    // Hamcrest
                // when
                try {
                    final RestfulResponse<T> followedResp = client.followT(initialRepr.getSelf());

                    // then
                    final T repr2 = followedResp.getEntity();
                    final LinksToSelf repr2AsLinksToSelf = (LinksToSelf) repr2;
                    return initialRepr.getSelf().equals(repr2AsLinksToSelf.getSelf());
                } catch (final Exception e) {
                    throw new RuntimeException(e);
                }
            }
        };
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.