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

Examples of com.google.enterprise.connector.sharepoint.generated.userprofilechangeservice.UserProfileChangeQuery


  public Map<String, ActionType> getChangedUserProfiles(
      SharePointSocialCheckpoint checkpoint) {
    Map<String, ActionType> updatedProfiles =
        new HashMap<String, ActionType>();
    final UserProfileChangeQuery changeQuery = new UserProfileChangeQuery();
    changeQuery.setDelete(true);
    changeQuery.setUserProfile(true);
    changeQuery.setUpdate(true);
    changeQuery.setUpdateMetadata(true);
    changeQuery.setSingleValueProperty(true);
    changeQuery.setMultiValueProperty(true);
    changeQuery.setColleague(true);

    final String changeToken = checkpoint.getUserProfileChangeToken();
    final UserProfileChangeDataContainer changeContainer =
        Util.makeWSRequest(sharepointClientContext, changeWS,
            new Util.RequestExecutor<UserProfileChangeDataContainer>() {
View Full Code Here

TOP

Related Classes of com.google.enterprise.connector.sharepoint.generated.userprofilechangeservice.UserProfileChangeQuery

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.