Package org.dellroad.msrp
Class MsrpUri
- java.lang.Object
-
- org.dellroad.msrp.MsrpUri
-
public class MsrpUri extends Object
Represents an MRSP URI. This class only supports URIs that have session ID's.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
Set<String>
getParameters()
Get the URI-parameters, if any.String
getSessionId()
Get the MSRP session ID specified in this URI.String
getTransport()
Get the MSRP transport specified in this URI.URI
getUri()
Get this instance as anURI
.int
hashCode()
boolean
isSecure()
Determine whether this URI uses TLS.Endpoint
toEndpoint()
Create anEndpoint
corresponding to this instance.String
toString()
-
-
-
Constructor Detail
-
MsrpUri
public MsrpUri(String string) throws URISyntaxException
Constrcuctor.- Parameters:
string
- URI in string form- Throws:
URISyntaxException
- ifstring
is not a valid MSRP URI
-
-
Method Detail
-
isSecure
public boolean isSecure()
Determine whether this URI uses TLS.- Returns:
- true if secured by TLS
-
getSessionId
public String getSessionId()
Get the MSRP session ID specified in this URI.- Returns:
- session ID
-
getTransport
public String getTransport()
Get the MSRP transport specified in this URI. Currently will always beMsrpConstants.TRANSPORT_TCP
.- Returns:
- session transport
-
getParameters
public Set<String> getParameters()
Get the URI-parameters, if any. The returnedSet
will iterate the parameters in their original order.- Returns:
- unmodifiable set of URI-parameters, possibly empty
-
toEndpoint
public Endpoint toEndpoint()
Create anEndpoint
corresponding to this instance.- Returns:
- corresponding
Endpoint
-
-