Uses of Class
org.glite.rgma.RemoteException

Uses of RemoteException in org.glite.rgma
 

Methods in org.glite.rgma that throw RemoteException
 void Service.setProperty(java.lang.String name, java.lang.String parameter, java.lang.String value)
          Changes the value of the specified service property.
 java.lang.String Service.getProperty(java.lang.String name, java.lang.String parameter)
          Gets the value of the specified service property.
 java.lang.String Service.getVersion()
          Gets the version of this implementation.
 TimeInterval SecondaryProducer.getHistoryRetentionPeriod(java.lang.String tableName)
          Gets the retention period that is applied to history tuples for the specified table.
 void SecondaryProducer.declareTable(java.lang.String tableName, java.lang.String predicate, TimeInterval historyRetentionPeriod)
          Declares a table, specifying the retention period for history tuples.
 void Schema.createSchema(java.lang.String vdbName, java.lang.String schemaService)
          Creates a Schema instance for the given VDB on the specified service.
 void Schema.destroySchema(java.lang.String vdbName, java.lang.String schemaService)
          Removes the schema instance for the given VDB from the specified service.
 void Schema.createTable(java.lang.String vdbName, java.lang.String createTableStatement, TableAuthorization tableAuthz)
          Creates a table in the Schema instance for the given VDB.
 void Schema.dropTable(java.lang.String vdbName, java.lang.String tableName)
          Drops a table from the Schema instance for the given VDB.
 void Schema.createIndex(java.lang.String vdbName, java.lang.String createIndexStatement)
          Creates an index in the Schema instance for the given VDB.
 void Schema.dropIndex(java.lang.String vdbName, java.lang.String indexName)
          Drops an index from the Schema instance for the given VDB.
 void Schema.createView(java.lang.String vdbName, java.lang.String createViewStatement, TableAuthorization viewAuthz)
          Creates a view in the Schema instance for the given VDB.
 void Schema.dropView(java.lang.String vdbName, java.lang.String viewName)
          Drops a view from the Schema instance for the given VDB.
 StringList Schema.getAllTables(java.lang.String vdbName)
          Gets a list of all tables in the schema for the given VDB.
 TableDefinition Schema.getTableDefinition(java.lang.String vdbName, java.lang.String tableName)
          Gets the definition for table tableName in the given VDB.
 IndexList Schema.getTableIndexes(java.lang.String vdbName, java.lang.String tableName)
          Gets the list of indexes defined on the given table in the given VDB.
 void Schema.setAuthorizationRules(java.lang.String vdbName, java.lang.String tableName, TableAuthorization tableAuthz)
          Sets the authorization rules for the given table.
 TableAuthorization Schema.getAuthorizationRules(java.lang.String vdbName, java.lang.String tableName)
          Gets the authorization rules for the given table.
 void Resource.setTerminationInterval(TimeInterval terminationInterval)
          Deprecated. Termination interval can only be set in factory create method.
 TimeInterval Resource.getTerminationInterval()
          Retrieves the resource's termination interval.
 void Resource.close()
          Closes the resource.
 void Resource.destroy()
          Closes and destroys the resource.
 void Resource.showSignOfLife()
          Indicates to the resource that this API is still alive.
 void Registry.createRegistry(java.lang.String vdbName, java.lang.String registryService)
          Creates a Registry instance for the given VDB on the specified service.
 void Registry.destroyRegistry(java.lang.String vdbName, java.lang.String registryService)
          Removes the Registry instance for the given VDB from the specified service.
 ProducerTableEntryList Registry.getAllProducersForTable(java.lang.String vdbName, java.lang.String tableName)
          Returns a list of all producers, with their registered information.
 OnDemandProducer ProducerFactory.createOnDemandProducer(TimeInterval terminationInterval, java.net.URI uri, StringList voNames)
          Deprecated. See createOnDemandProducer(TimeInterval,URI)
 OnDemandProducer ProducerFactory.createOnDemandProducer(TimeInterval terminationInterval, java.net.URI uri)
          Creates an on-demand producer.
 OnDemandProducer ProducerFactory.reconnectOnDemandProducer(ResourceEndpoint resourceEndpoint)
          Reconnects to an existing OnDemandProducer resource.
 PrimaryProducer ProducerFactory.createPrimaryProducer(TimeInterval terminationInterval, ProducerProperties producerProperties, StringList voNames)
          Deprecated. Use createPrimaryProducer(TimeInterval,ProducerProperties).
 PrimaryProducer ProducerFactory.createPrimaryProducer(TimeInterval terminationInterval, ProducerProperties producerProperties)
          Creates a primary producer that uses the specified data storage and producer type.
 PrimaryProducer ProducerFactory.reconnectPrimaryProducer(ResourceEndpoint resourceEndpoint)
          Reconnects to an existing PrimaryProducer resource.
 SecondaryProducer ProducerFactory.createSecondaryProducer(TimeInterval terminationInterval, ProducerProperties producerProperties, StringList voNames)
          Deprecated. See createSecondaryProducer(TimeInterval,ProducerProperties).
 SecondaryProducer ProducerFactory.createSecondaryProducer(TimeInterval terminationInterval, ProducerProperties producerProperties)
          Creates a secondary producer, that uses a primary producer with the specified attributes to republish information.
 SecondaryProducer ProducerFactory.reconnectSecondaryProducer(ResourceEndpoint resourceEndpoint)
          Reconnects to an existing SecondaryProducer resource.
 TupleStoreList ProducerFactory.listPrimaryTupleStores()
          Returns a list of existing tuple stores that can be used by Primary Producers.
 void ProducerFactory.dropPrimaryTupleStore(java.lang.String logicalName)
          Permanently deletes a named Primary Producer tuple store.
 TupleStoreList ProducerFactory.listSecondaryTupleStores()
          Returns a list of existing tuple stores that can be used by Secondary Producers.
 void ProducerFactory.dropSecondaryTupleStore(java.lang.String logicalName)
          Permanently deletes a named Secondary Producer tuple store.
 TimeInterval PrimaryProducer.getHistoryRetentionPeriod(java.lang.String tableName)
          Gets the retention period that is applied to history tuples for the specified table.
 TimeInterval PrimaryProducer.getLatestRetentionPeriod(java.lang.String tableName)
          Gets the retention period that is applied to latest tuples for the specified table.
 void PrimaryProducer.declareTable(java.lang.String tableName, java.lang.String predicate, TimeInterval historyRetentionPeriod, TimeInterval latestRetentionPeriod)
          Declares a table, specifying the retention period for history and latest tuples.
 void PrimaryProducer.insert(java.lang.String insertStatement)
          Publishes data by inserting a tuple into a table, both specified by the SQL INSERT statement.
 void PrimaryProducer.insert(java.lang.String insertStatement, TimeInterval latestRetentionPeriod)
          Publishes data by inserting a tuple into a table, both specified by the SQL INSERT statement.
 void PrimaryProducer.insertList(StringList insertStatements)
          Publishes using a list of SQL INSERT statements.
 void PrimaryProducer.insertList(StringList insertStatements, TimeInterval latestRetentionPeriod)
          Publishes using a list of SQL INSERT statements.
 void OnDemandProducer.declareStaticTable(java.lang.String tableName, java.lang.String predicate)
          Declares a static table into which this Producer can publish.
 Consumer ConsumerFactory.createConsumer(TimeInterval terminationInterval, java.lang.String selectStatement, QueryProperties queryProperties)
          Creates a consumer with a specific SELECT query and query type.
 Consumer ConsumerFactory.reconnectConsumer(ResourceEndpoint resourceEndpoint)
          Reconnects to an existing Consumer resource.
 boolean Consumer.isExecuting()
          Deprecated. Use ResultSet#endOfResults
 void Consumer.abort()
          Aborts the current query.
 int Consumer.count()
          Deprecated.  
 boolean Consumer.hasAborted()
          Determines if the last query has aborted.
 ResultSet Consumer.pop(int maxCount)
          Retrieves at most maxCount tuples from the consumer that it has received from producers.
 ResultSet Consumer.popAll()
          Deprecated.  
 void Consumer.start(TimeInterval timeout)
          Starts this consumer's query, using the mediator to locate producers, terminating after the specified time interval.
 void Consumer.start(TimeInterval timeout, ResourceEndpointList producers)
          Starts this consumer's query, contacting the specified producers, terminating after the specified time interval.