Uses of Class
org.ogf.saga.error.NoSuccessException

Packages that use NoSuccessException
org.ogf.saga.attributes There are various places in the SAGA API where attributes need to be associated with objects, for instance for job descriptions and metrics. 
org.ogf.saga.bootstrap This package contains the bootstrap mechanism which connects a SAGA application, written on top of the SAGA Java language bindings, to a specific SAGA implementation. 
org.ogf.saga.buffer This package provides the Buffer interface. 
org.ogf.saga.context This package contains the Context interface, which provides a common interface for storing security information. 
org.ogf.saga.error Each SAGA API call has an associated list of exceptions it may throw, which are described in this package. 
org.ogf.saga.file This package provides classes to manipulate the contents of directories or files. 
org.ogf.saga.isn Provides interfaces to retrieve data from an information model. 
org.ogf.saga.job The job package describes the API for submitting jobs to a grid resource. 
org.ogf.saga.logicalfile This package provides classes to interact with replica systems. 
org.ogf.saga.monitoring The monitoring package defines the Monitorable interface, which must be implemented by monitorable SAGA objects, and also defines the Steerable interface, which extends the monitoring mechanism with the ability to push values back to the monitored entity. 
org.ogf.saga.namespace This package provides classes to manipulate namespaces. 
org.ogf.saga.permissions The permissions package provides the interface Permissions to query and set permissions on Saga objects, such as files or streams. 
org.ogf.saga.rpc The methods of the SAGA RPC package map with the methods as defined in the GridRPC specification, as described in GFD.52, at least semantically, with slight modifications for SAGA look and feel, SAGA error conventions, SAGA task model, et cetera. 
org.ogf.saga.sd This API provides a mechanism to locate services. 
org.ogf.saga.session This package contains the Session interface, which provides a common interface for managing security information (by storing Context objects). 
org.ogf.saga.stream The streams package provides a simple mechanism for setting up connections to remote components. 
org.ogf.saga.task This package provides classes and methods for manipulating tasks and collections of tasks. 
org.ogf.saga.url The methods of the SAGA URL package allow access to the parts of an URL. 
 

Uses of NoSuccessException in org.ogf.saga.attributes
 

Methods in org.ogf.saga.attributes that throw NoSuccessException
 boolean Attributes.existsAttribute(String key)
          Checks the existence of an attribute.
 String[] Attributes.findAttributes(String... patterns)
          Finds matching attributes.
 String Attributes.getAttribute(String key)
          Gets the value of an attribute.
 String[] Attributes.getVectorAttribute(String key)
          Gets the array of values associated with an attribute.
 boolean Attributes.isReadOnlyAttribute(String key)
          Checks the attribute for being read-only.
 boolean Attributes.isRemovableAttribute(String key)
          Checks the attribute for being removable.
 boolean Attributes.isVectorAttribute(String key)
          Checks the attribute for being a vector.
 boolean Attributes.isWritableAttribute(String key)
          Checks the attribute for being writable.
 String[] Attributes.listAttributes()
          Gets the list of attribute keys.
 void Attributes.removeAttribute(String key)
          Removes an attribute.
 void Attributes.setAttribute(String key, String value)
          Sets an attribute to a value.
 void Attributes.setVectorAttribute(String key, String[] values)
          Sets an attribute to an array of values.
 

Uses of NoSuccessException in org.ogf.saga.bootstrap
 

Methods in org.ogf.saga.bootstrap that throw NoSuccessException
static BufferFactory ImplementationBootstrapLoader.getBufferFactory(String factoryName)
          Creates a buffer factory, using the specified SagaFactory.
static ContextFactory ImplementationBootstrapLoader.getContextFactory(String factoryName)
          Creates a context factory, using the specified SagaFactory.
static FileFactory ImplementationBootstrapLoader.getFileFactory(String factoryName)
          Creates a file factory, using the specified SagaFactory.
static ISNFactory ImplementationBootstrapLoader.getISNFactory(String factoryName)
          Creates a ISN factory for the Information System Navigator, using the specified SagaFactory.
static JobFactory ImplementationBootstrapLoader.getJobFactory(String factoryName)
          Creates a job factory, using the specified SagaFactory.
static LogicalFileFactory ImplementationBootstrapLoader.getLogicalFileFactory(String factoryName)
          Creates a logical file factory, using the specified SagaFactory.
static MonitoringFactory ImplementationBootstrapLoader.getMonitoringFactory(String factoryName)
          Creates a monitoring factory, using the specified SagaFactory.
static NSFactory ImplementationBootstrapLoader.getNamespaceFactory(String factoryName)
          Creates a namespace factory, using the specified SagaFactory.
static RPCFactory ImplementationBootstrapLoader.getRPCFactory(String factoryName)
          Creates an RPC factory, using the specified SagaFactory.
static SDFactory ImplementationBootstrapLoader.getSDFactory(String factoryName)
          Creates a SD factory for Service Discovery, using the specified SagaFactory.
static SessionFactory ImplementationBootstrapLoader.getSessionFactory(String factoryName)
          Creates a session factory, using the specified SagaFactory.
static StreamFactory ImplementationBootstrapLoader.getStreamFactory(String factoryName)
          Creates a stream factory, using the specified SagaFactory.
static TaskFactory ImplementationBootstrapLoader.getTaskFactory(String factoryName)
          Creates a task factory, using the specified SagaFactory.
static URLFactory ImplementationBootstrapLoader.getURLFactory(String factoryName)
          Creates an URL factory, using the specified SagaFactory.
 

Uses of NoSuccessException in org.ogf.saga.buffer
 

Methods in org.ogf.saga.buffer that throw NoSuccessException
static Buffer BufferFactory.createBuffer()
          Creates a (implementation-managed) buffer.
static Buffer BufferFactory.createBuffer(byte[] data)
          Creates a (application-allocated) buffer.
static Buffer BufferFactory.createBuffer(int size)
          Creates a (implementation-managed) buffer of the specified size.
static Buffer BufferFactory.createBuffer(String sagaFactoryClassname)
          Creates a (implementation-managed) buffer.
static Buffer BufferFactory.createBuffer(String sagaFactoryClassname, byte[] data)
          Creates a (application-allocated) buffer.
static Buffer BufferFactory.createBuffer(String sagaFactoryClassname, int size)
          Creates a (implementation-managed) buffer of the specified size.
protected abstract  Buffer BufferFactory.doCreateBuffer(byte[] data)
          Creates a buffer.
protected abstract  Buffer BufferFactory.doCreateBuffer(int size)
          Creates a buffer.
 void Buffer.setData(byte[] data)
          Sets the buffer data.
 void Buffer.setSize()
          Sets the size of the buffer.
 void Buffer.setSize(int size)
          Sets the size of the buffer.
 

Uses of NoSuccessException in org.ogf.saga.context
 

Methods in org.ogf.saga.context that throw NoSuccessException
static Context ContextFactory.createContext()
          Constructs a security context.
static Context ContextFactory.createContext(String type)
          Constructs a security context.
static Context ContextFactory.createContext(String sagaFactoryClassname, String type)
          Constructs a security context.
protected abstract  Context ContextFactory.doCreateContext(String type)
          Constructs a security context.
 

Uses of NoSuccessException in org.ogf.saga.error
 

Methods in org.ogf.saga.error that throw NoSuccessException
 SagaObject SagaException.getObject()
          Returns the SAGA object associated with this exception.
 

Uses of NoSuccessException in org.ogf.saga.file
 

Methods in org.ogf.saga.file that throw NoSuccessException
static Directory FileFactory.createDirectory(Session session, URL name)
          Creates a Directory for reading.
static Directory FileFactory.createDirectory(Session session, URL name, int flags)
          Creates a Directory.
static Directory FileFactory.createDirectory(String sagaFactoryClassname, Session session, URL name)
          Creates a Directory for reading.
static Directory FileFactory.createDirectory(String sagaFactoryClassname, Session session, URL name, int flags)
          Creates a Directory.
static Task<FileFactory,Directory> FileFactory.createDirectory(String sagaFactoryClassname, TaskMode mode, Session session, URL name)
          Creates a task that creates a Directory for reading.
static Task<FileFactory,Directory> FileFactory.createDirectory(String sagaFactoryClassname, TaskMode mode, Session session, URL name, int flags)
          Creates a task that creates a Directory.
static Task<FileFactory,Directory> FileFactory.createDirectory(String sagaFactoryClassname, TaskMode mode, URL name)
          Creates a task that creates a Directory for reading, using the default session.
static Task<FileFactory,Directory> FileFactory.createDirectory(String sagaFactoryClassname, TaskMode mode, URL name, int flags)
          Creates a task that creates a Directory, using the default session.
static Directory FileFactory.createDirectory(String sagaFactoryClassname, URL name)
          Creates a Directory for reading, using the default session.
static Directory FileFactory.createDirectory(String sagaFactoryClassname, URL name, int flags)
          Creates a Directory, using the default session.
static Task<FileFactory,Directory> FileFactory.createDirectory(TaskMode mode, Session session, URL name)
          Creates a task that creates a Directory for reading.
static Task<FileFactory,Directory> FileFactory.createDirectory(TaskMode mode, Session session, URL name, int flags)
          Creates a task that creates a Directory.
static Task<FileFactory,Directory> FileFactory.createDirectory(TaskMode mode, URL name)
          Creates a task that creates a Directory for reading, using the default session.
static Task<FileFactory,Directory> FileFactory.createDirectory(TaskMode mode, URL name, int flags)
          Creates a task that creates a Directory, using the default session.
static Directory FileFactory.createDirectory(URL name)
          Creates a Directory for reading, using the default session.
static Directory FileFactory.createDirectory(URL name, int flags)
          Creates a Directory, using the default session.
static File FileFactory.createFile(Session session, URL name)
          Creates a File for reading.
static File FileFactory.createFile(Session session, URL name, int flags)
          Creates a File.
static File FileFactory.createFile(String sagaFactoryClassname, Session session, URL name)
          Creates a File for reading.
static File FileFactory.createFile(String sagaFactoryClassname, Session session, URL name, int flags)
          Creates a File.
static Task<FileFactory,File> FileFactory.createFile(String sagaFactoryClassname, TaskMode mode, Session session, URL name)
          Creates a task that creates a File for reading.
static Task<FileFactory,File> FileFactory.createFile(String sagaFactoryClassname, TaskMode mode, Session session, URL name, int flags)
          Creates a task that creates a File.
static Task<FileFactory,File> FileFactory.createFile(String sagaFactoryClassname, TaskMode mode, URL name)
          Creates a task that creates a File for reading, using the default session.
static Task<FileFactory,File> FileFactory.createFile(String sagaFactoryClassname, TaskMode mode, URL name, int flags)
          Creates a task that creates a File, using the default session.
static File FileFactory.createFile(String sagaFactoryClassname, URL name)
          Creates a File for reading, using the default session.
static File FileFactory.createFile(String sagaFactoryClassname, URL name, int flags)
          Creates a File using the default session.
static Task<FileFactory,File> FileFactory.createFile(TaskMode mode, Session session, URL name)
          Creates a task that creates a File for reading.
static Task<FileFactory,File> FileFactory.createFile(TaskMode mode, Session session, URL name, int flags)
          Creates a task that creates a File.
static Task<FileFactory,File> FileFactory.createFile(TaskMode mode, URL name)
          Creates a task that creates a File for reading, using the default session.
static Task<FileFactory,File> FileFactory.createFile(TaskMode mode, URL name, int flags)
          Creates a task that creates a File, using the default session.
static File FileFactory.createFile(URL name)
          Creates a File for reading, using the default session.
static File FileFactory.createFile(URL name, int flags)
          Creates a File using the default session.
static FileInputStream FileFactory.createFileInputStream(Session session, URL name)
          Creates a FileInputStream.
static FileInputStream FileFactory.createFileInputStream(String sagaFactoryClassname, Session session, URL name)
          Creates a FileInputStream.
static Task<FileFactory,FileInputStream> FileFactory.createFileInputStream(String sagaFactoryClassname, TaskMode mode, Session session, URL name)
          Creates a task that creates a FileInputStream.
static Task<FileFactory,FileInputStream> FileFactory.createFileInputStream(String sagaFactoryClassname, TaskMode mode, URL name)
          Creates a task that creates a FileInputStream using the default session.
static FileInputStream FileFactory.createFileInputStream(String sagaFactoryClassname, URL name)
          Creates a FileInputStream using the default session.
static Task<FileFactory,FileInputStream> FileFactory.createFileInputStream(TaskMode mode, Session session, URL name)
          Creates a task that creates a FileInputStream.
static Task<FileFactory,FileInputStream> FileFactory.createFileInputStream(TaskMode mode, URL name)
          Creates a task that creates a FileInputStream using the default session.
static FileInputStream FileFactory.createFileInputStream(URL name)
          Creates a FileInputStream using the default session.
static FileOutputStream FileFactory.createFileOutputStream(Session session, URL name)
          Creates a FileOutputStream.
static FileOutputStream FileFactory.createFileOutputStream(Session session, URL name, boolean append)
          Creates a FileOutputStream.
static FileOutputStream FileFactory.createFileOutputStream(String sagaFactoryClassname, Session session, URL name)
          Creates a FileOutputStream.
static FileOutputStream FileFactory.createFileOutputStream(String sagaFactoryClassname, Session session, URL name, boolean append)
          Creates a FileOutputStream.
static Task<FileFactory,FileOutputStream> FileFactory.createFileOutputStream(String sagaFactoryClassname, TaskMode mode, Session session, URL name)
          Creates a task that creates a FileOutputStream.
static Task<FileFactory,FileOutputStream> FileFactory.createFileOutputStream(String sagaFactoryClassname, TaskMode mode, Session session, URL name, boolean append)
          Creates a task that creates a FileOutputStream.
static Task<FileFactory,FileOutputStream> FileFactory.createFileOutputStream(String sagaFactoryClassname, TaskMode mode, URL name)
          Creates a task that creates a FileOutputStream using the default session.
static Task<FileFactory,FileOutputStream> FileFactory.createFileOutputStream(String sagaFactoryClassname, TaskMode mode, URL name, boolean append)
          Creates a task that creates a FileOutputStream.
static FileOutputStream FileFactory.createFileOutputStream(String sagaFactoryClassname, URL name)
          Creates a FileOutputStream using the default session.
static FileOutputStream FileFactory.createFileOutputStream(String sagaFactoryClassname, URL name, boolean append)
          Creates a FileOutputStream using the default session.
static Task<FileFactory,FileOutputStream> FileFactory.createFileOutputStream(TaskMode mode, Session session, URL name)
          Creates a task that creates a FileOutputStream.
static Task<FileFactory,FileOutputStream> FileFactory.createFileOutputStream(TaskMode mode, Session session, URL name, boolean append)
          Creates a task that creates a FileOutputStream.
static Task<FileFactory,FileOutputStream> FileFactory.createFileOutputStream(TaskMode mode, URL name)
          Creates a task that creates a FileOutputStream using the default session.
static Task<FileFactory,FileOutputStream> FileFactory.createFileOutputStream(TaskMode mode, URL name, boolean append)
          Creates a task that creates a FileOutputStream.
static FileOutputStream FileFactory.createFileOutputStream(URL name)
          Creates a FileOutputStream using the default session.
static FileOutputStream FileFactory.createFileOutputStream(URL name, boolean append)
          Creates a FileOutputStream using the default session.
static IOVec FileFactory.createIOVec(byte[] data)
          Creates an IOVec.
static IOVec FileFactory.createIOVec(byte[] data, int lenIn)
          Creates an IOVec.
static IOVec FileFactory.createIOVec(int size)
          Creates an IOVec.
static IOVec FileFactory.createIOVec(int size, int lenIn)
          Creates an IOVec.
static IOVec FileFactory.createIOVec(String sagaFactoryClassname, byte[] data)
          Creates an IOVec.
static IOVec FileFactory.createIOVec(String sagaFactoryClassname, byte[] data, int lenIn)
          Creates an IOVec.
static IOVec FileFactory.createIOVec(String sagaFactoryClassname, int size)
          Creates an IOVec.
static IOVec FileFactory.createIOVec(String sagaFactoryClassname, int size, int lenIn)
          Creates an IOVec.
protected abstract  Directory FileFactory.doCreateDirectory(Session session, URL name, int flags)
          Creates a Directory.
protected abstract  File FileFactory.doCreateFile(Session session, URL name, int flags)
          Creates a File.
protected abstract  FileInputStream FileFactory.doCreateFileInputStream(Session session, URL name)
          Creates a FileInputStream.
protected abstract  FileOutputStream FileFactory.doCreateFileOutputStream(Session session, URL name, boolean append)
          Creates a FileOutputStream.
protected abstract  IOVec FileFactory.doCreateIOVec(byte[] data, int lenIn)
          Creates an IOVec.
protected abstract  IOVec FileFactory.doCreateIOVec(int size, int lenIn)
          Creates an IOVec.
 long File.getSize()
          Returns the number of bytes in the file.
 long Directory.getSize(URL name)
          Returns the number of bytes in the specified file.
 long Directory.getSize(URL name, int flags)
          Returns the number of bytes in the specified file.
 boolean Directory.isFile(URL name)
          Tests the name for being a directory entry.
 List<String> File.modesE()
          Lists the extended modes available in this implementation and/or on the server side.
 Directory Directory.openDirectory(URL name)
          Creates a new Directory instance.
 Directory Directory.openDirectory(URL name, int flags)
          Creates a new Directory instance.
 File Directory.openFile(URL name)
          Creates a new File instance.
 File Directory.openFile(URL name, int flags)
          Creates a new File instance.
 FileInputStream Directory.openFileInputStream(URL name)
          Creates a new FileInputStream instance.
 FileOutputStream Directory.openFileOutputStream(URL name)
          Creates a new FileOutputStream instance.
 FileOutputStream Directory.openFileOutputStream(URL name, boolean append)
          Creates a new FileOutputStream instance.
 int File.read(Buffer buffer)
          Reads up to the buffer's size from the file into the buffer.
 int File.read(Buffer buffer, int len)
          Reads up to len bytes from the file into the buffer.
 int File.read(Buffer buffer, int offset, int len)
          Reads up to len bytes from the file into the buffer, at the specified offset.
 int File.readE(String emode, String spec, Buffer buffer)
          Extended read.
 int File.readP(String pattern, Buffer buffer)
          Pattern-based read.
 void File.readV(IOVec[] iovecs)
          Gather/scatter read.
 long File.seek(long offset, SeekMode whence)
          Repositions the current file position as requested.
 int File.sizeE(String emode, String spec)
          Determines the storage size required for an extended I/O operation.
 int File.sizeP(String pattern)
          Determines the storage size required for a pattern I/O operation.
 int File.write(Buffer buffer)
          Writes up to the buffer's size bytes from the buffer to the file at the current file position.
 int File.write(Buffer buffer, int len)
          Writes up to len bytes from the buffer to the file at the current file position.
 int File.write(Buffer buffer, int offset, int len)
          Writes up to len bytes from the buffer at the specified buffer offset to the file at the current file position.
 int File.writeE(String emode, String spec, Buffer buffer)
          Extended write.
 int File.writeP(String pattern, Buffer buffer)
          Pattern-based write.
 void File.writeV(IOVec[] iovecs)
          Gather/scatter write.
 

Uses of NoSuccessException in org.ogf.saga.isn
 

Methods in org.ogf.saga.isn that throw NoSuccessException
static EntityDataSet ISNFactory.createEntityDataSet(String model, String entityName, String filter)
          Creates an EntityDataSet that contains the set of entities that pass the specified filter.
static EntityDataSet ISNFactory.createEntityDataSet(String model, String entityName, String filter, Session session)
          Creates an EntityDataSet that contains the set of entities that pass the specified filter.
static EntityDataSet ISNFactory.createEntityDataSet(String model, String entityName, String filter, Session session, URL infoSystemUrl)
          Creates an EntityDataSet that contains the set of entities that pass the specified filter.
static EntityDataSet ISNFactory.createEntityDataSet(String sagaFactoryClassname, String model, String entityName, String filter)
          Creates an EntityDataSet that contains the set of entities that pass the specified filter.
static EntityDataSet ISNFactory.createEntityDataSet(String sagaFactoryClassname, String model, String entityName, String filter, Session session)
          Creates an EntityDataSet that contains the set of entities that pass the specified filter.
static EntityDataSet ISNFactory.createEntityDataSet(String sagaFactoryClassname, String model, String entityName, String filter, Session session, URL infoSystemUrl)
          Creates an EntityDataSet that contains the set of entities that pass the specified filter.
protected abstract  EntityDataSet ISNFactory.doCreateEntityDataSet(String model, String entityName, String filter, Session session)
          Creates a EntityDataSet with the default URL.
protected abstract  EntityDataSet ISNFactory.doCreateEntityDataSet(String model, String entityName, String filter, Session session, URL infoSystemUrl)
          Creates a EntityDataSet.
 EntityDataSet EntityDataSet.getRelatedEntities(String relatedName)
          Returns an EntityDataSet object for the given entity name.
 EntityDataSet EntityDataSet.getRelatedEntities(String relatedName, String filter)
          Returns an EntityDataSet object for the given entity name and matching the filter string.
 

Uses of NoSuccessException in org.ogf.saga.job
 

Methods in org.ogf.saga.job that throw NoSuccessException
 void Job.checkpoint()
          Asks the resource manager to initiate a checkpoint operation on a running job.
 Job JobService.createJob(JobDescription jd)
          Creates a job instance as specified by the job description provided.
static JobDescription JobFactory.createJobDescription()
          Creates a job description.
static JobDescription JobFactory.createJobDescription(String sagaFactoryClassname)
          Creates a job description.
static JobService JobFactory.createJobService()
          Creates a job service, using the default session and default contact string.
static JobService JobFactory.createJobService(Session session)
          Creates a job service using the default contact string.
static JobService JobFactory.createJobService(Session session, URL rm)
          Creates a job service.
static JobService JobFactory.createJobService(String sagaFactoryClassname)
          Creates a job service, using the default session and default contact string.
static JobService JobFactory.createJobService(String sagaFactoryClassname, Session session)
          Creates a job service using the default contact string.
static JobService JobFactory.createJobService(String sagaFactoryClassname, Session session, URL rm)
          Creates a job service.
static Task<JobFactory,JobService> JobFactory.createJobService(String sagaFactoryClassname, TaskMode mode)
          Creates a task that creates a job service, using the default session and default contact string.
static Task<JobFactory,JobService> JobFactory.createJobService(String sagaFactoryClassname, TaskMode mode, Session session)
          Creates a task that creates a job service, using a default contact string.
static Task<JobFactory,JobService> JobFactory.createJobService(String sagaFactoryClassname, TaskMode mode, Session session, URL rm)
          Creates a task that creates a job service.
static Task<JobFactory,JobService> JobFactory.createJobService(String sagaFactoryClassname, TaskMode mode, URL rm)
          Creates a task that creates a job service, using the default session.
static JobService JobFactory.createJobService(String sagaFactoryClassname, URL rm)
          Creates a job service, using the default session.
static Task<JobFactory,JobService> JobFactory.createJobService(TaskMode mode)
          Creates a task that creates a job service, using the default session and default contact string.
static Task<JobFactory,JobService> JobFactory.createJobService(TaskMode mode, Session session)
          Creates a task that creates a job service, using a default contact string.
static Task<JobFactory,JobService> JobFactory.createJobService(TaskMode mode, Session session, URL rm)
          Creates a task that creates a job service.
static Task<JobFactory,JobService> JobFactory.createJobService(TaskMode mode, URL rm)
          Creates a task that creates a job service, using the default session.
static JobService JobFactory.createJobService(URL rm)
          Creates a job service, using the default session.
protected abstract  JobDescription JobFactory.doCreateJobDescription()
          Creates a job description.
protected abstract  JobService JobFactory.doCreateJobService(Session session, URL rm)
          Creates a job service.
 Job JobService.getJob(String jobId)
          Returns the job instance associated with the specified job identification.
 JobDescription Job.getJobDescription()
          Retrieves the job description that was used to submit this job instance.
 JobSelf JobService.getSelf()
          Returns a job instance representing the calling application.
 InputStream Job.getStderr()
          Returns the error stream of this job (which can be read).
 OutputStream Job.getStdin()
          Returns the input stream of this job (to which can be written).
 InputStream Job.getStdout()
          Returns the output stream of this job (which can be read).
 List<String> JobService.list()
          Obtains the list of jobs that are currently known to the resource manager.
 void Job.migrate(JobDescription jd)
          Asks the resource manager to migrate a job.
 void Job.resume()
          Asks the resource manager to perform a resume operation on a suspended job.
 Job JobService.runJob(String commandLine)
          Runs the specified command, non-interactively, on a host chosen by the implementation.
 Job JobService.runJob(String commandLine, boolean interactive)
          Runs the specified command on a host chosen by the implementation.
 Job JobService.runJob(String commandLine, String host)
          Runs the specified command, non-interactively, on the specified host.
 Job JobService.runJob(String commandLine, String host, boolean interactive)
          Runs the specified command on the specified host.
 void Job.signal(int signum)
          Asks the resource manager to deliver an arbitrary signal to a dispatched job.
 void Job.suspend()
          Asks the resource manager to perform a suspend operation on a running job.
 

Uses of NoSuccessException in org.ogf.saga.logicalfile
 

Methods in org.ogf.saga.logicalfile that throw NoSuccessException
 void LogicalFile.addLocation(URL name)
          Adds a replica location to the replica set.
static LogicalDirectory LogicalFileFactory.createLogicalDirectory(Session session, URL name)
          Creates a LogicalDirectory using READ open mode.
static LogicalDirectory LogicalFileFactory.createLogicalDirectory(Session session, URL name, int flags)
          Creates a LogicalDirectory.
static LogicalDirectory LogicalFileFactory.createLogicalDirectory(String sagaFactoryClassname, Session session, URL name)
          Creates a LogicalDirectory using READ open mode.
static LogicalDirectory LogicalFileFactory.createLogicalDirectory(String sagaFactoryClassname, Session session, URL name, int flags)
          Creates a LogicalDirectory.
static Task<LogicalFileFactory,LogicalDirectory> LogicalFileFactory.createLogicalDirectory(String sagaFactoryClassname, TaskMode mode, Session session, URL name)
          Creates a task that creates a LogicalDirectory using READ open mode.
static Task<LogicalFileFactory,LogicalDirectory> LogicalFileFactory.createLogicalDirectory(String sagaFactoryClassname, TaskMode mode, Session session, URL name, int flags)
          Creates a task that creates a LogicalDirectory.
static Task<LogicalFileFactory,LogicalDirectory> LogicalFileFactory.createLogicalDirectory(String sagaFactoryClassname, TaskMode mode, URL name)
          Creates a task that creates a LogicalDirectory using READ open mode, using the default session.
static Task<LogicalFileFactory,LogicalDirectory> LogicalFileFactory.createLogicalDirectory(String sagaFactoryClassname, TaskMode mode, URL name, int flags)
          Creates a task that creates a LogicalDirectory using the default session.
static LogicalDirectory LogicalFileFactory.createLogicalDirectory(String sagaFactoryClassname, URL name)
          Creates a LogicalDirectory using READ open mode, using the default session.
static LogicalDirectory LogicalFileFactory.createLogicalDirectory(String sagaFactoryClassname, URL name, int flags)
          Creates a LogicalDirectory using the default session.
static Task<LogicalFileFactory,LogicalDirectory> LogicalFileFactory.createLogicalDirectory(TaskMode mode, Session session, URL name)
          Creates a task that creates a LogicalDirectory using READ open mode.
static Task<LogicalFileFactory,LogicalDirectory> LogicalFileFactory.createLogicalDirectory(TaskMode mode, Session session, URL name, int flags)
          Creates a task that creates a LogicalDirectory.
static Task<LogicalFileFactory,LogicalDirectory> LogicalFileFactory.createLogicalDirectory(TaskMode mode, URL name)
          Creates a task that creates a LogicalDirectory using READ open mode, using the default session.
static Task<LogicalFileFactory,LogicalDirectory> LogicalFileFactory.createLogicalDirectory(TaskMode mode, URL name, int flags)
          Creates a task that creates a LogicalDirectory using the default session.
static LogicalDirectory LogicalFileFactory.createLogicalDirectory(URL name)
          Creates a LogicalDirectory using READ open mode, using the default session.
static LogicalDirectory LogicalFileFactory.createLogicalDirectory(URL name, int flags)
          Creates a LogicalDirectory using the default session.
static LogicalFile LogicalFileFactory.createLogicalFile(Session session, URL name)
          Creates a LogicalFile using READ open mode.
static LogicalFile LogicalFileFactory.createLogicalFile(Session session, URL name, int flags)
          Creates a LogicalFile.
static LogicalFile LogicalFileFactory.createLogicalFile(String sagaFactoryClassname, Session session, URL name)
          Creates a LogicalFile using READ open mode.
static LogicalFile LogicalFileFactory.createLogicalFile(String sagaFactoryClassname, Session session, URL name, int flags)
          Creates a LogicalFile.
static Task<LogicalFileFactory,LogicalFile> LogicalFileFactory.createLogicalFile(String sagaFactoryClassname, TaskMode mode, Session session, URL name)
          Creates a task that creates a LogicalFile using READ open mode.
static Task<LogicalFileFactory,LogicalFile> LogicalFileFactory.createLogicalFile(String sagaFactoryClassname, TaskMode mode, Session session, URL name, int flags)
          Creates a task that creates a LogicalFile.
static Task<LogicalFileFactory,LogicalFile> LogicalFileFactory.createLogicalFile(String sagaFactoryClassname, TaskMode mode, URL name)
          Creates a task that creates a LogicalFile using READ open mode, using the default session.
static Task<LogicalFileFactory,LogicalFile> LogicalFileFactory.createLogicalFile(String sagaFactoryClassname, TaskMode mode, URL name, int flags)
          Creates a task that creates a LogicalFile using the default session.
static LogicalFile LogicalFileFactory.createLogicalFile(String sagaFactoryClassname, URL name)
          Creates a LogicalFile using READ open mode, using the default session.
static LogicalFile LogicalFileFactory.createLogicalFile(String sagaFactoryClassname, URL name, int flags)
          Creates a LogicalFile using the default session.
static Task<LogicalFileFactory,LogicalFile> LogicalFileFactory.createLogicalFile(TaskMode mode, Session session, URL name)
          Creates a task that creates a LogicalFile using READ open mode.
static Task<LogicalFileFactory,LogicalFile> LogicalFileFactory.createLogicalFile(TaskMode mode, Session session, URL name, int flags)
          Creates a task that creates a LogicalFile.
static Task<LogicalFileFactory,LogicalFile> LogicalFileFactory.createLogicalFile(TaskMode mode, URL name)
          Creates a task that creates a LogicalFile using READ open mode, using the default session.
static Task<LogicalFileFactory,LogicalFile> LogicalFileFactory.createLogicalFile(TaskMode mode, URL name, int flags)
          Creates a task that creates a LogicalFile using the default session.
static LogicalFile LogicalFileFactory.createLogicalFile(URL name)
          Creates a LogicalFile using READ open mode, using the default session.
static LogicalFile LogicalFileFactory.createLogicalFile(URL name, int flags)
          Creates a LogicalFile using the default session.
protected abstract  LogicalDirectory LogicalFileFactory.doCreateLogicalDirectory(Session session, URL name, int flags)
          Creates a Directory.
protected abstract  LogicalFile LogicalFileFactory.doCreateLogicalFile(Session session, URL name, int flags)
          Creates a LogicalFile.
 List<URL> LogicalDirectory.find(String namePattern, String[] attrPattern)
          Finds entries in the current directory and below, with matching names and matching meta data.
 List<URL> LogicalDirectory.find(String namePattern, String[] attrPattern, int flags)
          Finds entries in the current directory and possibly below, with matching names and matching meta data.
 boolean LogicalDirectory.isFile(URL name)
          Tests the name for being a logical file.
 List<URL> LogicalFile.listLocations()
          Lists the locations in this location set.
 LogicalDirectory LogicalDirectory.openLogicalDir(URL name)
          Creates a new LogicalDirectory instance with read flag.
 LogicalDirectory LogicalDirectory.openLogicalDir(URL name, int flags)
          Creates a new LogicalDirectory instance.
 LogicalFile LogicalDirectory.openLogicalFile(URL name)
          Creates a new LogicalFile instance with read flag.
 LogicalFile LogicalDirectory.openLogicalFile(URL name, int flags)
          Creates a new LogicalFile instance.
 void LogicalFile.removeLocation(URL name)
          Removes a replica location from the replica set.
 void LogicalFile.replicate(URL name)
          Replicates a file from any of the known locations to a new location, with default flags NONE.
 void LogicalFile.replicate(URL name, int flags)
          Replicates a file from any of the known locations to a new location.
 void LogicalFile.updateLocation(URL nameOld, URL nameNew)
          Changes a replica location in the replica set.
 

Uses of NoSuccessException in org.ogf.saga.monitoring
 

Methods in org.ogf.saga.monitoring that throw NoSuccessException
 int Metric.addCallback(Callback cb)
          Adds the specified callback to the metric.
 int Monitorable.addCallback(String name, Callback cb)
          Adds a callback to the specified metric.
 boolean Steerable.addMetric(Metric metric)
          Adds a metric instance to the application instance.
static Metric MonitoringFactory.createMetric(String name, String desc, String mode, String unit, String type, String value)
          Constructs a Metric object with the specified parameters.
static Metric MonitoringFactory.createMetric(String sagaFactoryClassname, String name, String desc, String mode, String unit, String type, String value)
          Constructs a Metric object with the specified parameters.
protected abstract  Metric MonitoringFactory.doCreateMetric(String name, String desc, String mode, String unit, String type, String value)
          Constructs a Metric object with the specified parameters.
 void Metric.fire()
          Pushes a new metric value to the backend.
 void Steerable.fireMetric(String name)
          Pushes a new metric value to the backend.
 Metric Monitorable.getMetric(String name)
          Returns a metric instance, identified by name.
 String[] Monitorable.listMetrics()
          Lists all metrics associated with the object.
 void Metric.removeCallback(int cookie)
          Removes a callback from the metric.
 void Monitorable.removeCallback(String name, int cookie)
          Removes the specified callback.
 void Steerable.removeMetric(String name)
          Removes a metric instance.
 

Uses of NoSuccessException in org.ogf.saga.namespace
 

Methods in org.ogf.saga.namespace that throw NoSuccessException
 void NSDirectory.changeDir(URL dir)
          Changes the working directory.
 void NSEntry.close()
          Closes this entry.
 void NSEntry.close(float timeoutInSeconds)
          Closes this entry.
 void NSDirectory.copy(String source, URL target)
          Copies the source entry to another part of the namespace.
 void NSDirectory.copy(String source, URL target, int flags)
          Copies the source entry to another part of the namespace.
 void NSEntry.copy(URL target)
          Copies this entry to another part of the namespace.
 void NSEntry.copy(URL target, int flags)
          Copies this entry to another part of the namespace.
 void NSDirectory.copy(URL source, URL target)
          Copies the source entry to another part of the namespace.
 void NSDirectory.copy(URL source, URL target, int flags)
          Copies the source entry to another part of the namespace.
static NSDirectory NSFactory.createNSDirectory(Session session, URL name)
          Creates a namespace directory.
static NSDirectory NSFactory.createNSDirectory(Session session, URL name, int flags)
          Creates a namespace directory.
static NSDirectory NSFactory.createNSDirectory(String sagaFactoryClassname, Session session, URL name)
          Creates a namespace directory.
static NSDirectory NSFactory.createNSDirectory(String sagaFactoryClassname, Session session, URL name, int flags)
          Creates a namespace directory.
static Task<NSFactory,NSDirectory> NSFactory.createNSDirectory(String sagaFactoryClassname, TaskMode mode, Session session, URL name)
          Creates a task that creates a namespace directory.
static Task<NSFactory,NSDirectory> NSFactory.createNSDirectory(String sagaFactoryClassname, TaskMode mode, Session session, URL name, int flags)
          Creates a task that creates a namespace directory.
static Task<NSFactory,NSDirectory> NSFactory.createNSDirectory(String sagaFactoryClassname, TaskMode mode, URL name)
          Creates a task that creates a namespace directory using the default session.
static Task<NSFactory,NSDirectory> NSFactory.createNSDirectory(String sagaFactoryClassname, TaskMode mode, URL name, int flags)
          Creates a task that creates a namespace directory using the default session.
static NSDirectory NSFactory.createNSDirectory(String sagaFactoryClassname, URL name)
          Creates a namespace directory using the default session.
static NSDirectory NSFactory.createNSDirectory(String sagaFactoryClassname, URL name, int flags)
          Creates a namespace directory using the default session.
static Task<NSFactory,NSDirectory> NSFactory.createNSDirectory(TaskMode mode, Session session, URL name)
          Creates a task that creates a namespace directory.
static Task<NSFactory,NSDirectory> NSFactory.createNSDirectory(TaskMode mode, Session session, URL name, int flags)
          Creates a task that creates a namespace directory.
static Task<NSFactory,NSDirectory> NSFactory.createNSDirectory(TaskMode mode, URL name)
          Creates a task that creates a namespace directory using the default session.
static Task<NSFactory,NSDirectory> NSFactory.createNSDirectory(TaskMode mode, URL name, int flags)
          Creates a task that creates a namespace directory using the default session.
static NSDirectory NSFactory.createNSDirectory(URL name)
          Creates a namespace directory using the default session.
static NSDirectory NSFactory.createNSDirectory(URL name, int flags)
          Creates a namespace directory using the default session.
static NSEntry NSFactory.createNSEntry(Session session, URL name)
          Creates a namespace entry.
static NSEntry NSFactory.createNSEntry(Session session, URL name, int flags)
          Creates a namespace entry.
static NSEntry NSFactory.createNSEntry(String sagaFactoryClassname, Session session, URL name)
          Creates a namespace entry.
static NSEntry NSFactory.createNSEntry(String sagaFactoryClassname, Session session, URL name, int flags)
          Creates a namespace entry.
static Task<NSFactory,NSEntry> NSFactory.createNSEntry(String sagaFactoryClassname, TaskMode mode, Session session, URL name)
          Creates a task that creates a namespace entry.
static Task<NSFactory,NSEntry> NSFactory.createNSEntry(String sagaFactoryClassname, TaskMode mode, Session session, URL name, int flags)
          Creates a task that creates a namespace entry.
static Task<NSFactory,NSEntry> NSFactory.createNSEntry(String sagaFactoryClassname, TaskMode mode, URL name)
          Creates a task that creates a namespace entry using the default session.
static Task<NSFactory,NSEntry> NSFactory.createNSEntry(String sagaFactoryClassname, TaskMode mode, URL name, int flags)
          Creates a task that creates a namespace entry using the default session.
static NSEntry NSFactory.createNSEntry(String sagaFactoryClassname, URL name)
          Creates a namespace entry using the default session.
static NSEntry NSFactory.createNSEntry(String sagaFactoryClassname, URL name, int flags)
          Creates a namespace entry using the default session.
static Task<NSFactory,NSEntry> NSFactory.createNSEntry(TaskMode mode, Session session, URL name)
          Creates a task that creates a namespace entry.
static Task<NSFactory,NSEntry> NSFactory.createNSEntry(TaskMode mode, Session session, URL name, int flags)
          Creates a task that creates a namespace entry.
static Task<NSFactory,NSEntry> NSFactory.createNSEntry(TaskMode mode, URL name)
          Creates a task that creates a namespace entry using the default session.
static Task<NSFactory,NSEntry> NSFactory.createNSEntry(TaskMode mode, URL name, int flags)
          Creates a task that creates a namespace entry using the default session.
static NSEntry NSFactory.createNSEntry(URL name)
          Creates a namespace entry using the default session.
static NSEntry NSFactory.createNSEntry(URL name, int flags)
          Creates a namespace entry using the default session.
protected abstract  NSDirectory NSFactory.doCreateNSDirectory(Session session, URL name, int flags)
          Creates a namespace directory.
protected abstract  NSEntry NSFactory.doCreateNSEntry(Session session, URL name, int flags)
          Creates a namespace entry.
 boolean NSDirectory.exists(URL name)
          Queries for the existence of an entry.
 List<URL> NSDirectory.find(String pattern)
          Finds entries in the directory and below that match the specified pattern.
 List<URL> NSDirectory.find(String pattern, int flags)
          Finds entries in the directory and below that match the specified pattern.
 URL NSEntry.getCWD()
          Obtains the current working directory for the entry.
 URL NSDirectory.getEntry(int entry)
          Gives the name of an entry in the directory based upon the enumeration defined by NSDirectory.getNumEntries().
 long NSEntry.getMTime()
          Returns the time of the last modification in seconds since epoch (01.01.1970).
 long NSDirectory.getMTime(URL name)
          Returns the time of the last modification in seconds since epoch (01.01.1970) of the specified name.
 URL NSEntry.getName()
          Obtains the name part of the URL of this entry.
 int NSDirectory.getNumEntries()
          Obtains the number of entries in this directory.
 URL NSEntry.getURL()
          Obtains the complete URL referring to the entry.
 boolean NSEntry.isDir()
          Tests this entry for being a directory.
 boolean NSDirectory.isDir(URL name)
          Tests the name for being a directory.
 boolean NSEntry.isEntry()
          Tests this entry for being a namespace entry.
 boolean NSDirectory.isEntry(URL name)
          Tests the name for being a namespace entry.
 boolean NSEntry.isLink()
          Tests this entry for being a link.
 boolean NSDirectory.isLink(URL name)
          Tests the name for being a link.
 void NSDirectory.link(String source, URL target)
          Creates a symbolic link from the specified target to the specified source.
 void NSDirectory.link(String source, URL target, int flags)
          Creates a symbolic link from the specified target to the specified source.
 void NSEntry.link(URL target)
          Creates a symbolic link from the target to this entry.
 void NSEntry.link(URL target, int flags)
          Creates a symbolic link from the target to this entry.
 void NSDirectory.link(URL source, URL target)
          Creates a symbolic link from the specified target to the specified source.
 void NSDirectory.link(URL source, URL target, int flags)
          Creates a symbolic link from the specified target to the specified source.
 List<URL> NSDirectory.list()
          Lists entries in the directory.
 List<URL> NSDirectory.list(int flags)
          Lists entries in the directory.
 List<URL> NSDirectory.list(String pattern)
          Lists entries in the directory that match the specified pattern.
 List<URL> NSDirectory.list(String pattern, int flags)
          Lists entries in the directory that match the specified pattern.
 void NSDirectory.makeDir(URL target)
          Creates a new directory.
 void NSDirectory.makeDir(URL target, int flags)
          Creates a new directory.
 void NSDirectory.move(String source, URL target)
          Renames the specified source to the specified target, or move the specified source to the specified target if the target is a directory.
 void NSDirectory.move(String source, URL target, int flags)
          Renames the specified source to the specified target, or move the specified source to the specified target if the target is a directory.
 void NSEntry.move(URL target)
          Renames this entry to the target, or moves this entry to the target if it is a directory.
 void NSEntry.move(URL target, int flags)
          Renames this entry to the target, or moves this entry to the target if it is a directory.
 void NSDirectory.move(URL source, URL target)
          Renames the specified source to the specified target, or move the specified source to the specified target if the target is a directory.
 void NSDirectory.move(URL source, URL target, int flags)
          Renames the specified source to the specified target, or move the specified source to the specified target if the target is a directory.
 NSEntry NSDirectory.open(URL name)
          Creates a new NamespaceEntry instance.
 NSEntry NSDirectory.open(URL name, int flags)
          Creates a new NamespaceEntry instance.
 NSDirectory NSDirectory.openDir(URL name)
          Creates a new NamespaceDirectory instance.
 NSDirectory NSDirectory.openDir(URL name, int flags)
          Creates a new NamespaceDirectory instance.
 void NSEntry.permissionsAllow(String id, int permissions, int flags)
          Allows the specified permissions for the specified id.
 void NSDirectory.permissionsAllow(String target, String id, int permissions)
          Allows the specified permissions for the specified id.
 void NSDirectory.permissionsAllow(String target, String id, int permissions, int flags)
          Allows the specified permissions for the specified id.
 void NSDirectory.permissionsAllow(URL target, String id, int permissions)
          Allows the specified permissions for the specified id.
 void NSDirectory.permissionsAllow(URL target, String id, int permissions, int flags)
          Allows the specified permissions for the specified id.
 void NSEntry.permissionsDeny(String id, int permissions, int flags)
          Denies the specified permissions for the specified id.
 void NSDirectory.permissionsDeny(String target, String id, int permissions)
          Denies the specified permissions for the specified id.
 void NSDirectory.permissionsDeny(String target, String id, int permissions, int flags)
          Denies the specified permissions for the specified id.
 void NSDirectory.permissionsDeny(URL target, String id, int permissions)
          Denies the specified permissions for the specified id.
 void NSDirectory.permissionsDeny(URL target, String id, int permissions, int flags)
          Denies the specified permissions for the specified id.
 URL NSEntry.readLink()
          Returns the URL representing the link target.
 URL NSDirectory.readLink(URL name)
          Returns the URL representing the link target.
 void NSEntry.remove()
          Removes this entry and closes it.
 void NSEntry.remove(int flags)
          Removes this entry and closes it.
 void NSDirectory.remove(String target)
          Removes the specified entry.
 void NSDirectory.remove(String target, int flags)
          Removes the specified entry.
 void NSDirectory.remove(URL target)
          Removes the specified entry.
 void NSDirectory.remove(URL target, int flags)
          Removes the specified entry.
 

Uses of NoSuccessException in org.ogf.saga.permissions
 

Methods in org.ogf.saga.permissions that throw NoSuccessException
 String Permissions.getGroup()
          Gets the group id of the entity.
 String Permissions.getOwner()
          Gets the owner id of the entity.
 void Permissions.permissionsAllow(String id, int permissions)
          Allows the specified permissions for the specified id.
 boolean Permissions.permissionsCheck(String id, int permissions)
          Determines if the specified permissions are enabled for the specified id.
 void Permissions.permissionsDeny(String id, int permissions)
          Denies the specified permissions for the specified id.
 

Uses of NoSuccessException in org.ogf.saga.rpc
 

Methods in org.ogf.saga.rpc that throw NoSuccessException
 void RPC.call(Parameter... parameters)
          Calls the remote procedure.
 void RPC.close()
          Non-blocking close of the RPC handle instance.
 void RPC.close(float timeoutInSeconds)
          Closes the RPC handle instance.
static Parameter RPCFactory.createParameter()
          Creates an IN Parameter object.
static Parameter RPCFactory.createParameter(IOMode mode)
          Creates a Parameter object.
static Parameter RPCFactory.createParameter(Object data)
          Creates an IN Parameter object.
static Parameter RPCFactory.createParameter(Object data, IOMode mode)
          Creates a Parameter object.
static Parameter RPCFactory.createParameter(String sagaFactoryClassname)
          Creates an IN Parameter object.
static Parameter RPCFactory.createParameter(String sagaFactoryClassname, IOMode mode)
          Creates a Parameter object.
static Parameter RPCFactory.createParameter(String sagaFactoryClassname, Object data)
          Creates an IN Parameter object.
static Parameter RPCFactory.createParameter(String sagaFactoryClassname, Object data, IOMode mode)
          Creates a Parameter object.
static RPC RPCFactory.createRPC(Session session, URL funcname)
          Creates a RPC handle instance.
static RPC RPCFactory.createRPC(String sagaFactoryClassname, Session session, URL funcname)
          Creates a RPC handle instance.
static Task<RPCFactory,RPC> RPCFactory.createRPC(String sagaFactoryClassname, TaskMode mode, Session session, URL funcname)
          Creates a task that creates a RPC handle instance.
static Task<RPCFactory,RPC> RPCFactory.createRPC(String sagaFactoryClassname, TaskMode mode, URL funcname)
          Creates a task that creates a RPC handle instance using the default session.
static RPC RPCFactory.createRPC(String sagaFactoryClassname, URL funcname)
          Creates a RPC handle instance using the default session.
static Task<RPCFactory,RPC> RPCFactory.createRPC(TaskMode mode, Session session, URL funcname)
          Creates a task that creates a RPC handle instance.
static Task<RPCFactory,RPC> RPCFactory.createRPC(TaskMode mode, URL funcname)
          Creates a task that creates a RPC handle instance using the default session.
static RPC RPCFactory.createRPC(URL funcname)
          Creates a RPC handle instance using the default session.
protected abstract  Parameter RPCFactory.doCreateParameter(Object data, IOMode mode)
          Creates a Parameter object.
protected abstract  RPC RPCFactory.doCreateRPC(Session session, URL funcname)
          Creates a RPC handle instance.
 

Uses of NoSuccessException in org.ogf.saga.sd
 

Methods in org.ogf.saga.sd that throw NoSuccessException
static Discoverer SDFactory.createDiscoverer()
          Creates a Discoverer with the default Session and URL.
static Discoverer SDFactory.createDiscoverer(Session session)
          Creates a Discoverer with a specified session and a default and URL.
static Discoverer SDFactory.createDiscoverer(Session session, URL url)
          Creates a Discoverer.
static Discoverer SDFactory.createDiscoverer(String sagaFactoryClassname)
          Creates a Discoverer with the default Session and URL.
static Discoverer SDFactory.createDiscoverer(String sagaFactoryClassname, Session session)
          Creates a Discoverer with a specified session and a default and URL.
static Discoverer SDFactory.createDiscoverer(String sagaFactoryClassname, Session session, URL url)
          Creates a Discoverer.
protected abstract  Discoverer SDFactory.doCreateDiscoverer(Session session)
          Creates a Discoverer with the default URL.
protected abstract  Discoverer SDFactory.doCreateDiscoverer(Session session, URL url)
          Creates a Discoverer.
 Set<ServiceDescription> ServiceDescription.getRelatedServices()
          Returns the set of related services.
 List<ServiceDescription> Discoverer.listServices(String serviceFilter, String dataFilter)
          Returns the set of services that pass the set of specified filters, an implicit authzFilter is constructed from the contexts of the session.
 List<ServiceDescription> Discoverer.listServices(String serviceFilter, String dataFilter, String authzFilter)
          Returns the set of services that pass the set of specified filters.
 

Uses of NoSuccessException in org.ogf.saga.session
 

Methods in org.ogf.saga.session that throw NoSuccessException
 void Session.addContext(Context context)
          Attaches a deep copy of the specified security context to the session.
static Session SessionFactory.createSession()
          Returns the default session, with all the default contexts.
static Session SessionFactory.createSession(boolean defaults)
          Creates a session.
static Session SessionFactory.createSession(String sagaFactoryClassname)
          Returns the default session, with all the default contexts.
static Session SessionFactory.createSession(String sagaFactoryClassname, boolean defaults)
          Creates a session.
protected abstract  Session SessionFactory.doCreateSession(boolean defaults)
          Creates a session.
 

Uses of NoSuccessException in org.ogf.saga.stream
 

Methods in org.ogf.saga.stream that throw NoSuccessException
 void Stream.close()
          Closes an active connection.
 void StreamServer.close()
          Closes a stream server.
 void Stream.close(float timeoutInSeconds)
          Closes an active connection.
 void StreamServer.close(float timeoutInSeconds)
          Closes a stream server.
 void Stream.connect()
          Establishes a connection to the target defined during the construction of the stream.
 Stream StreamServer.connect()
          Establishes a connection to the stream server.
 void Stream.connect(float timeoutInSeconds)
          Establishes a connection to the target defined during the construction of the stream.
 Stream StreamServer.connect(float timeoutInSeconds)
          Establishes a connection to the stream server.
static Stream StreamFactory.createStream(Session session, URL name)
          Creates a Stream.
static Stream StreamFactory.createStream(String sagaFactoryClassname, Session session, URL name)
          Creates a Stream.
static Task<StreamFactory,Stream> StreamFactory.createStream(String sagaFactoryClassname, TaskMode mode, Session session, URL name)
          Creates a task that creates a Stream.
static Task<StreamFactory,Stream> StreamFactory.createStream(String sagaFactoryClassname, TaskMode mode, URL name)
          Creates a task that creates a Stream using the default session.
static Stream StreamFactory.createStream(String sagaFactoryClassname, URL name)
          Creates a Stream using the default session.
static Task<StreamFactory,Stream> StreamFactory.createStream(TaskMode mode, Session session, URL name)
          Creates a task that creates a Stream.
static Task<StreamFactory,Stream> StreamFactory.createStream(TaskMode mode, URL name)
          Creates a task that creates a Stream using the default session.
static Stream StreamFactory.createStream(URL name)
          Creates a Stream using the default session.
static StreamServer StreamFactory.createStreamServer()
          Creates a StreamServer using the default session.
static StreamServer StreamFactory.createStreamServer(Session session)
          Creates a StreamServer.
static StreamServer StreamFactory.createStreamServer(Session session, URL name)
          Creates a StreamServer.
static StreamServer StreamFactory.createStreamServer(String sagaFactoryClassname)
          Creates a StreamServer using the default session.
static StreamServer StreamFactory.createStreamServer(String sagaFactoryClassname, Session session)
          Creates a StreamServer.
static StreamServer StreamFactory.createStreamServer(String sagaFactoryClassname, Session session, URL name)
          Creates a StreamServer.
static Task<StreamFactory,StreamServer> StreamFactory.createStreamServer(String sagaFactoryClassname, TaskMode mode)
          Creates a task that creates a StreamServer using the default session.
static Task<StreamFactory,StreamServer> StreamFactory.createStreamServer(String sagaFactoryClassname, TaskMode mode, Session session)
          Creates a task that creates a StreamServer.
static Task<StreamFactory,StreamServer> StreamFactory.createStreamServer(String sagaFactoryClassname, TaskMode mode, Session session, URL name)
          Creates a task that creates a StreamServer.
static Task<StreamFactory,StreamServer> StreamFactory.createStreamServer(String sagaFactoryClassname, TaskMode mode, URL name)
          Creates a task that creates a StreamServer using the default session.
static StreamServer StreamFactory.createStreamServer(String sagaFactoryClassname, URL name)
          Creates a StreamServer using the default session.
static Task<StreamFactory,StreamServer> StreamFactory.createStreamServer(TaskMode mode)
          Creates a task that creates a StreamServer using the default session.
static Task<StreamFactory,StreamServer> StreamFactory.createStreamServer(TaskMode mode, Session session)
          Creates a task that creates a StreamServer.
static Task<StreamFactory,StreamServer> StreamFactory.createStreamServer(TaskMode mode, Session session, URL name)
          Creates a task that creates a StreamServer.
static Task<StreamFactory,StreamServer> StreamFactory.createStreamServer(TaskMode mode, URL name)
          Creates a task that creates a StreamServer using the default session.
static StreamServer StreamFactory.createStreamServer(URL name)
          Creates a StreamServer using the default session.
protected abstract  Stream StreamFactory.doCreateStream(Session session, URL name)
          Creates a Stream.
protected abstract  StreamServer StreamFactory.doCreateStreamServer(Session session, URL name)
          Creates a StreamServer.
 Context Stream.getContext()
          Returns the remote authorization info.
 StreamInputStream Stream.getInputStream()
          Obtains an InputStream from the stream.
 StreamOutputStream Stream.getOutputStream()
          Obtains an OutputStream from the stream.
 URL Stream.getUrl()
          Obtains the URL that was used to create the stream.
 URL StreamServer.getUrl()
          Obtains the URL to be used to connect to this server.
 int Stream.read(Buffer buffer)
          Reads a raw buffer from the stream.
 int Stream.read(Buffer buffer, int len)
          Reads a raw buffer from the stream.
 Stream StreamServer.serve()
          Waits for incoming client connections (like an accept of a serversocket).
 Stream StreamServer.serve(float timeoutInSeconds)
          Waits for incoming client connections (like an accept of a serversocket).
 int Stream.waitFor(int what)
          Checks if the stream is ready for I/O, or if it has entered the ERROR state.
 int Stream.waitFor(int what, float timeoutInSeconds)
          Checks if the stream is ready for I/O, or if it has entered the ERROR state.
 int Stream.write(Buffer buffer)
          Writes a raw buffer to the stream.
 int Stream.write(Buffer buffer, int len)
          Writes a raw buffer to the stream.
 

Uses of NoSuccessException in org.ogf.saga.task
 

Methods in org.ogf.saga.task that throw NoSuccessException
 void TaskContainer.add(Task<?,?> task)
          Adds a task to the task container.
 void TaskContainer.cancel()
          Cancels all the asynchronous operations in the container.
 void Task.cancel()
          Cancels the asynchronous operation.
 void TaskContainer.cancel(float timeoutInSeconds)
          Cancels all the asynchronous operations in the container.
 void Task.cancel(float timeoutInSeconds)
          Cancels the asynchronous operation.
static TaskContainer TaskFactory.createTaskContainer()
          Constructs a TaskContainer object.
static TaskContainer TaskFactory.createTaskContainer(String sagaFactoryClassname)
          Constructs a TaskContainer object.
protected abstract  TaskContainer TaskFactory.doCreateTaskContainer()
          Constructs a TaskContainer object.
 T Task.getObject()
          Gets the object from which the task was created.
 E Task.getResult()
          Obtains the result of the asynchronous method call.
 State Task.getState()
          Gets the state of the task.
 State[] TaskContainer.getStates()
          Gets the states of all tasks in the task container.
 Task<?,?> TaskContainer.getTask(String id)
          Gets a single task from the task container.
 Task<?,?>[] TaskContainer.getTasks()
          Gets the tasks in this task container.
 void TaskContainer.remove(Task<?,?> task)
          Removes the specified task from this container.
 void Task.rethrow()
          Throws any exception a failed task caught.
 void TaskContainer.run()
          Starts all asynchronous operations in the container.
 void Task.run()
          Starts the asynchronous operation.
 int TaskContainer.size()
          Returns the number of tasks in this task container.
 Task<?,?> TaskContainer.waitFor()
          Waits for all tasks to end up in a final state.
 void Task.waitFor()
          Waits for the task end up in a final state.
 Task<?,?> TaskContainer.waitFor(float timeoutInSeconds)
          Waits for all tasks to end up in a final state.
 boolean Task.waitFor(float timeoutInSeconds)
          Waits for the task to end up in a final state.
 Task<?,?> TaskContainer.waitFor(float timeoutInSeconds, WaitMode mode)
          Waits for one or more of the tasks to end up in a final state.
 Task<?,?> TaskContainer.waitFor(WaitMode mode)
          Waits for one or more of the tasks to end up in a final state.
 

Uses of NoSuccessException in org.ogf.saga.url
 

Methods in org.ogf.saga.url that throw NoSuccessException
static URL URLFactory.createURL(String url)
          Creates an URL object from the specified string.
static URL URLFactory.createURL(String sagaFactoryClassname, String url)
          Creates an URL object from the specified string.
protected abstract  URL URLFactory.doCreateURL(String url)
           
 URL URL.resolve(URL url)
          See URI.
 URL URL.translate(Session session, String scheme)
          Returns a new URL with the scheme part replaced.
 URL URL.translate(String scheme)
          Returns a new URL with the scheme part replaced.
 



Copyright © 2014 Open Grid Forum. All rights reserved.