Class UriTemplate
- java.lang.Object
-
- org.apache.tomcat.websocket.server.UriTemplate
-
public class UriTemplate extends Object
Extracts path parameters from URIs used to create web socket connections using the URI template defined for the associated Endpoint.
-
-
Constructor Summary
Constructors Constructor Description UriTemplate(String path)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getNormalizedPath()
int
getSegmentCount()
boolean
hasParameters()
Map<String,String>
match(UriTemplate candidate)
-
-
-
Constructor Detail
-
UriTemplate
public UriTemplate(String path) throws DeploymentException
- Throws:
DeploymentException
-
-
Method Detail
-
match
public Map<String,String> match(UriTemplate candidate)
-
hasParameters
public boolean hasParameters()
-
getSegmentCount
public int getSegmentCount()
-
getNormalizedPath
public String getNormalizedPath()
-
-