blob: 31c07855449c376b47ad6330475fe8ba2ad1df52 [file] [log] [blame]
/*
* Copyright 2002,2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.jelly.tags.http;
import java.util.Map;
import org.apache.commons.jelly.TagLibrary;
/**
* The set of jelly tags provided by Latka
*
* @author dion
* @version $Id: HttpTagLibrary.java,v 1.1 2002/07/14 13:05:14 dion Exp $
*/
public class HttpTagLibrary extends TagLibrary {
/**
* Creates a new instance of LatkaTagLibrary
*/
public HttpTagLibrary() {
registerTag("body", BodyTag.class);
registerTag("delete", DeleteTag.class);
registerTag("get", GetTag.class);
registerTag("head", HeadTag.class);
registerTag("header", HeaderTag.class);
registerTag("mppost", MultipartPostTag.class);
registerTag("options", OptionsTag.class);
registerTag("parameter", ParameterTag.class);
registerTag("part", PartTag.class);
registerTag("post", PostTag.class);
registerTag("put", PutTag.class);
registerTag("session", SessionTag.class);
}
/**
* @see TagLibarary#getTagClasses()
*
* @return a Map of tag name to tag class
*/
public Map getTagClasses() {
return super.getTagClasses();
}
}