FileDocCategorySizeDatePackage
WebResourceCollection.javaAPI DocExample2294Thu Mar 07 09:13:52 GMT 2002javajaxb.generated.web

WebResourceCollection.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.util.List;
import java.io.Serializable;

public interface WebResourceCollection extends Serializable {

    public static final String ZEUS_XML_NAME = "web-resource-collection";
    public static final String[] ZEUS_ATTRIBUTES = {"id"};
    public static final String[] ZEUS_ELEMENTS = {"web-resource-name", "description", "url-pattern", "http-method"};

    public String getWebResourceName();

    public void setWebResourceName(String webResourceName);

    public String getDescription();

    public void setDescription(String description);

    public List getUrlPatternList();

    public void setUrlPatternList(List urlPatternList);

    public void addUrlPattern(String urlPattern);

    public void removeUrlPattern(String urlPattern);

    public List getHttpMethodList();

    public void setHttpMethodList(List httpMethodList);

    public void addHttpMethod(String httpMethod);

    public void removeHttpMethod(String httpMethod);

    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);

}