com.novell.sentinel.uri
Interface UriDeconstructor

All Known Implementing Classes:
GenericURI

public interface UriDeconstructor

Interface to allow REST services to deconstruct URIs on behalf of DataObject deserialization.


Method Summary
 String getFragment()
           
 String getHost()
           
 List<String> getPathComponents()
           
 int getPort()
           
 Map<String,List<String>> getQueryItems()
           
 String getScheme()
           
 String getUserInfo()
           
 

Method Detail

getScheme

String getScheme()

getUserInfo

String getUserInfo()

getHost

String getHost()

getPort

int getPort()

getPathComponents

List<String> getPathComponents()

getQueryItems

Map<String,List<String>> getQueryItems()

getFragment

String getFragment()