Project

General

Profile

1
/**
2
 *
3
 */
4
package eu.dnetlib.msro.workers.aggregation.transform.schema;
5

    
6
/**
7
 * @author jochen
8
 */
9
public class Namespace {
10

    
11
	String prefix;
12
	String uri;
13

    
14
	public Namespace(String aPrefix, String aUri) {
15
		this.prefix = aPrefix;
16
		this.uri = aUri;
17
	}
18

    
19
	/**
20
	 * @return the prefix
21
	 */
22
	public String getPrefix() {
23
		return prefix;
24
	}
25

    
26
	/**
27
	 * @param prefix the prefix to set
28
	 */
29
	public void setPrefix(String prefix) {
30
		this.prefix = prefix;
31
	}
32

    
33
	/**
34
	 * @return the uri
35
	 */
36
	public String getUri() {
37
		return uri;
38
	}
39

    
40
	/**
41
	 * @param uri the uri to set
42
	 */
43
	public void setUri(String uri) {
44
		this.uri = uri;
45
	}
46
}
(1-1/7)