public static class SimpleRespondMessageContext.Token
extends java.lang.Object
Service token container.
| Modifier and Type | Field and Description |
|---|---|
java.lang.String |
data
Service token application data.
|
boolean |
entityBound
Service token should be entity-bound.
|
java.lang.String |
name
Service token name.
|
boolean |
userBound
Service token should be user-bound.
|
| Constructor and Description |
|---|
SimpleRespondMessageContext.Token(java.lang.String name,
java.lang.String data,
boolean entityBound,
boolean userBound)
Define a new service token for inclusion in the response message.
|
public final java.lang.String name
public final java.lang.String data
public final boolean entityBound
public final boolean userBound
public SimpleRespondMessageContext.Token(java.lang.String name,
java.lang.String data,
boolean entityBound,
boolean userBound)
Define a new service token for inclusion in the response message. If the service token should be entity- or user-bound but cannot be, the maximum binding possible is used but the service token is included in the response.
name - service token name.data - service token application data.entityBound - true if the service token should be entity-bound.userBound - true if the service token should be user-bound.