1 13 14 package org.ejbca.core.model.ca.catoken; 15 16 22 public class AvailableHardCAToken { 23 24 private String classpath; 25 private String name; 26 private boolean translateable; 27 private boolean use; 28 29 public AvailableHardCAToken(String classpath, String name, boolean translateable, boolean use){ 30 this.classpath = classpath; 31 this.name = name; 32 this.translateable = translateable; 33 this.use = use; 34 } 35 36 37 41 public String getClassPath(){ 42 return this.classpath; 43 } 44 45 50 51 public String getName(){ 52 return this.name; 53 } 54 55 59 public boolean isTranslateable(){ 60 return this.translateable; 61 } 62 63 67 public boolean isUsed(){ 68 return this.use; 69 } 70 71 } 72 | Popular Tags |