Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import org.apache.http.client.methods.HttpPost;

public class Main {
    public static HttpPost getHttpPost(String url) {
        return new HttpPost(url);
    }
}