|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use URI | |
---|---|
org.gridlab.gat | This package contains classes and interfaces which are used throughout the GAT application API. |
org.gridlab.gat.advert | This package contains classes and interfaces which are used for the GAT advertisement service. |
org.gridlab.gat.io | This package contains classes and interfaces which are used to provide input and output. |
org.gridlab.gat.resources | This package contains the classes and interfaces which are used for using resources, be they hardware or software resources. |
org.gridlab.gat.security | This package contains classes and interfaces which are required to secure software and hardware resources. |
Uses of URI in org.gridlab.gat |
---|
Methods in org.gridlab.gat that return URI | |
---|---|
static URI |
URI.create(String s)
Creates a URI by parsing the given string. |
URI |
URI.normalize()
Normalizes this URI's path. |
URI |
URI.parseServerAuthority()
Attempts to parse this URI's authority component, if defined, into user-information, host, and port components. |
URI |
URI.relativize(URI arg0)
Relativizes the given URI against this URI. |
URI |
URI.resolve(String arg0)
Constructs a new URI by parsing the given string and then resolving it against this URI. |
URI |
URI.resolve(URI arg0)
Resolves the given URI against this URI. |
URI |
URI.setAuthority(String authority)
|
URI |
URI.setFragment(String fragment)
|
URI |
URI.setHost(String host)
|
URI |
URI.setPath(String path)
|
URI |
URI.setPort(int port)
|
URI |
URI.setQuery(String query)
|
URI |
URI.setScheme(String scheme)
|
URI |
URI.setUserInfo(String userInfo)
|
Methods in org.gridlab.gat with parameters of type URI | |
---|---|
static File |
GAT.createFile(GATContext gatContext,
Preferences preferences,
URI location)
Constructs a File instance which corresponds to the physical file
identified by the passed URI and whose access rights are
determined by the passed GATContext . |
static File |
GAT.createFile(GATContext gatContext,
URI location)
Constructs a File instance which corresponds to the physical file
identified by the passed URI and whose access rights are
determined by the passed GATContext . |
static File |
GAT.createFile(Preferences preferences,
URI location)
Constructs a File instance which corresponds to the physical file
identified by the passed URI and whose access rights are
determined by the default GATContext with additional
Preferences . |
static File |
GAT.createFile(URI location)
Constructs a File instance which corresponds to the physical file
identified by the passed URI and whose access rights are
determined by the default GATContext . |
static FileInputStream |
GAT.createFileInputStream(GATContext gatContext,
Preferences preferences,
URI location)
Constructs a FileInputStream instance which corresponds to the
physical file identified by the passed URI and whose access
rights are determined by the passed GATContext with additional
Preferences . |
static FileInputStream |
GAT.createFileInputStream(GATContext gatContext,
URI location)
Constructs a FileInputStream instance which corresponds to the
physical file identified by the passed URI and whose access
rights are determined by the passed GATContext . |
static FileInputStream |
GAT.createFileInputStream(Preferences preferences,
URI location)
Constructs a FileInputStream instance which corresponds to the
physical file identified by the passed URI and whose access
rights are determined by the default GATContext with additional
Preferences . |
static FileInputStream |
GAT.createFileInputStream(URI location)
Constructs a FileInputStream instance which corresponds to the
physical file identified by the passed URI and whose access
rights are determined by the default GATContext . |
static FileOutputStream |
GAT.createFileOutputStream(GATContext gatContext,
Preferences preferences,
URI location)
Constructs a FileOutputStream instance which corresponds to the
physical file identified by the passed URI and whose access
rights are determined by the passed GATContext . |
static FileOutputStream |
GAT.createFileOutputStream(GATContext gatContext,
Preferences preferences,
URI location,
boolean append)
Constructs a FileOutputStream instance which corresponds to the
physical file identified by the passed URI and whose access
rights are determined by the passed GATContext and additional
Preferences . |
static FileOutputStream |
GAT.createFileOutputStream(GATContext gatContext,
URI location)
Constructs a FileOutputStream instance which corresponds to the
physical file identified by the passed URI and whose access
rights are determined by the passed GATContext . |
static FileOutputStream |
GAT.createFileOutputStream(GATContext gatContext,
URI location,
boolean append)
Constructs a FileOutputStream instance which corresponds to the
physical file identified by the passed URI and whose access
rights are determined by the passed GATContext . |
static FileOutputStream |
GAT.createFileOutputStream(Preferences preferences,
URI location)
Constructs a FileOutputStream instance which corresponds to the
physical file identified by the passed URI and whose access
rights are determined by the default GATContext and additional
Preferences . |
static FileOutputStream |
GAT.createFileOutputStream(Preferences preferences,
URI location,
boolean append)
Constructs a FileOutputStream instance which corresponds to the
physical file identified by the passed URI and whose access
rights are determined by the default GATContext and additional
Preferences . |
static FileOutputStream |
GAT.createFileOutputStream(URI location)
Constructs a FileOutputStream instance which corresponds to the
physical file identified by the passed URI and whose access
rights are determined by the default GATContext . |
static FileOutputStream |
GAT.createFileOutputStream(URI location,
boolean append)
Constructs a FileOutputStream instance which corresponds to the
physical file identified by the passed URI and whose access
rights are determined by the default GATContext . |
static RandomAccessFile |
GAT.createRandomAccessFile(GATContext gatContext,
Preferences preferences,
URI location,
String mode)
Constructs a RandomAccessFile instance which corresponds to the
physical file identified by the passed URI and whose access
rights are determined by the passed GATContext and additional
Preferences . |
static RandomAccessFile |
GAT.createRandomAccessFile(GATContext gatContext,
URI location,
String mode)
Constructs a RandomAccessFile instance which corresponds to the
physical file identified by the passed URI and whose access
rights are determined by the passed GATContext . |
static RandomAccessFile |
GAT.createRandomAccessFile(Preferences preferences,
URI location,
String mode)
Constructs a RandomAccessFile instance which corresponds to the
physical file identified by the passed URI and whose access
rights are determined by the default GATContext and additional
Preferences . |
static RandomAccessFile |
GAT.createRandomAccessFile(URI location,
String mode)
Constructs a RandomAccessFile instance which corresponds to the
physical file identified by the passed URI and whose access
rights are determined by the default GATContext . |
static ResourceBroker |
GAT.createResourceBroker(GATContext gatContext,
Preferences preferences,
URI brokerURI)
This method constructs a ResourceBroker instance corresponding to
the passed GATContext and additional Preferences . |
static ResourceBroker |
GAT.createResourceBroker(GATContext gatContext,
URI brokerURI)
This method constructs a ResourceBroker instance corresponding to
the passed GATContext . |
static ResourceBroker |
GAT.createResourceBroker(Preferences preferences,
URI brokerURI)
This method constructs a ResourceBroker instance corresponding to
the default GATContext and additional Preferences . |
static ResourceBroker |
GAT.createResourceBroker(URI brokerURI)
This method constructs a ResourceBroker instance corresponding to
the default GATContext . |
Uses of URI in org.gridlab.gat.advert |
---|
Methods in org.gridlab.gat.advert with parameters of type URI | |
---|---|
void |
AdvertService.exportDataBase(URI target)
Exports the advert database to persistent memory located at the given URI . |
void |
AdvertService.importDataBase(URI source)
Imports the advert database from persistent memory located at the given URI . |
Uses of URI in org.gridlab.gat.io |
---|
Methods in org.gridlab.gat.io that return URI | |
---|---|
URI |
LogicalFile.getClosestURI(URI loc)
Returns the URI with the smallest network distance to given
URI . |
URI |
File.toGATURI()
|
URI |
RandomAccessFile.toURI()
|
Methods in org.gridlab.gat.io that return types with arguments of type URI | |
---|---|
List<URI> |
LogicalFile.getOrderedURIs(URI location)
Returns a List of URI s ordered from close to
less closer with respect to the given URI. |
List<URI> |
LogicalFile.getURIs()
Returns a java.util.List of URI instances each of which is the URI of a physical file represented by this instance. |
Methods in org.gridlab.gat.io with parameters of type URI | |
---|---|
void |
LogicalFile.addURI(URI location)
Adds the physical file at the passed URI to the set of physical files represented by this LogicalFile instance. |
void |
File.copy(URI loc)
This method copies the physical file represented by this File instance to a physical file identified by the passed URI. |
URI |
LogicalFile.getClosestURI(URI loc)
Returns the URI with the smallest network distance to given
URI . |
List<URI> |
LogicalFile.getOrderedURIs(URI location)
Returns a List of URI s ordered from close to
less closer with respect to the given URI. |
void |
File.move(URI location)
This method moves the physical file represented by this File instance to a physical file identified by the passed URI. |
void |
LogicalFile.removeURI(URI location)
Removes the physical file at the passed URI from the set of physical files represented by this LogicalFile instance. |
void |
LogicalFile.replicate(URI location)
Replicates the logical file represented by this instance to the physical file specified by the passed URI. |
Uses of URI in org.gridlab.gat.resources |
---|
Methods in org.gridlab.gat.resources that return URI | |
---|---|
URI |
WrapperJobDescription.WrappedJobInfo.getBrokerURI()
Returns the URI of the broker where this wrapped Job
should be submitted to. |
URI |
WrapperJobDescription.WrappedJobInfo.getJobStateFileName()
Returns the filename of the file that will be used for forwarding the Job.JobState of the wrapped Job . |
URI |
WrapperJobDescription.getJobStateFileName(JobDescription description)
Returns the filename of the file that's used to forward the Job.JobState of the wrapped Job belonging to this
JobDescription . |
Methods in org.gridlab.gat.resources with parameters of type URI | |
---|---|
void |
WrapperJobDescription.add(JobDescription[] jobDescriptions,
URI brokerURI,
Preferences preferences)
Add JobDescription s for a wrapped Job that should be
submitted to a resource broker located at the given URI with the
set of Preferences . |
void |
WrapperJobDescription.add(JobDescription jobDescription,
URI brokerURI,
Preferences preferences)
Add a JobDescription for a wrapped Job that should be
submitted to a resource broker located at the given URI with the
set of Preferences . |
static void |
WrapperJobDescription.setTriggerDirectory(URI location)
Sets the directory where the trigger files will be written to. |
Constructors in org.gridlab.gat.resources with parameters of type URI | |
---|---|
WrapperJobDescription.WrappedJobInfo(JobDescription jobDescription,
URI brokerURI,
Preferences preferences,
int wrappedJobIndex,
int wrapperJobIndex)
Creates a WrapperJobDescription.WrappedJobInfo . |
Uses of URI in org.gridlab.gat.security |
---|
Methods in org.gridlab.gat.security that return URI | |
---|---|
URI |
CertificateSecurityContext.getCertfile()
Returns the URI of the certificate file. |
URI |
CertificateSecurityContext.getKeyfile()
Returns the location of the keyfile associated with the context. |
Methods in org.gridlab.gat.security with parameters of type URI | |
---|---|
void |
CertificateSecurityContext.setCertfile(URI certfile)
Set the location of the certificate file. |
void |
CertificateSecurityContext.setKeyfile(URI keyfile)
Sets the location of the keyfile associated with the context. |
Constructors in org.gridlab.gat.security with parameters of type URI | |
---|---|
CertificateSecurityContext(URI keyfile,
URI certfile,
String password)
Constructs a CertificateSecurityContext out of a URI
pointing to the private key, a URI pointing to the certificate
and a password. |
|
CertificateSecurityContext(URI keyfile,
URI certfile,
String username,
String password)
Constructs a CertificateSecurityContext out of a URI
pointing to the private key, a URI pointing to the certificate, a
username and a password. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |