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

com.github.javaclub.ossclient.event.KeyedImageUploadEvent Maven / Gradle / Ivy

The newest version!
package com.github.javaclub.ossclient.event;

import java.util.Date;

import com.github.javaclub.toolbox.model.AttributesDO;


public class KeyedImageUploadEvent extends AttributesDO {
	
	private static final long serialVersionUID = 1L;

	private Date happenTime;

	private String key;
	
	private String imageUrl;
	

	public KeyedImageUploadEvent() {
	}

	public KeyedImageUploadEvent(Date happenTime, String key, String imageUrl) {
		this.happenTime = happenTime;
		this.key = key;
		this.imageUrl = imageUrl;
	}



	public Date getHappenTime() {
		return happenTime;
	}

	public void setHappenTime(Date happenTime) {
		this.happenTime = happenTime;
	}

	public String getKey() {
		return key;
	}

	public void setKey(String key) {
		this.key = key;
	}

	public String getImageUrl() {
		return imageUrl;
	}

	public void setImageUrl(String imageUrl) {
		this.imageUrl = imageUrl;
	}
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy