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

com.almende.eve.entity.Callback Maven / Gradle / Ivy

There is a newer version: 3.1.1
Show newest version
/**
 * Helper class to store a callback url and method
 */
package com.almende.eve.entity;

import java.io.Serializable;

@SuppressWarnings("serial")
public class Callback implements Serializable {
	public Callback(String id, String url, String method) {
		this.id = id;
		this.url = url;
		this.method = method;
	}
	
	public String id = null;
	public String url = null;
	public String method = null;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy