Package com.filenet.api.query

Examples of com.filenet.api.query.SearchSQL


  @Override
  public IObjectSet execute(String query) throws RepositoryException {
    LinkedList<FnBaseObject> objectList = new LinkedList<FnBaseObject>();
    IndependentObjectSet myObjects;

    SearchSQL sqlObject = new SearchSQL();
    sqlObject.setQueryString(query);

    Integer myPageSize = new Integer(100);

    PropertyFilter myFilter = new PropertyFilter();
    int myFilterLevel = 1;
View Full Code Here

TOP

Related Classes of com.filenet.api.query.SearchSQL

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.