1 7 package org.ejtools.util.service; 8 9 import java.util.Properties ; 10 11 12 16 public class Profile extends Properties  17 { 18 19 private String name = null; 20 21 22 23 public Profile() 24 { 25 super(); 26 } 27 28 29 34 public String getName() 35 { 36 return this.name; 37 } 38 39 40 45 public void setName(String name) 46 { 47 this.name = name; 48 } 49 50 51 54 public String toString() 55 { 56 return this.name; 57 } 58 } 59 | Popular Tags |