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