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

com.threewks.thundr.gae.job.Job Maven / Gradle / Ivy

The newest version!
/*
 * This file is a component of thundr, a software library from 3wks.
 * Read more: http://3wks.github.io/thundr/
 * Copyright (C) 2015 3wks, 
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *         http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.threewks.thundr.gae.job;

import java.util.LinkedHashMap;
import java.util.Map;

import com.threewks.thundr.Experimental;
import com.threewks.thundr.route.HttpMethod;

@Experimental
public class Job {
	private String queue = null;
	private String destination = null;
	private Map params = new LinkedHashMap<>();
	private HttpMethod method = HttpMethod.POST;
	private Object payload = null;

	public Job() {
	}

	public Job(String destination) {
		this.destination = destination;
	}

	protected Job(String queue, String destination, Map params, HttpMethod method, Object payload) {
		super();
		this.queue = queue;
		this.destination = destination;
		this.params = new LinkedHashMap<>(params);
		this.method = method;
		this.payload = payload;
	}

	public Job withQueue(String queue) {
		return new Job(queue, destination, params, method, payload);
	}

	public Job withDestination(String destination) {
		return new Job(queue, destination, params, method, payload);
	}

	public Job withParams(Map params) {
		return new Job(queue, destination, params, method, payload);
	}

	public Job withMethod(HttpMethod method) {
		return new Job(queue, destination, params, method, payload);
	}

	public Job withPayload(Object payload) {
		return new Job(queue, destination, params, method, payload);
	}

	public String getQueue() {
		return queue;
	}

	public String getDestination() {
		return destination;
	}

	public Map getParams() {
		return params;
	}

	public HttpMethod getMethod() {
		return method;
	}

	public Object getPayload() {
		return payload;
	}

	public boolean hasPayload() {
		return payload != null;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy