|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use AlreadyExistsException | |
---|---|
org.ogf.saga.file | This package provides classes to manipulate the contents of directories or files. |
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.task | This package provides classes and methods for manipulating tasks and collections of tasks. |
Uses of AlreadyExistsException in org.ogf.saga.file |
---|
Methods in org.ogf.saga.file that throw AlreadyExistsException | |
---|---|
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 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 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 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 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 FileInputStream |
FileFactory.createFileInputStream(String sagaFactoryClassname,
URL name)
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 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 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. |
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. |
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. |
Uses of AlreadyExistsException in org.ogf.saga.logicalfile |
---|
Methods in org.ogf.saga.logicalfile that throw AlreadyExistsException | |
---|---|
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 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 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 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 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. |
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.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 AlreadyExistsException in org.ogf.saga.monitoring |
---|
Methods in org.ogf.saga.monitoring that throw AlreadyExistsException | |
---|---|
boolean |
Steerable.addMetric(Metric metric)
Adds a metric instance to the application instance. |
Uses of AlreadyExistsException in org.ogf.saga.namespace |
---|
Methods in org.ogf.saga.namespace that throw AlreadyExistsException | |
---|---|
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 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 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 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 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. |
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. |
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. |
Uses of AlreadyExistsException in org.ogf.saga.task |
---|
Methods in org.ogf.saga.task that throw AlreadyExistsException | |
---|---|
E |
Task.getResult()
Obtains the result of the asynchronous method call. |
void |
Task.rethrow()
Throws any exception a failed task caught. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |