Project

General

Profile

1
package eu.dnetlib.grid.process.model;
2

    
3
public class GridLicense {
4

    
5
	private String attribution;
6
	private String license;
7

    
8
	public String getAttribution() {
9
		return attribution;
10
	}
11

    
12
	public void setAttribution(final String attribution) {
13
		this.attribution = attribution;
14
	}
15

    
16
	public String getLicense() {
17
		return license;
18
	}
19

    
20
	public void setLicense(final String license) {
21
		this.license = license;
22
	}
23

    
24
}
(6-6/10)