PassivationConnection.java
876 Bytes
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
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.aemfd.docmanager.passivation;
import java.io.InputStream;
public class PassivationConnection {
private InputStream contentStream;
private long length;
private String contentType;
private Object payload;
public PassivationConnection(InputStream contentStream, long length, String contentType) {
this.contentStream = contentStream;
this.length = length;
this.contentType = contentType;
}
public InputStream getContentStream() {
return this.contentStream;
}
public long getLength() {
return this.length;
}
public String getContentType() {
return this.contentType;
}
public Object getPayload() {
return this.payload;
}
public void setPayload(Object payload) {
this.payload = payload;
}
}