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

dw.xmlrpc.AttachmentDetails Maven / Gradle / Ivy

package dw.xmlrpc;

import java.util.Date;

/**
 * Describes a file uploaded in the wiki as getAttachments would
 */
public class AttachmentDetails {
	private final String _id;

	/**
	 * Media id (namespace + name)
	 */
	public String id(){
		return _id;
	}

	private final Boolean _isImg;

	/**
	 * Whether the file is an image or not
	 */
	public final Boolean isImg(){
		return _isImg;
	}

	private final Boolean _writable;

	/**
	 * Whether the file is writable or not
	 */
	public Boolean writable(){
		return _writable;
	}

	private final Integer _perms;

	/**
	 * Permissions of file
	 */
	public Integer perms(){
		return _perms;
	}

	private final Integer _size;

	/**
	 * Size in bytes
	 */
	public Integer size(){
		return _size;
	}

	private final Date _lastModified;

	/**
	 * Date of last modification of the file
	 */
	public final Date lastModified(){
		return _lastModified;
	}

	private final String _file;

	/**
	 * name of the file
	 */
	public final String file(){
		return _file;
	}

	private final Integer _mtime;

	/**
	 * upload date
	 */
	public final Integer mtime(){
		return _mtime;
	}


	public AttachmentDetails(String id, Integer size, Date lastModified, Boolean isImg, Boolean writable, Integer perms, String file, Integer mtime){
		_id = id;
		_size = size;
		_lastModified = lastModified;
		_isImg = isImg;
		_writable = writable;
		_perms = perms;
		_file = file;
		_mtime = mtime;
	}

	@Override
	public String toString(){
		return "id: " + _id
				+ ", size:" + _size
				+ ", lastModified:" + (_lastModified == null ? "null" : _lastModified.toString())
				+ ", isImg: " + _isImg
				+ ", writable: " + _writable
				+ ", perms:" + _perms
				+ ", file: " + _file
				+ ", mtime: " + _mtime;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy