-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GH-6 Mapping the Registration Adobe I/O Events API #8
Conversation
Assert.assertEquals(TEST_VALUE, workspace.getConsumerOrgId()); | ||
Assert.assertEquals(TEST_VALUE, workspace.getImsOrgId()); | ||
Assert.assertEquals(TEST_VALUE, workspace.getTechnicalAccountId()); | ||
Assert.assertEquals(TEST_VALUE, workspace.getMetascopes().iterator().next()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: It will be better to use a different value for each field. This will make sure that the workspace POJO is managing/returning the correct value for each field.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
# api_key = your credential API Key (Client ID) as shown in in your Adobe Developer Console workspace | ||
api_key=changeMe | ||
# credential_id = your credential id as shown in your Adobe Developer Console workspace | ||
credential_id=changeMe |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since Console uses "client_id", we should also use that only.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unfortunately, it's not the clientId, it is yet another id, the (jwt) credential.id associated with your workspace (formerly known as the integrationId)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
got it, thanks!
} | ||
if (StringUtils.isEmpty(workspace.getApiKey())) { | ||
throw new IllegalArgumentException("Workspace is missing an apiKey context"); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- This validation code is common and can be moved to the Workspace constructor for re-use. wdyt?
- Are we following some paradigm on where to place the validation code? Is it inside the Builder class or the constructor of the corresponding model class? Currently, I see validation-related code at both places. We can consider moving all validations inside constructors of model classes only.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- No it's not common. Elsewhere the api-key is only needed and set by the IMS auth interceptor. The Registration API is special, it expects it in the header of the registration input model
- The expected
workspace
entries vary from one service to the next, but to follow your advise, for one common validation paradigm, I moved the validation at the service constructor level, wdyt ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good 👍
* | ||
* @param imsOrgId your Ims Org Id | ||
* @param consumerOrgId Your consumer organization Id | ||
* @param credentialId The integration Id associated with your project/workspace |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this clientId only, right? Lets use the same terminology everywhere.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no unfortunately, it's not the clientId, it is yet another id, the (jwt) credential.id associated with your workspace (formerly known as the integrationId)
"eventCode='" + eventCode + '\'' + | ||
", label='" + label + '\'' + | ||
", description='" + description + '\'' + | ||
'}'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lets add sampleEventTemplate also in this method.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
well it's base64 encoded, so it won't help much in a toString() method
The expected `workspace` entries vary from one service to the next, but to follow your advise, for one common validation paradigm, I moved the validation at the service constructor level, wdyt ?
…void any conflicts with other system variables
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Issues :
events_mgmt
: addAdobe I/O Events
Registration API wrappers #6core
use a common prefix for the expected env. vars #9Description :
core
events_mgmt
POST
,GET
,DELETE
Registration API endpoints)