Package com.btaz.util.api.rest

Source Code of com.btaz.util.api.rest.RestApi

package com.btaz.util.api.rest;

import com.btaz.util.api.Resource;

/**
* User: msundell
*/
public class RestApi {
    private Resource resource;

    public RestApi(String url) {
        resource = new Resource(url);
    }

    public static RestApi get(String url) {
        return new RestApi(url);
    }

    public String asString() {
        return null;
    }
}
TOP

Related Classes of com.btaz.util.api.rest.RestApi

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.