Examples of WGFakeDocument


Examples of de.innovationgate.webgate.api.fake.WGFakeDocument

                updateBackendCaches(core);
            }
            else {
               
                // Could not find document, maybe already deleted. Will use WGDocumentFake
                WGFakeDocument fakeDoc = new WGFakeDocument(db, getType());
                fakeDoc.setDeleted(true);
                return fakeDoc;
            }
        }
        return core;
    }
View Full Code Here

Examples of de.innovationgate.webgate.api.fake.WGFakeDocument

  /* (Kein Javadoc)
   * @see de.innovationgate.webgate.api.WGDatabaseCore#getDummyContent(java.lang.String)
   */
  public WGDocumentCore getDummyContent(String language) throws WGAPIException {
    return new WGFakeDocument(_db, WGDocument.TYPE_CONTENT);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.