Package org.structr.common

Examples of org.structr.common.Syncable


    try {
      final App app = serverConnection.getApplicationContext();

      // try node first, then relationship
      Syncable syncable = (Syncable)app.nodeQuery().and(GraphObject.id, rootNodeId).includeDeletedAndHidden().getFirst();
      if (syncable == null) {

        syncable = (Syncable)app.relationshipQuery().and(GraphObject.id, rootNodeId).includeDeletedAndHidden().getFirst();
      }
View Full Code Here

TOP

Related Classes of org.structr.common.Syncable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.