Package com.nhn.gameanvil.protocol
Interface Base.LoginedUserInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Base.LoginedUserInfo
,Base.LoginedUserInfo.Builder
- Enclosing class:
- Base
public static interface Base.LoginedUserInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getChannelId()
string channel_id = 5;
com.google.protobuf.ByteString
getChannelIdBytes()
string channel_id = 5;
Base.Payload
getPayload(int index)
to onLogin or onReLogin.int
getPayloadCount()
to onLogin or onReLogin.java.util.List<Base.Payload>
getPayloadList()
to onLogin or onReLogin.Base.PayloadOrBuilder
getPayloadOrBuilder(int index)
to onLogin or onReLogin.java.util.List<? extends Base.PayloadOrBuilder>
getPayloadOrBuilderList()
to onLogin or onReLogin.int
getServiceId()
int32 service_id = 2;
int
getSubId()
int32 sub_id = 1;
int
getUserId()
int32 user_id = 3;
java.lang.String
getUserType()
string user_type = 4;
com.google.protobuf.ByteString
getUserTypeBytes()
string user_type = 4;
-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSubId
int getSubId()
int32 sub_id = 1;
- Returns:
- The subId.
-
getServiceId
int getServiceId()
int32 service_id = 2;
- Returns:
- The serviceId.
-
getUserId
int getUserId()
int32 user_id = 3;
- Returns:
- The userId.
-
getUserType
java.lang.String getUserType()
string user_type = 4;
- Returns:
- The userType.
-
getUserTypeBytes
com.google.protobuf.ByteString getUserTypeBytes()
string user_type = 4;
- Returns:
- The bytes for userType.
-
getChannelId
java.lang.String getChannelId()
string channel_id = 5;
- Returns:
- The channelId.
-
getChannelIdBytes
com.google.protobuf.ByteString getChannelIdBytes()
string channel_id = 5;
- Returns:
- The bytes for channelId.
-
getPayloadList
java.util.List<Base.Payload> getPayloadList()
to onLogin or onReLogin.
repeated .com.nhn.gameanvil.protocol.Payload payload = 6;
-
getPayload
Base.Payload getPayload(int index)
to onLogin or onReLogin.
repeated .com.nhn.gameanvil.protocol.Payload payload = 6;
-
getPayloadCount
int getPayloadCount()
to onLogin or onReLogin.
repeated .com.nhn.gameanvil.protocol.Payload payload = 6;
-
getPayloadOrBuilderList
java.util.List<? extends Base.PayloadOrBuilder> getPayloadOrBuilderList()
to onLogin or onReLogin.
repeated .com.nhn.gameanvil.protocol.Payload payload = 6;
-
getPayloadOrBuilder
Base.PayloadOrBuilder getPayloadOrBuilder(int index)
to onLogin or onReLogin.
repeated .com.nhn.gameanvil.protocol.Payload payload = 6;
-
-