1 11 package org.eclipse.update.internal.security; 12 13 import java.net.*; 14 15 16 17 20 public class KeystoreHandle { 21 22 private URL location; 23 private String type; 24 25 public KeystoreHandle(URL url, String type){ 26 this.location = url; 27 this.type = type; 28 } 29 30 34 public URL getLocation() { 35 return location; 36 } 37 38 42 public void setLocation(URL location) { 43 this.location = location; 44 } 45 46 50 public String getType() { 51 return type; 52 } 53 54 58 public void setType(String type) { 59 this.type = type; 60 } 61 62 } 63 | Popular Tags |