-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
rathnapandi
committed
Oct 28, 2024
1 parent
9b017f3
commit 4e214cc
Showing
27 changed files
with
277 additions
and
103 deletions.
There are no files selected for viewing
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
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
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
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
14 changes: 14 additions & 0 deletions
14
modules/apim-adapter/src/main/java/com/axway/apim/lib/utils/Constants.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,14 @@ | ||
package com.axway.apim.lib.utils; | ||
|
||
public final class Constants { | ||
|
||
private Constants() { | ||
throw new IllegalStateException("Object creation is not allowed"); | ||
} | ||
public static final String API_UNPUBLISHED = "unpublished"; | ||
public static final String API_PUBLISHED = "published"; | ||
public static final String API_DEPRECATED = "deprecated"; | ||
public static final String API_DELETED = "deleted"; | ||
public static final String API_UNDEPRECATED = "undeprecated"; | ||
public static final String API_PENDING = "pending"; | ||
} |
Oops, something went wrong.