summaryrefslogtreecommitdiffstats
blob: 1f9f3a4f0c473c737f1765d7af778acc0db6bbca (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
/*
 * Copyright (c) 2011-2015 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */
/*
 * Copyright (c) 2015 Tarun Gupta.
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

package com.isode.stroke.elements;

import com.isode.stroke.elements.Payload;
import com.isode.stroke.base.NotNull;
import com.isode.stroke.base.DateTime;
import java.util.Date;

public class StreamInitiationFileInfo extends Payload {

	private String name = "";
	private String description;
	private long size;
	private String hash = "";
	private Date date;
	private String algo = "";
	private boolean supportsRangeRequests;
	private long rangeOffset;

	/**
	* Default Constructor.
	*/
	public StreamInitiationFileInfo() {
		this("", "", 0, "", null, "md5");
	}

	/**
	* Parameterized Constructor.
	* @param name, NotNull.
	*/
	public StreamInitiationFileInfo(String name) {
		this(name, "", 0, "", null, "md5");
	}

	/**
	* Parameterized Constructor.
	* @param name, NotNull.
	* @param description, NotNull.
	*/
	public StreamInitiationFileInfo(String name, String description) {
		this(name, description, 0, "", null, "md5");
	}

	/**
	* Parameterized Constructor.
	* @param name, NotNull.
	* @param description, NotNull.
	* @param size.
	*/
	public StreamInitiationFileInfo(String name, String description, long size) {
		this(name, description, size, "", null, "md5");
	}

	/**
	* Parameterized Constructor.
	* @param name, NotNull.
	* @param description, NotNull.
	* @param size.
	* @param hash, NotNull.
	*/
	public StreamInitiationFileInfo(String name, String description, long size, String hash) {
		this(name, description, size, hash, null, "md5");
	}

	/**
	* Parameterized Constructor.
	* @param name, NotNull.
	* @param description, NotNull.
	* @param size.
	* @param hash, NotNull.
	* @param date. Null means invalid date.
	*/
	public StreamInitiationFileInfo(String name, String description, long size, String hash, Date date) {
		this(name, description, size, hash, date, "md5");
	}

	/**
	* Parameterized Constructor.
	* @param name, NotNull.
	* @param description, NotNull.
	* @param size.
	* @param hash, NotNull.
	* @param date. Null means invalid date.
	* @param algo, NotNull.
	*/
	public StreamInitiationFileInfo(String name, String description, long size, String hash, Date date, String algo) {
		NotNull.exceptIfNull(name, "name");
		NotNull.exceptIfNull(description, "description");
		NotNull.exceptIfNull(hash, "hash");
		NotNull.exceptIfNull(algo, "algo");
		this.name = name;
		this.description = description;
		this.size = size;
		this.hash = hash;
		this.date = date;
		this.algo = algo;
		this.supportsRangeRequests = false;
		this.rangeOffset = 0L;
	}

	/**
	* @param name, NotNull.
	*/
	public void setName(String name) {
		NotNull.exceptIfNull(name, "name");
		this.name = name;
	}

	/**
	* @return name, NotNull.
	*/
	public String getName() {
		return name;
	}

	/**
	* @param description, NotNull.
	*/
	public void setDescription(String description) {
		NotNull.exceptIfNull(description, "description");
		this.description = description;
	}

	/**
	* @return description, NotNull.
	*/
	public String getDescription() {
		return description;
	}

	/**
	* @param size.
	*/
	public void setSize(long size) {
		this.size = size;
	}

	/**
	* @return size.
	*/
	public long getSize() {
		return size;
	}

	/**
	* @param hash, NotNull.
	*/
	public void setHash(String hash) {
		NotNull.exceptIfNull(hash, "hash");
		this.hash = hash;
	}

	/**
	* @return hash, NotNull.
	*/
	public String getHash() {
		return this.hash;
	}

	/**
	* @param date. Null means invalid date.
	*/
	public void setDate(Date date) {
		this.date = date;
	}

	/**
	* @return date, which may be null for an invalid date.
	*/
	public Date getDate() {
		return date;
	}

	/**
	* @param algo, NotNull.
	*/
	public void setAlgo(String algo) {
		NotNull.exceptIfNull(algo, "algo");
		this.algo = algo;
	}

	/**
	* @return algo, NotNull.
	*/
	public String getAlgo() {
		return this.algo;
	}

	/**
	* @param supportsRangeRequests.
	*/
	public void setSupportsRangeRequests(boolean supportsIt) {
		this.supportsRangeRequests = supportsIt;
	}

	/**
	* @return supportsRangeRequests.
	*/
	public boolean getSupportsRangeRequests() {
		return supportsRangeRequests;
	}

	/**
	* @param offset.
	*/
	public void setRangeOffset(long offset) {
		this.supportsRangeRequests = true;
		this.rangeOffset = offset;
	}

	/**
	* @return offset.
	*/
	public long getRangeOffset() {
		return rangeOffset;
	}
}