Uses of Class
org.gcube.contentmanagement.contentmanager.stubs.model.trees.GDoc

Packages that use GDoc
org.gcube.contentmanagement.contentmanager.plugin.defaultplugin   
org.gcube.contentmanagement.contentmanager.plugin.delegates   
org.gcube.contentmanagement.contentmanager.state   
org.gcube.contentmanagement.contentmanager.stubs.calls   
org.gcube.contentmanagement.contentmanager.stubs.calls.iterators   
org.gcube.contentmanagement.contentmanager.stubs.model.trees   
 

Uses of GDoc in org.gcube.contentmanagement.contentmanager.plugin.defaultplugin
 

Methods in org.gcube.contentmanagement.contentmanager.plugin.defaultplugin that return GDoc
 GDoc DefaultReader.get(java.lang.String id, Predicate projection)
          Returns a gDoc document from its identifier, requesting the preliminary application of a filter and a projection over it.
 

Methods in org.gcube.contentmanagement.contentmanager.plugin.defaultplugin that return types with arguments of type GDoc
 RemoteIterator<GDoc> DefaultReader.get(Predicate projection)
          Returns all the gDoc documents, requesting the application of a projection over each of them.
 

Methods in org.gcube.contentmanagement.contentmanager.plugin.defaultplugin with parameters of type GDoc
 java.lang.String DefaultWriter.add(GDoc doc)
          Adds a gDoc document.
 void DefaultWriter.update(GDoc delta)
          Updates a gDoc document.
 

Uses of GDoc in org.gcube.contentmanagement.contentmanager.plugin.delegates
 

Methods in org.gcube.contentmanagement.contentmanager.plugin.delegates that return GDoc
abstract  GDoc ReadDelegate.get(java.lang.String id, Predicate projection)
          Returns a gDoc document from its identifier, requesting the preliminary application of a filter and a projection over it.
 

Methods in org.gcube.contentmanagement.contentmanager.plugin.delegates that return types with arguments of type GDoc
abstract  RemoteIterator<GDoc> ReadDelegate.get(Predicate projection)
          Returns all the gDoc documents, requesting the application of a projection over each of them.
 RemoteIterator<GDoc> ReadDelegate.get(RSIterator<java.lang.String> iterator, Predicate projection)
          Returns zero or more gDoc documents from their identifiers, requesting the preliminary application of a filter and a projection over each of them.
 

Methods in org.gcube.contentmanagement.contentmanager.plugin.delegates with parameters of type GDoc
abstract  java.lang.String WriteDelegate.add(GDoc doc)
          Adds a gDoc document.
abstract  void WriteDelegate.update(GDoc doc)
          Updates a gDoc document.
 

Uses of GDoc in org.gcube.contentmanagement.contentmanager.state
 

Methods in org.gcube.contentmanagement.contentmanager.state that return GDoc
 GDoc ReadManager.get(java.lang.String id, Predicate projection)
          Returns a gDoc document from its identifier, requesting the preliminary application of a filter and a projection over it.
 

Methods in org.gcube.contentmanagement.contentmanager.state with parameters of type GDoc
 java.lang.String WriteManager.add(GDoc doc)
          Adds a gDoc document.
 java.lang.String ResultSerialisers.GDocSerialiser.serialise(GDoc doc)
          
 void WriteManager.update(GDoc doc)
          Updates a gDoc document.
 

Uses of GDoc in org.gcube.contentmanagement.contentmanager.stubs.calls
 

Methods in org.gcube.contentmanagement.contentmanager.stubs.calls that return GDoc
 GDoc ReadManagerCall.get(java.lang.String id)
          Returns a gDoc document from its identifier.
 GDoc ReadManagerCall.get(java.lang.String id, Predicate projection)
          Returns a gDoc document from its identifier, requesting the preliminary application of a filter and a projection over it.
 

Methods in org.gcube.contentmanagement.contentmanager.stubs.calls with parameters of type GDoc
 java.lang.String WriteManagerCall.add(GDoc doc)
          Adds a document to the target collection.
 void WriteManagerCall.update(GDoc doc)
          Updates a document in the target collection.
 

Uses of GDoc in org.gcube.contentmanagement.contentmanager.stubs.calls.iterators
 

Methods in org.gcube.contentmanagement.contentmanager.stubs.calls.iterators that return GDoc
 GDoc GDocResultParser.parse(java.lang.String payload)
          
 

Uses of GDoc in org.gcube.contentmanagement.contentmanager.stubs.model.trees
 

Methods in org.gcube.contentmanagement.contentmanager.stubs.model.trees that return GDoc
 GDoc GDoc.delta(GDoc future)
          Returns a document that reflects the delta between this document and a given input document, or null if the documents are equals.
static GDoc Bindings.fromElement(org.w3c.dom.Element e)
          Transforms a DOM tree into a document tree.
static GDoc Bindings.fromXML(java.io.InputStream in)
          Deserialiases a gDoc element from an XML stream.
static GDoc Bindings.fromXML(java.io.Reader r)
          Deserialiases a gDoc element from an XML stream.
static GDoc Nodes.gdoc(Edge... edges)
          Creates a document tree with given edges.
static GDoc Nodes.gdoc(GDoc doc)
          Clones a given document.
static GDoc Nodes.gdoc(java.lang.String id, Edge... edges)
          Creates a document tree with a given identifier and given edges.
static GDoc Nodes.gdoc(java.lang.String collID, java.lang.String id, Edge... edges)
          Creates a document tree in a given collection with a given identifier and given edges.
 

Methods in org.gcube.contentmanagement.contentmanager.stubs.model.trees with parameters of type GDoc
static void Nodes.addURIs(GDoc doc)
          Marks a document and all its descendants with their content URIs.
 GDoc GDoc.delta(GDoc future)
          Returns a document that reflects the delta between this document and a given input document, or null if the documents are equals.
static GDoc Nodes.gdoc(GDoc doc)
          Clones a given document.
static org.w3c.dom.Element Bindings.toElement(GDoc doc)
          Transforms a document tree to a DOM tree.
static void Bindings.toXML(GDoc doc, java.io.Writer w, boolean... writeDeclaration)
          Serialises a document tree to an XML stream.
 

Constructors in org.gcube.contentmanagement.contentmanager.stubs.model.trees with parameters of type GDoc
GDoc(GDoc doc)
          Copy constructor, creates a clone of a given node.