1 26 27 package org.objectweb.jonas.security.realm.lib; 28 29 import java.io.Serializable ; 30 31 36 public class HashPassword implements Serializable { 37 38 41 private String password; 42 43 46 private String algorithm; 47 48 53 public HashPassword(String password, String algorithm) { 54 this.password = password; 55 this.algorithm = algorithm; 56 } 57 58 62 public String getPassword() { 63 return password; 64 } 65 66 70 public String getAlgorithm() { 71 return algorithm; 72 } 73 74 } | Popular Tags |