Stay organized with collections
Save and categorize content based on your preferences.
com.google.api.server.spi.config
Annotation Type Singleton
@Target(value=TYPE)
@Retention(value=RUNTIME)
public @interface Singleton
Annotation used with Authenticator and PeerAuthenticator to denote only one instance will be
created for optimization. Implementation must be thread safe. Without the annotation a new
(peer)authenticator instance will be created for each request.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-02-15 UTC."],[[["`@Singleton` is an annotation used with `Authenticator` and `PeerAuthenticator` for optimization."],["This annotation ensures that only one instance of the authenticator is created."],["Implementations marked with `@Singleton` must be thread-safe."],["Without `@Singleton`, a new authenticator instance is created for every request."]]],[]]