All Downloads are FREE. Search and download functionalities are using the official Maven repository.

es.tid.ipnms.datamodel.misc.AuthInfo Maven / Gradle / Ivy

The newest version!
package es.tid.ipnms.datamodel.misc;

public class AuthInfo {
	/**User ID to be used for authentication */
	private String userID;
	
	/**password assicoated with the user ID*/
	private String passwd;

	/**
	 * @return the userID
	 */
	public String getUserID() {
		return userID;
	}

	/**
	 * @param userID the userID to set
	 */
	public void setUserID(String userID) {
		this.userID = userID;
	}

	/**
	 * @return the passwd
	 */
	public String getPasswd() {
		return passwd;
	}

	/**
	 * @param passwd the passwd to set
	 */
	public void setPasswd(String passwd) {
		this.passwd = passwd;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy