1 package com.sslexplorer.extensions.forms;2 3 import org.apache.commons.logging.Log;4 import org.apache.commons.logging.LogFactory;5 6 import com.sslexplorer.core.forms.CoreForm;7 import com.sslexplorer.extensions.ExtensionBundle;8 9 public class ExtensionBundleInformationForm extends CoreForm {10 final static Log log = LogFactory.getLog(ExtensionBundleInformationForm.class);11 12 private ExtensionBundle bundle;13 14 public void initialise(ExtensionBundle bundle) {15 this.bundle = bundle;16 }17 18 public ExtensionBundle getBundle() {19 return bundle;20 }21 }22