1 19 20 package com.maverick.http; 21 22 26 public class PasswordCredentials { 27 28 String username; 29 String password; 30 31 public PasswordCredentials() { 32 } 33 34 public PasswordCredentials(String username, String password) { 35 this.username = username; 36 this.password = password; 37 } 38 39 public void setUsername(String username) { 40 this.username = username; 41 } 42 43 public void setPassword(String password) { 44 this.password = password; 45 } 46 47 public String getUsername() { 48 return username; 49 } 50 51 public String getPassword() { 52 return password; 53 } 54 55 } 56 | Popular Tags |