ReplicationContentFacade.java
1.13 KB
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
/*
* Decompiled with CFR 0_118.
*/
package com.day.cq.replication;
import java.io.Serializable;
public class ReplicationContentFacade
implements Serializable {
private static final long serialVersionUID = 7508545788476718741L;
private final String path;
private final String contentType;
private final long contentLength;
public ReplicationContentFacade(String path, String mimeType, long contentLength) {
this.path = path;
this.contentType = mimeType;
this.contentLength = contentLength;
}
public String getPath() {
return this.path;
}
public String getContentType() {
return this.contentType;
}
public long getContentLength() {
return this.contentLength;
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("ReplicationContentFacade");
sb.append("{path='").append(this.path).append('\'');
sb.append(", contentType='").append(this.contentType).append('\'');
sb.append(", contentLength=").append(this.contentLength);
sb.append('}');
return sb.toString();
}
}