IPWorks Cloud 2020 Java Edition

Questions / Feedback?

AuthMechanism Property

The authentication mechanism to use when connecting to the server.

Syntax

public int getAuthMechanism();
public void setAuthMechanism(int authMechanism);

Enumerated values: public final static int amNone = 0; public final static int amSimple = 1; public final static int amBasic = 2; public final static int amNTLM = 3; public final static int amNegotiate = 4; public final static int amOAuth = 5;

Default Value

0

Remarks

This property controls what authentication mechanism the class should use when connecting to the server.

Possible values are:

0 (amNone - default) No authentication is performed.
1 (amSimple) Hadoop pseudo/simple authentication is performed.
2 (amBasic) Basic authentication is performed.
3 (amNTLM) NTLM authentication is performed.
4 (amNegotiate) Negotiate authentication is performed.
5 (amOAuth) OAuth authentication is performed.

When set to 1 (amSimple), the value of the User property is automatically sent in every request using the user.name query parameter.

When set to 2 (amBasic), 3 (amNTLM), or 4 (amNegotiate), the values held by the User and Password properties will be used to perform Basic, NTLM, or Negotiate (e.g., Kerberos SPNEGO) authentication.

When set to 5 (amOAuth), the value of the Authorization property is automatically sent in every request using the Authorization HTTP header.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Cloud 2020 Java Edition - Version 20.0 [Build 8265]