Package org.apache.isis.runtimes.dflt.remoting.common.exchange

Examples of org.apache.isis.runtimes.dflt.remoting.common.exchange.GetObjectRequest


            @Override
            public ObjectAdapter execute() {
                // NB: I think that the auth session must be null because we may
                // not yet have logged in if
                // retrieving the services.
                final GetObjectRequest request = new GetObjectRequest(null, oid, specHint.getFullIdentifier());
                final GetObjectResponse response = serverFacade.getObject(request);
                final ObjectData data = response.getObjectData();
                return encoderDecoder.decode(data);
            }
        });
View Full Code Here


            new TransactionalClosureWithReturnAbstract<ObjectAdapter>() {
                @Override
                public ObjectAdapter execute() {
                    // NB: I think that the auth session must be null because we may not yet have logged in if
                    // retrieving the services.
                    final GetObjectRequest request = new GetObjectRequest(null, oid, specHint.getFullIdentifier());
                    final GetObjectResponse response = serverFacade.getObject(request);
                    final ObjectData data = response.getObjectData();
                    return encoderDecoder.decode(data);
                }
            });
View Full Code Here

TOP

Related Classes of org.apache.isis.runtimes.dflt.remoting.common.exchange.GetObjectRequest

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.