Package com.streamlayer.users
Interface BypassAuthRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
- All Known Implementing Classes:
BypassAuthRequest,BypassAuthRequest.Builder
public interface BypassAuthRequestOrBuilder extends com.google.protobuf.MessageLiteOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetInit()Used to initiate session for certain schemas, false by defaultjava.lang.StringgetSchema()used to pass authentication schemacom.google.protobuf.ByteStringgetSchemaBytes()used to pass authentication schemajava.lang.StringgetUserKey()used ot pass user token or related secretcom.google.protobuf.ByteStringgetUserKeyBytes()used ot pass user token or related secret
-
-
-
Method Detail
-
getUserKey
java.lang.String getUserKey()
used ot pass user token or related secret
string user_key = 1 [json_name = "userKey"];- Returns:
- The userKey.
-
getUserKeyBytes
com.google.protobuf.ByteString getUserKeyBytes()
used ot pass user token or related secret
string user_key = 1 [json_name = "userKey"];- Returns:
- The bytes for userKey.
-
getSchema
java.lang.String getSchema()
used to pass authentication schema
string schema = 2 [json_name = "schema"];- Returns:
- The schema.
-
getSchemaBytes
com.google.protobuf.ByteString getSchemaBytes()
used to pass authentication schema
string schema = 2 [json_name = "schema"];- Returns:
- The bytes for schema.
-
getInit
boolean getInit()
Used to initiate session for certain schemas, false by default
bool init = 3 [json_name = "init"];- Returns:
- The init.
-
-