org.deegree.services
Interface RangeParamList

All Known Implementing Classes:
RangeParamList_Impl

public interface RangeParamList

The list of ranges in a URL request.

Author:
ETj

Method Summary
 void addParameter(Parameter param)
          adds a new Parameter to the list
 void addParameter(java.lang.String name, java.lang.String value)
           
 java.util.Set getNames()
           
 Parameter getParameter(java.lang.String name)
          returns the parameter that matches the submitted name. if no parameter can be found null will be returned.
 Parameter[] getParameters()
          returns all Parameters contained within the list as array.
 

Method Detail

getParameter

public Parameter getParameter(java.lang.String name)
returns the parameter that matches the submitted name. if no parameter can be found null will be returned.


addParameter

public void addParameter(Parameter param)
adds a new Parameter to the list


addParameter

public void addParameter(java.lang.String name,
                         java.lang.String value)
Parameters:
name -
value -

getParameters

public Parameter[] getParameters()
returns all Parameters contained within the list as array. it is guarenteered that the arrays isn't null


getNames

public java.util.Set getNames()
Returns: