blob: 25c0ae04071255dd45adfeb0e5880016dbc703bf [file] [log] [blame]
//
// ========================================================================
// Copyright (c) 1995-2014 Mort Bay Consulting Pty. Ltd.
// ------------------------------------------------------------------------
// All rights reserved. This program and the accompanying materials
// are made available under the terms of the Eclipse Public License v1.0
// and Apache License v2.0 which accompanies this distribution.
//
// The Eclipse Public License is available at
// http://www.eclipse.org/legal/epl-v10.html
//
// The Apache License v2.0 is available at
// http://www.opensource.org/licenses/apache2.0.php
//
// You may elect to redistribute this code under either of these licenses.
// ========================================================================
//
package org.eclipse.jetty.servlet;
import java.io.IOException;
import java.util.Arrays;
public class ServletMapping
{
private String[] _pathSpecs;
private String _servletName;
private boolean _default;
/* ------------------------------------------------------------ */
public ServletMapping()
{
}
/* ------------------------------------------------------------ */
/**
* @return Returns the pathSpecs.
*/
public String[] getPathSpecs()
{
return _pathSpecs;
}
/* ------------------------------------------------------------ */
/**
* @return Returns the servletName.
*/
public String getServletName()
{
return _servletName;
}
/* ------------------------------------------------------------ */
/**
* @param pathSpecs The pathSpecs to set.
*/
public void setPathSpecs(String[] pathSpecs)
{
_pathSpecs = pathSpecs;
}
/* ------------------------------------------------------------ */
/**
* @param pathSpec The pathSpec to set.
*/
public void setPathSpec(String pathSpec)
{
_pathSpecs = new String[]{pathSpec};
}
/* ------------------------------------------------------------ */
/**
* @param servletName The servletName to set.
*/
public void setServletName(String servletName)
{
_servletName = servletName;
}
/* ------------------------------------------------------------ */
/**
* @return
*/
public boolean isDefault()
{
return _default;
}
/* ------------------------------------------------------------ */
/**
* @param default1
*/
public void setDefault(boolean fromDefault)
{
_default = fromDefault;
}
/* ------------------------------------------------------------ */
public String toString()
{
return (_pathSpecs==null?"[]":Arrays.asList(_pathSpecs).toString())+"=>"+_servletName;
}
/* ------------------------------------------------------------ */
public void dump(Appendable out, String indent) throws IOException
{
out.append(String.valueOf(this)).append("\n");
}
}