Skip to content

Instantly share code, notes, and snippets.

@recursivecodes
Created March 30, 2022 19:13
Show Gist options
  • Save recursivecodes/2518417fd353143b40788326e58334af to your computer and use it in GitHub Desktop.
Save recursivecodes/2518417fd353143b40788326e58334af to your computer and use it in GitHub Desktop.
Function.java
@Singleton
public class Function extends OciFunction {
@Inject
TenancyIdProvider tenantIdProvider;
@ReflectiveAccess
public String handleRequest() {
String tenancyId = tenantIdProvider.getTenancyId();
return "Your tenancy is: " + tenancyId;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment