Hendy Irawan

Results 50 issues of Hendy Irawan

This won't work: ``` graphDb.getRestAPI().executeBatch(new BatchCallback() { @Override public Void recordBatch(RestAPI batchRestApi) { Node node = batchRestApi.getNodeById(nodeId); for (Relationship rel : node.getRelationships()) { rel.delete(); } node.delete(); return null; } });...

While this works: ``` TestBatchResult r = this.restAPI.executeBatch(new BatchCallback() { @Override public TestBatchResult recordBatch(RestAPI batchRestApi) { TestBatchResult result=new TestBatchResult(); result.n1 = batchRestApi.createNode(map("name", "newnode1")); result.n2 = batchRestApi.createNode(map("name", "newnode2")); result.rel = batchRestApi.createRelationship(result.n1,...

`TestRelEx` contain sentences and expected results inside the Java tests, which are then iterated. It'd be more convenient to put these fixtures a la FitNesse into a spreadsheet with 3...

``` public class MySessionListener implements HttpSessionListener { @Override public void sessionCreated(HttpSessionEvent se) { ((ServletRequestAttributes) RequestContextHolder .getRequestAttributes()).getRequest().getSession(false); } ``` This causes infinite loop since `getSession(false)` tries to create a new session...

Currently only `changePasswordByIdentity` is given, however there is API for change password using JWT, but it's currently not possible: https://github.com/FusionAuth/fusionauth-typescript-client/blob/41aab6591a39bb6ec27b99630d9be06e569b3c7b/src/FusionAuthClient.ts#L146-L150 Change password using JWT REST API: https://fusionauth.io/docs/v1/tech/apis/users/#change-a-users-password

Reference: https://fusionauth.io/docs/v1/tech/apis/actioning-users/#take-an-action-on-a-user > To cause the action to be applied indefinitely, or until the action is canceled or modified, set this value to 9223372036854775807. Since Java API uses `Long` and...

bug

### Summary With this code: ```java @PostMapping("loginFacebook") public ClientAuth loginFacebook(@RequestBody @NotNull FacebookAuthResponse authResponse) throws FacebookException { Preconditions.checkArgument(!Strings.isNullOrEmpty(authResponse.getAccessToken()), "authResponse.accessToken must be provided"); final Facebook fb = facebookFactory.getInstance(); fb.setOAuthAccessToken(new AccessToken(authResponse.getAccessToken())); final Long...

status: waiting-for-triage