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.XmlElement; 009 010/** 011 * <p>ServletMapping class.</p> 012 * 013 * @author awoods 014 */ 015public class ServletMapping extends UrlMappable { 016 017 @XmlElement(namespace = "http://java.sun.com/xml/ns/javaee", 018 name = "servlet-name") 019 String servletName; 020 021 public String servletName() { 022 return this.servletName; 023 } 024 025}