Skip to content

Commit

Permalink
Add javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
FabienVSymphony committed Nov 14, 2024
1 parent a956648 commit 0f41fbb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
import java.util.regex.Matcher;
import java.util.regex.Pattern;

/**
* Service class for retrieving and parsing Agent version
*/
@Slf4j
@API(status = API.Status.INTERNAL)
public class AgentVersionService {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

import org.apiguardian.api.API;

/**
* AgentVersion model used by AgentVersionService.
* Allows to compare two versions of the Agent for feature gating
*/
@API(status = API.Status.INTERNAL)
public class AgentVersion {
public static final AgentVersion AGENT_24_12 = new AgentVersion(24,12);
Expand Down

0 comments on commit 0f41fbb

Please sign in to comment.