package eu.dnetlib.dli.resolver.model;

/**
 * The Class DatasourceInfo.
 */
public class DatasourceInfo {

	/**
	 * The namespace prefix.
	 */
	private String namespacePrefix;

	/**
	 * The name.
	 */
	private String name;

	/**
	 * The web.
	 */
	private String web;

	/**
	 * Gets the namespace prefix.
	 *
	 * @return the namespace prefix
	 */
	public String getNamespacePrefix() {
		return namespacePrefix;
	}

	/**
	 * Sets the namespace prefix.
	 *
	 * @param namespacePrefix the new namespace prefix
	 */
	public void setNamespacePrefix(final String namespacePrefix) {
		this.namespacePrefix = namespacePrefix;
	}

	/**
	 * Gets the name.
	 *
	 * @return the name
	 */
	public String getName() {
		return name;
	}

	/**
	 * Sets the name.
	 *
	 * @param name the new name
	 */
	public void setName(final String name) {
		this.name = name;
	}

	/**
	 * Gets the web.
	 *
	 * @return the web
	 */
	public String getWeb() {
		return web;
	}

	/**
	 * Sets the web.
	 *
	 * @param web the new web
	 */
	public void setWeb(final String web) {
		this.web = web;
	}

}
