1 7 package java.security.spec; 8 9 20 public class ECGenParameterSpec implements AlgorithmParameterSpec { 21 22 private String name; 23 24 36 public ECGenParameterSpec(String stdName) { 37 if (stdName == null) { 38 throw new NullPointerException ("stdName is null"); 39 } 40 this.name = stdName; 41 } 42 43 48 public String getName() { 49 return name; 50 } 51 } 52 | Popular Tags |