Uses of Class
com.helger.http.csp.AbstractCSPSourceList
Packages that use AbstractCSPSourceList
-
Uses of AbstractCSPSourceList in com.helger.http.csp
Classes in com.helger.http.csp with type parameters of type AbstractCSPSourceListModifier and TypeClassDescriptionclassAbstractCSPSourceList<IMPLTYPE extends AbstractCSPSourceList<IMPLTYPE>>A source list to be used in a CSP directive (CSPDirective).Subclasses of AbstractCSPSourceList in com.helger.http.cspModifier and TypeClassDescriptionclassA source list to be used in a CSP directive (CSPDirective).Methods in com.helger.http.csp with parameters of type AbstractCSPSourceListModifier and TypeMethodDescriptionstatic @NonNull CSPDirectiveCSPDirective.createChildSrc(@Nullable AbstractCSPSourceList<?> aValue) Defines valid sources for web workers and nested browsing contexts loaded using elements such as <frame> and <iframe>static @NonNull CSPDirectiveCSPDirective.createConnectSrc(@Nullable AbstractCSPSourceList<?> aValue) Applies to XMLHttpRequest (AJAX), WebSocket or EventSource.static @NonNull CSPDirectiveCSPDirective.createDefaultSrc(@Nullable AbstractCSPSourceList<?> aValue) The "default-src" is the default policy for loading content such as JavaScript, Images, CSS, Fonts, AJAX requests, Frames, HTML5 Media.static @NonNull CSPDirectiveCSPDirective.createFontSrc(@Nullable AbstractCSPSourceList<?> aValue) Defines valid sources of fonts.static @NonNull CSPDirectiveCSPDirective.createFormAction(@Nullable AbstractCSPSourceList<?> aValue) Defines valid sources that can be used as a HTML <form> action.static @NonNull CSPDirectiveCSPDirective.createFrameAncestors(@Nullable AbstractCSPSourceList<?> aValue) Defines valid sources for embedding the resource using <frame> <iframe> <object> <embed> <applet>.static @NonNull CSPDirectiveCSPDirective.createFrameSrc(@Nullable AbstractCSPSourceList<?> aValue) The HTTP Content-Security-Policy (CSP) "frame-src" directive specifies valid sources for nested browsing contexts loading using elements such as <frame> and <iframe>.static @NonNull CSPDirectiveCSPDirective.createImgSrc(@Nullable AbstractCSPSourceList<?> aValue) Defines valid sources of images.static @NonNull CSPDirectiveCSPDirective.createManifestSrc(@Nullable AbstractCSPSourceList<?> aValue) Specifies valid sources of application manifest files.static @NonNull CSPDirectiveCSPDirective.createMediaSrc(@Nullable AbstractCSPSourceList<?> aValue) Defines valid sources of audio and video, eg HTML5 <audio>, <video> elements.static @NonNull CSPDirectiveCSPDirective.createObjectSrc(@Nullable AbstractCSPSourceList<?> aValue) Defines valid sources of plugins, eg <object>, <embed> or <applet>.static @NonNull CSPDirectiveCSPDirective.createPrefetchSrc(@Nullable AbstractCSPSourceList<?> aValue) Deprecated, for removal: This API element is subject to removal in a future version.static @NonNull CSPDirectiveCSPDirective.createScriptSrc(@Nullable AbstractCSPSourceList<?> aValue) Defines valid sources of JavaScript.static @NonNull CSPDirectiveCSPDirective.createScriptSrcAttr(@Nullable AbstractCSPSourceList<?> aValue) The HTTP Content-Security-Policy (CSP) "script-src-attr" directive specifies valid sources for JavaScript inline event handlers.static @NonNull CSPDirectiveCSPDirective.createScriptSrcElem(@Nullable AbstractCSPSourceList<?> aValue) The HTTP Content-Security-Policy (CSP) "script-src-elem" directive specifies valid sources for JavaScript <script> elements.static @NonNull CSPDirectiveCSPDirective.createStyleSrc(@Nullable AbstractCSPSourceList<?> aValue) Defines valid sources of stylesheets.static @NonNull CSPDirectiveCSPDirective.createStyleSrcAttr(@Nullable AbstractCSPSourceList<?> aValue) The HTTP Content-Security-Policy (CSP) "style-src-attr" directive specifies valid sources for inline styles applied to individual DOM elements.static @NonNull CSPDirectiveCSPDirective.createStyleSrcElem(@Nullable AbstractCSPSourceList<?> aValue) The HTTP Content-Security-Policy (CSP) "style-src-elem" directive specifies valid sources for stylesheet<style>elements and<link>elements withrel="stylesheet".static @NonNull CSPDirectiveCSPDirective.createWorkerSrc(@Nullable AbstractCSPSourceList<?> aValue) Specifies valid sources for Worker, SharedWorker, or ServiceWorker scripts.Constructors in com.helger.http.csp with parameters of type AbstractCSPSourceListModifierConstructorDescriptionCSPDirective(@NonNull @Nonempty String sName, @Nullable AbstractCSPSourceList<?> aValue) Constructor using a source list as the value.