1 23 24 package com.sun.enterprise.deployment.runtime; 25 26 import com.sun.enterprise.deployment.BundleDescriptor; 27 import com.sun.enterprise.deployment.Descriptor; 28 32 public class JavaWebStartAccessDescriptor extends Descriptor { 33 34 private BundleDescriptor bundleDescriptor; 35 36 37 public JavaWebStartAccessDescriptor() { 38 } 39 40 43 private boolean eligible = true; 44 45 49 public boolean isEligible() { 50 51 return this.eligible; 52 } 53 54 58 public void setEligible(boolean eligible) { 59 60 this.eligible = eligible; 61 } 62 63 66 private String contextRoot = null; 67 68 72 public String getContextRoot() { 73 74 return this.contextRoot; 75 } 76 77 81 public void setContextRoot(String contextRoot) { 82 83 this.contextRoot = contextRoot; 84 } 85 86 89 private String vendor = null; 90 91 95 public String getVendor() { 96 97 return this.vendor; 98 } 99 100 104 public void setVendor(String vendor) { 105 106 this.vendor = vendor; 107 } 108 109 public void setBundleDescriptor(BundleDescriptor bundle) { 110 bundleDescriptor = bundle; 111 } 112 113 public BundleDescriptor getBundleDescriptor() { 114 return bundleDescriptor; 115 } 116 117 118 } 119 | Popular Tags |