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

com.blazebit.quartz.job.http.HttpGetInvokerJob Maven / Gradle / Ivy

There is a newer version: 0.1.14
Show newest version
/*
 * Copyright 2011 Blazebit
 */
package com.blazebit.quartz.job.http;

import java.io.IOException;
import java.net.URL;
import java.net.URLConnection;

/**
 * 
 * @author Christian Beikov
 * @since 0.1.2
 */
public class HttpGetInvokerJob extends AbstractHttpInvokerJob {

	private static final long serialVersionUID = 1L;

	@Override
	protected URLConnection createConnection(String url, String parameterString)
			throws IOException {
		return new URL(new StringBuilder(url).append("?")
				.append(parameterString).toString()).openConnection();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy