summaryrefslogtreecommitdiffstats
path: root/glance-model/src/main/java/com/woorea/openstack/glance/model/ImageDownload.java
blob: d7c575cf2edb403617a02cde4029247f5bbebdf1 (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
package com.woorea.openstack.glance.model;

import java.io.InputStream;

public class ImageDownload {
	
	private Image image;
	
	private InputStream inputStream;

	/**
	 * @return the image
	 */
	public Image getImage() {
		return image;
	}

	/**
	 * @param image the image to set
	 */
	public void setImage(Image image) {
		this.image = image;
	}

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

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

}