Skip to content

Commit

Permalink
Added tracking api to multi Application
Browse files Browse the repository at this point in the history
  • Loading branch information
scottf committed Sep 3, 2024
1 parent 334879b commit 58e38ac
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,20 @@ public Arguments customAction(String customActionClassName) {
return add("ca", customActionClassName);
}

@SuppressWarnings("rawtypes")
public Arguments customAction(Class clazz) {
return add("ca", clazz.getCanonicalName());
}

public Arguments appClass(String customAppClass) {
return add("app", customAppClass);
}

@SuppressWarnings("rawtypes")
public Arguments appClass(Class clazz) {
return add("app", clazz.getCanonicalName());
}

public Arguments server(String server) {
return add("s", server);
}
Expand Down

0 comments on commit 58e38ac

Please sign in to comment.