1 package net.suberic.pooka; 2 3 7 public class StringSignatureGenerator extends SignatureGeneratorImpl { 8 9 public StringSignatureGenerator() { 10 } 11 12 15 16 public String generateSignature(String text) { 17 if (profile != null) { 18 String returnValue = Pooka.getProperty("UserProfile." + profile.getName() + ".signature", ""); 19 if (!returnValue.equals("")) 20 return returnValue; 21 } 22 23 return null; 24 } 25 26 } 27 | Popular Tags |