-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Threat Intel Feed Config Model (#1028)
- Loading branch information
1 parent
76de7ad
commit a99ca4d
Showing
7 changed files
with
1,217 additions
and
2 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
src/main/java/org/opensearch/securityanalytics/threatIntel/common/FeedType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package org.opensearch.securityanalytics.threatIntel.common; | ||
|
||
/** | ||
* Types of feeds threat intel can support | ||
* Feed types include: licensed, open-sourced, custom, and internal | ||
*/ | ||
public enum FeedType { | ||
|
||
LICENSED, | ||
|
||
OPEN_SOURCED, | ||
|
||
CUSTOM, | ||
|
||
INTERNAL | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.