FileDocCategorySizeDatePackage
JavaWebStartAccessDescriptor.javaAPI DocGlassfish v2 API4035Fri May 04 22:31:50 BST 2007com.sun.enterprise.deployment.runtime

JavaWebStartAccessDescriptor

public class JavaWebStartAccessDescriptor extends com.sun.enterprise.deployment.Descriptor
Records information about Java Web Start access to an app client.
author
tjquinn

Fields Summary
private com.sun.enterprise.deployment.BundleDescriptor
bundleDescriptor
private boolean
eligible
Holds value of property eligible.
private String
contextRoot
Holds value of property contextRoot.
private String
vendor
Holds value of property vendor.
Constructors Summary
public JavaWebStartAccessDescriptor()
Creates a new instance of JavaWebStartAccessDescriptor

    
Methods Summary
public com.sun.enterprise.deployment.BundleDescriptorgetBundleDescriptor()

        return bundleDescriptor;
    
public java.lang.StringgetContextRoot()
Getter for property contextRoot.

return
Value of property contextRoot.


                  
       

        return this.contextRoot;
    
public java.lang.StringgetVendor()
Getter for property vendor.

return
Value of property vendor.


                  
       

        return this.vendor;
    
public booleanisEligible()
Getter for property eligible.

return
Value of property eligible.


                  
       

        return this.eligible;
    
public voidsetBundleDescriptor(com.sun.enterprise.deployment.BundleDescriptor bundle)

        bundleDescriptor = bundle;
    
public voidsetContextRoot(java.lang.String contextRoot)
Setter for property contextRoot.

param
contextRoot New value of property contextRoot.


        this.contextRoot = contextRoot;
    
public voidsetEligible(boolean eligible)
Setter for property eligible.

param
eligible New value of property eligible.


        this.eligible = eligible;
    
public voidsetVendor(java.lang.String vendor)
Setter for property vendor.

param
contextRoot New value of property vendor.


        this.vendor = vendor;