Package com.google.enterprise.connector.sharepoint.generated.sitedata

Examples of com.google.enterprise.connector.sharepoint.generated.sitedata._sList


   * @param itemName The name of the parent web
   * @param listName The name of the new list
   * @return a new {@link _sList}
   */
  private _sList create_sList(final String itemName, final String listName) {
    _sList list = new _sList();
    list.setInternalName(listName);
    list.setTitle(listName);
    list.setBaseType(SPConstants.DOC_LIB);
    list.setDefaultViewUrl("/" + itemName + "/" + listName);
    list.setLastModified(Util.calendarToSiteDataString(Calendar.getInstance()));
    list.setInheritedSecurity(true);
    return list;
  }
View Full Code Here

TOP

Related Classes of com.google.enterprise.connector.sharepoint.generated.sitedata._sList

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.