Package org.yamcs.protobuf
Interface OpenIDConnectInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
OpenIDConnectInfo,OpenIDConnectInfo.Builder
public interface OpenIDConnectInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAuthorizationEndpoint()Endpoint for for authentication or consentcom.google.protobuf.ByteStringgetAuthorizationEndpointBytes()Endpoint for for authentication or consentStringgetClientId()The value provided when registering Yamcs against an OpenID servercom.google.protobuf.ByteStringgetClientIdBytes()The value provided when registering Yamcs against an OpenID serverStringgetScope()Scope for authorization requests (value to be interpreted by client-side web application)com.google.protobuf.ByteStringgetScopeBytes()Scope for authorization requests (value to be interpreted by client-side web application)booleanhasAuthorizationEndpoint()Endpoint for for authentication or consentbooleanhasClientId()The value provided when registering Yamcs against an OpenID serverbooleanhasScope()Scope for authorization requests (value to be interpreted by client-side web application)-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasClientId
boolean hasClientId()
The value provided when registering Yamcs against an OpenID server
optional string clientId = 1;
-
getClientId
String getClientId()
The value provided when registering Yamcs against an OpenID server
optional string clientId = 1;
-
getClientIdBytes
com.google.protobuf.ByteString getClientIdBytes()
The value provided when registering Yamcs against an OpenID server
optional string clientId = 1;
-
hasAuthorizationEndpoint
boolean hasAuthorizationEndpoint()
Endpoint for for authentication or consent
optional string authorizationEndpoint = 2;
-
getAuthorizationEndpoint
String getAuthorizationEndpoint()
Endpoint for for authentication or consent
optional string authorizationEndpoint = 2;
-
getAuthorizationEndpointBytes
com.google.protobuf.ByteString getAuthorizationEndpointBytes()
Endpoint for for authentication or consent
optional string authorizationEndpoint = 2;
-
hasScope
boolean hasScope()
Scope for authorization requests (value to be interpreted by client-side web application)
optional string scope = 3;
-
getScope
String getScope()
Scope for authorization requests (value to be interpreted by client-side web application)
optional string scope = 3;
-
getScopeBytes
com.google.protobuf.ByteString getScopeBytes()
Scope for authorization requests (value to be interpreted by client-side web application)
optional string scope = 3;
-
-