1 19 20 package com.sslexplorer.wizard; 21 22 public class WizardStep { 23 24 private String path; 25 private boolean available; 26 27 public WizardStep(String path) { 28 this(path, false); 29 } 30 31 public WizardStep(String path, boolean available) { 32 this.path = path; 33 this.available = available; 34 } 35 36 39 public boolean getAvailable() { 40 return available; 41 } 42 43 46 public void setAvailable(boolean available) { 47 this.available = available; 48 } 49 50 53 public String getPath() { 54 return path; 55 } 56 57 60 public void setPath(String path) { 61 this.path = path; 62 } 63 } 64 | Popular Tags |