Project

General

Profile

1
package eu.dnetlib.dli.resolver.model;
2

    
3
/**
4
 * The Class DatasourceInfo.
5
 */
6
public class DatasourceInfo {
7

    
8
	/**
9
	 * The namespace prefix.
10
	 */
11
	private String namespacePrefix;
12

    
13
	/**
14
	 * The name.
15
	 */
16
	private String name;
17

    
18
	/**
19
	 * The web.
20
	 */
21
	private String web;
22

    
23
	/**
24
	 * Gets the namespace prefix.
25
	 *
26
	 * @return the namespace prefix
27
	 */
28
	public String getNamespacePrefix() {
29
		return namespacePrefix;
30
	}
31

    
32
	/**
33
	 * Sets the namespace prefix.
34
	 *
35
	 * @param namespacePrefix the new namespace prefix
36
	 */
37
	public void setNamespacePrefix(final String namespacePrefix) {
38
		this.namespacePrefix = namespacePrefix;
39
	}
40

    
41
	/**
42
	 * Gets the name.
43
	 *
44
	 * @return the name
45
	 */
46
	public String getName() {
47
		return name;
48
	}
49

    
50
	/**
51
	 * Sets the name.
52
	 *
53
	 * @param name the new name
54
	 */
55
	public void setName(final String name) {
56
		this.name = name;
57
	}
58

    
59
	/**
60
	 * Gets the web.
61
	 *
62
	 * @return the web
63
	 */
64
	public String getWeb() {
65
		return web;
66
	}
67

    
68
	/**
69
	 * Sets the web.
70
	 *
71
	 * @param web the new web
72
	 */
73
	public void setWeb(final String web) {
74
		this.web = web;
75
	}
76

    
77
}
(5-5/6)