All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gihub.gkutiel.GraphApi Maven / Gradle / Ivy

There is a newer version: 6-RELEASE
Show newest version
package com.gihub.gkutiel;

public abstract class GraphApi extends Url {

	public static class Delete extends GraphApi {
		public Delete(final String path) {
			super("DELETE", path);
		}
	}

	public static class Get extends GraphApi {
		public Get(final String path) {
			super("GET", path);
		}
	}

	public static class Post extends GraphApi {
		public Post(final String path) {
			super("POST", path);
		}
	}

	final String method;

	private GraphApi(final String method, final String path) {
		super("https://graph.facebook.com/" + path);
		this.method = method;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy