blob: 6f7c79c5f1efd131918d4fe3d8822deff0937c91 (
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
|
package org.spongycastle.util.io.pem;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
@SuppressWarnings("all")
public class PemObject
implements PemObjectGenerator
{
private static final List EMPTY_LIST = Collections.unmodifiableList(new ArrayList());
private String type;
private List headers;
private byte[] content;
/**
* Generic constructor for object without headers.
*
* @param type pem object type.
* @param content the binary content of the object.
*/
public PemObject(String type, byte[] content)
{
this(type, EMPTY_LIST, content);
}
/**
* Generic constructor for object with headers.
*
* @param type pem object type.
* @param headers a list of PemHeader objects.
* @param content the binary content of the object.
*/
public PemObject(String type, List headers, byte[] content)
{
this.type = type;
this.headers = Collections.unmodifiableList(headers);
this.content = content;
}
public String getType()
{
return type;
}
public List getHeaders()
{
return headers;
}
public byte[] getContent()
{
return content;
}
public PemObject generate()
throws PemGenerationException
{
return this;
}
}
|