FileDocCategorySizeDatePackage
URIParameter.javaAPI DocJava SE 6 API1017Tue Jun 10 00:25:46 BST 2008java.security

URIParameter

public class URIParameter extends Object implements Policy$Parameters, Configuration$Parameters
A parameter that contains a URI pointing to data intended for a PolicySpi or ConfigurationSpi implementation.
since
1.6

Fields Summary
private URI
uri
Constructors Summary
public URIParameter(URI uri)
Constructs a URIParameter with the URI pointing to data intended for an SPI implementation.

param
uri the URI pointing to the data.
exception
NullPointerException if the specified URI is null.

	if (uri == null) {
	    throw new NullPointerException("invalid null URI");
	}
	this.uri = uri;
    
Methods Summary
public java.net.URIgetURI()
Returns the URI.

return
uri the URI.

	return uri;