001/*
002 * The contents of this file are subject to the license and copyright
003 * detailed in the LICENSE and NOTICE files at the root of the source
004 * tree.
005 */
006package org.fcrepo.http.commons.webxml.bind;
007
008import javax.xml.bind.annotation.XmlRootElement;
009
010/**
011 * <p>InitParam class.</p>
012 *
013 * @author awoods
014 */
015@XmlRootElement(namespace = "http://java.sun.com/xml/ns/javaee",
016        name = "init-param")
017public class InitParam extends Param {
018
019    public InitParam() {
020        super();
021    }
022
023    public InitParam(final String name, final String value) {
024        super(name, value);
025    }
026
027}