Package de.innovationgate.webgate.api.fake

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


  /* (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

Related Classes of de.innovationgate.webgate.api.fake.WGFakeDocument

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.