public enum ExchangeStatus extends java.lang.Enum<ExchangeStatus>
Enum Constant and Description |
---|
CHALLENGE
Indicates an authentication challenge is being issued.
|
CONTINUE
Indicates message processing completed successfully and normal
flow should continue.
|
RETURN_FAULT
Indicates a fault message should be returned to the client immediately.
|
RETURN_SUCCESS
Indicates a successful message should be returned to the client
immediately.
|
TERMINATE
Indicates the message processing should stop immediately and no
response should be issued to the client.
|
Modifier and Type | Method and Description |
---|---|
static ExchangeStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExchangeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExchangeStatus CONTINUE
public static final ExchangeStatus RETURN_SUCCESS
public static final ExchangeStatus RETURN_FAULT
public static final ExchangeStatus TERMINATE
public static final ExchangeStatus CHALLENGE
public static ExchangeStatus[] values()
for (ExchangeStatus c : ExchangeStatus.values()) System.out.println(c);
public static ExchangeStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null?? 2022 Perforce Software, All rights reserved
This software is the confidential and proprietary information of Perforce, Inc. and is subject to copyright protection under laws of the United States of America and other countries. The use of this software should be in accordance with the license agreement terms you entered into with Perforce, Inc.