Project

General

Profile

1
package eu.dnetlib.goldoa.domain;
2

    
3
import com.google.gwt.user.client.rpc.IsSerializable;
4

    
5
/**
6
 * Created by antleb on 7/9/15.
7
 */
8
public class BankTransferReceipt implements IsSerializable {
9
	private String contentType;
10
	private byte[] content;
11

    
12
	public BankTransferReceipt() {
13
	}
14

    
15
	public BankTransferReceipt(String contentType, byte[] content) {
16
		this.contentType = contentType;
17
		this.content = content;
18
	}
19

    
20
	public String getContentType() {
21
		return contentType;
22
	}
23

    
24
	public void setContentType(String contentType) {
25
		this.contentType = contentType;
26
	}
27

    
28
	public byte[] getContent() {
29
		return content;
30
	}
31

    
32
	public void setContent(byte[] content) {
33
		this.content = content;
34
	}
35
}
(3-3/39)