summaryrefslogtreecommitdiffstats
path: root/swift-model/src/main/java/com/woorea/openstack/swift/model/ObjectForUpload.java
diff options
context:
space:
mode:
Diffstat (limited to 'swift-model/src/main/java/com/woorea/openstack/swift/model/ObjectForUpload.java')
-rw-r--r--swift-model/src/main/java/com/woorea/openstack/swift/model/ObjectForUpload.java106
1 files changed, 53 insertions, 53 deletions
diff --git a/swift-model/src/main/java/com/woorea/openstack/swift/model/ObjectForUpload.java b/swift-model/src/main/java/com/woorea/openstack/swift/model/ObjectForUpload.java
index 5775f4b..93c8c72 100644
--- a/swift-model/src/main/java/com/woorea/openstack/swift/model/ObjectForUpload.java
+++ b/swift-model/src/main/java/com/woorea/openstack/swift/model/ObjectForUpload.java
@@ -22,67 +22,67 @@ import java.util.Map;
public class ObjectForUpload {
-
- private String container;
-
- private String name;
-
- private Map<String, java.lang.Object> properties;
+
+ private String container;
+
+ private String name;
+
+ private Map<String, java.lang.Object> properties;
- private InputStream inputStream;
+ private InputStream inputStream;
- /**
- * @return the container
- */
- public String getContainer() {
- return container;
- }
+ /**
+ * @return the container
+ */
+ public String getContainer() {
+ return container;
+ }
- /**
- * @param container the container to set
- */
- public void setContainer(String container) {
- this.container = container;
- }
+ /**
+ * @param container the container to set
+ */
+ public void setContainer(String container) {
+ this.container = container;
+ }
- /**
- * @return the name
- */
- public String getName() {
- return name;
- }
+ /**
+ * @return the name
+ */
+ public String getName() {
+ return name;
+ }
- /**
- * @param name the name to set
- */
- public void setName(String name) {
- this.name = name;
- }
+ /**
+ * @param name the name to set
+ */
+ public void setName(String name) {
+ this.name = name;
+ }
- /**
- * @return the properties
- */
- public Map<String, java.lang.Object> getProperties() {
- if(properties == null) {
- properties = new HashMap<>();
- }
- return properties;
- }
+ /**
+ * @return the properties
+ */
+ public Map<String, java.lang.Object> getProperties() {
+ if(properties == null) {
+ properties = new HashMap<>();
+ }
+ return properties;
+ }
- /**
- * @return the inputStream
- */
- public InputStream getInputStream() {
- return inputStream;
- }
+ /**
+ * @return the inputStream
+ */
+ public InputStream getInputStream() {
+ return inputStream;
+ }
- /**
- * @param inputStream the inputStream to set
- */
- public void setInputStream(InputStream inputStream) {
- this.inputStream = inputStream;
- }
+ /**
+ * @param inputStream the inputStream to set
+ */
+ public void setInputStream(InputStream inputStream) {
+ this.inputStream = inputStream;
+ }
-
+
}