Package jetbrains.buildServer.web
Interface AdditionalCspDomains
-
- All Superinterfaces:
ServerExtension
,TeamCityExtension
- All Known Subinterfaces:
ForbiddenLoginDomains
- All Known Implementing Classes:
AdditionalCspDomainsFromInternalProperties
,PresignedArtifactLinksManager
public interface AdditionalCspDomains extends ServerExtension
Registers additional domain to be allowed in CSP- Since:
- 2021.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default String
getDescription()
User-friendly description of what's the purpose of the domainsList<String>
getDomains()
The additional domains.
-
-
-
Method Detail
-
getDomains
@NotNull List<String> getDomains()
The additional domains. Should be a list of valid URLs- Returns:
- empty list only if not
isEnabled()
, list of valid URL strings otherwise
-
getDescription
@NotNull default String getDescription()
User-friendly description of what's the purpose of the domains- Returns:
- description string
-
-