You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a TenantActions interface that both the Client and Tenant interface can extend from. This allows common tenant actions to be accessible from the client directly, for example:
client.createApplication(app);
instead of
client.getCurrentTenant().createApplication(app);
which is unnecessarily verbose.
This interface should contain all behavior common to both a Client and Tenant instance. For example, the client is not a Resource so save() should not be available.
Create a
TenantActionsinterface that both the Client and Tenant interface can extend from. This allows common tenant actions to be accessible from the client directly, for example:instead of
which is unnecessarily verbose.
This interface should contain all behavior common to both a
ClientandTenantinstance. For example, the client is not aResourcesosave()should not be available.