summaryrefslogtreecommitdiffstats
path: root/swift-model/src/main/java/com/woorea/openstack/swift/model/ObjectDownload.java
blob: 00f0ff8077d46a967e7e003ccf10c680a49b59a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package com.woorea.openstack.swift.model;

import java.io.InputStream;



public class ObjectDownload {

	private Object object;
	
	private InputStream inputStream;

	/**
	 * @return the object
	 */
	public Object getObject() {
		return object;
	}

	/**
	 * @param object the object to set
	 */
	public void setObject(Object object) {
		this.object = object;
	}

	/**
	 * @return the inputStream
	 */
	public InputStream getInputStream() {
		return inputStream;
	}

	/**
	 * @param inputStream the inputStream to set
	 */
	public void setInputStream(InputStream inputStream) {
		this.inputStream = inputStream;
	}

}