Package unibg.overencrypt.protocol

Examples of unibg.overencrypt.protocol.Request


    public void send(Request req) {
        client.put(req.toString(), req.getFilePath());
    }

    public void send(ClientPrimitives primitive, String path, String... values) {
        send(new Request(primitive, path, values));
    }
View Full Code Here


        return waitForResponse(req.getPath());
    }

    public Response sendAndWait(ClientPrimitives primitive, String path,
            String... values) {
        return sendAndWait(new Request(primitive, path, values));
    }
View Full Code Here

TOP

Related Classes of unibg.overencrypt.protocol.Request

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.