summaryrefslogtreecommitdiffstats
path: root/src/org/uic/header/SignedDataType.java
blob: 1cbaa8edc9660f90cdc773bf9f1d6b640beceeaa (plain) (blame)
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
package org.uic.header;

import net.gcdc.asn1.datatypes.Asn1Optional;
import net.gcdc.asn1.datatypes.Sequence;
import net.gcdc.asn1.datatypesimpl.OctetString;

// TODO: Auto-generated Javadoc
/**
 * The Class SignedDataType.
 */
@Sequence
public class SignedDataType {
	
	/** The data. */
	public DataBlockType data;
	
	/** The signature. */
	@Asn1Optional public OctetString signature;

	/**
	 * Gets the data.
	 *
	 * @return the data
	 */
	public DataBlockType getData() {
		return data;
	}

	/**
	 * Sets the data.
	 *
	 * @param data the new data
	 */
	public void setData(DataBlockType data) {
		this.data = data;
	}

	/**
	 * Gets the signature.
	 *
	 * @return the signature
	 */
	public OctetString getSignature() {
		return signature;
	}

	/**
	 * Sets the signature.
	 *
	 * @param signature the new signature
	 */
	public void setSignature(OctetString signature) {
		this.signature = signature;
	}

	
	
}