Skip to content

Commit

Permalink
fix: add missing interfaces
Browse files Browse the repository at this point in the history
Signed-off-by: PhilippFruh <[email protected]>
  • Loading branch information
PhilippFr committed Jul 5, 2022
1 parent 79c6e77 commit d4d73e4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.vi.appointmentservice.port.out;

import com.vi.appointmentservice.adapters.keycloak.dto.KeycloakLoginResponseDTO;

public interface IdentityClient {
KeycloakLoginResponseDTO loginUser(final String userName, final String password);
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package com.vi.appointmentservice.port.out;

public interface IdentityClientConfig {
String getOpenIdConnectUrl(String path);

}

0 comments on commit d4d73e4

Please sign in to comment.