
es.tid.ipnms.datamodel.misc.AuthInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of topology Show documentation
Show all versions of topology Show documentation
Traffic Engineering Database, BGP-LS peer, Topology Module
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