Package com.google.enterprise.connector.spi.SpiConstants

Examples of com.google.enterprise.connector.spi.SpiConstants.PrincipalType


      modifiedReaders.add(reader);
    }
    Collection<String> gsaGroups = GsaUtil.getGsaGroups(
        modifiedReaders, notesConnectorSession.getGsaGroupPrefix());
    String userNamespace;
    PrincipalType principalType;
    if (notesConnectorSession.getConnector().getGsaNamesAreGlobal()) {
      userNamespace =
          notesConnectorSession.getConnector().getGlobalNamespace();
      principalType = PrincipalType.UNKNOWN;
    } else {
View Full Code Here


        // error.
        LOGGER.logp(Level.WARNING, CLASS_NAME, METHOD,
            "Unexpected inheritance type: " + inheritType);
      }
      String userNamespace;
      PrincipalType principalType;
      if (notesConnectorSession.getConnector().getGsaNamesAreGlobal()) {
        userNamespace =
            notesConnectorSession.getConnector().getGlobalNamespace();
        principalType = PrincipalType.UNKNOWN;
      } else {
View Full Code Here

TOP

Related Classes of com.google.enterprise.connector.spi.SpiConstants.PrincipalType

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.