FileDocCategorySizeDatePackage
EjbRef.javaAPI DocExample2145Thu Mar 07 09:13:52 GMT 2002javajaxb.generated.web

EjbRef.java

/**
 * This class was generated from a set of XML constraints
 *   by the Enhydra Zeus XML Data Binding Framework. All
 *   source code in this file is constructed specifically
 *   to work with other Zeus-generated classes. If you
 *   modify this file by hand, you run the risk of breaking
 *   this interoperation, as well as introducing errors in
 *   source code compilation.
 *
 * * * * * MODIFY THIS FILE AT YOUR OWN RISK * * * * *
 *
 * To find out more about the Enhydra Zeus framework, you
 *   can point your browser at <http://zeus.enhydra.org>
 *   where you can download releases, join and discuss Zeus
 *   on user and developer mailing lists, and access source
 *   code. Please report any bugs through that website.
 */
package javajaxb.generated.web;

// Global Interface Import Statements
import java.io.File;
import java.io.IOException;
import java.io.OutputStream;
import java.io.Writer;

// Local Interface Import Statements
import java.io.Serializable;

public interface EjbRef extends Serializable {

    public static final String ZEUS_XML_NAME = "ejb-ref";
    public static final String[] ZEUS_ATTRIBUTES = {"id"};
    public static final String[] ZEUS_ELEMENTS = {"description", "ejb-ref-name", "ejb-ref-type", "home", "remote", "ejb-link"};

    public String getDescription();

    public void setDescription(String description);

    public String getEjbRefName();

    public void setEjbRefName(String ejbRefName);

    public String getEjbRefType();

    public void setEjbRefType(String ejbRefType);

    public String getHome();

    public void setHome(String home);

    public String getRemote();

    public void setRemote(String remote);

    public String getEjbLink();

    public void setEjbLink(String ejbLink);

    public String getId();

    public void setId(String id);

    public void marshal(File file) throws IOException;

    public void marshal(OutputStream outputStream) throws IOException;

    public void marshal(Writer writer) throws IOException;

    public void setDocType(String name, String publicID, String systemID);

    public void setOutputEncoding(String outputEncoding);

}