package es.tid.tedb.elements; 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; } }