summaryrefslogtreecommitdiffstats
path: root/glance-model/src/main/java/com/woorea/openstack/glance/model/ImageUpload.java
diff options
context:
space:
mode:
Diffstat (limited to 'glance-model/src/main/java/com/woorea/openstack/glance/model/ImageUpload.java')
-rw-r--r--glance-model/src/main/java/com/woorea/openstack/glance/model/ImageUpload.java114
1 files changed, 57 insertions, 57 deletions
diff --git a/glance-model/src/main/java/com/woorea/openstack/glance/model/ImageUpload.java b/glance-model/src/main/java/com/woorea/openstack/glance/model/ImageUpload.java
index f68b2be..428a5d2 100644
--- a/glance-model/src/main/java/com/woorea/openstack/glance/model/ImageUpload.java
+++ b/glance-model/src/main/java/com/woorea/openstack/glance/model/ImageUpload.java
@@ -22,62 +22,62 @@ import java.util.Map;
public class ImageUpload {
- private Image image;
-
- private String store;
-
- private Map<String, Object> properties;
-
- private InputStream inputStream;
-
- public ImageUpload(Image image) {
- setImage(image);
- }
-
- public Image getImage() {
- return image;
- }
-
- public void setImage(Image image) {
- this.image = image;
- }
-
- /**
- * @return the store
- */
- public String getStore() {
- return store;
- }
-
- /**
- * @param store the store to set
- */
- public void setStore(String store) {
- this.store = store;
- }
-
- /**
- * @return the properties
- */
- public Map<String, Object> getProperties() {
- if(properties == null) {
- properties = new HashMap<>();
- }
- return properties;
- }
-
- /**
- * @return the inputStream
- */
- public InputStream getInputStream() {
- return inputStream;
- }
-
- /**
- * @param inputStream the inputStream to set
- */
- public void setInputStream(InputStream inputStream) {
- this.inputStream = inputStream;
- }
+ private Image image;
+
+ private String store;
+
+ private Map<String, Object> properties;
+
+ private InputStream inputStream;
+
+ public ImageUpload(Image image) {
+ setImage(image);
+ }
+
+ public Image getImage() {
+ return image;
+ }
+
+ public void setImage(Image image) {
+ this.image = image;
+ }
+
+ /**
+ * @return the store
+ */
+ public String getStore() {
+ return store;
+ }
+
+ /**
+ * @param store the store to set
+ */
+ public void setStore(String store) {
+ this.store = store;
+ }
+
+ /**
+ * @return the properties
+ */
+ public Map<String, Object> getProperties() {
+ if(properties == null) {
+ properties = new HashMap<>();
+ }
+ return properties;
+ }
+
+ /**
+ * @return the inputStream
+ */
+ public InputStream getInputStream() {
+ return inputStream;
+ }
+
+ /**
+ * @param inputStream the inputStream to set
+ */
+ public void setInputStream(InputStream inputStream) {
+ this.inputStream = inputStream;
+ }
}