-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Make use of CallbackHandlers and Logger from ServiceDeliverySession - Allow to specify the output stream where FidesmoApiClient trace is written to - Introduce timeouts and retries to service delivery (default is 10 minutes) - Make FormHandler also implement CallbackHandler - Introduce a special --qa argument and ability to fake a Fidesmo card - Update findbugs plugin version - Update version to today
- Loading branch information
1 parent
4c7088b
commit d60b574
Showing
9 changed files
with
242 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
package com.fidesmo.fdsm; | ||
|
||
import javax.security.auth.callback.CallbackHandler; | ||
import java.util.List; | ||
import java.util.Map; | ||
|
||
public interface FormHandler { | ||
// Form handler should in the future be renamed to UI handler. | ||
// It fetches input from the user, based on a list of required fields. | ||
// It also implements javax.security callback handler to provide for input-output | ||
// from the mini-library in a "standard" way. | ||
public interface FormHandler extends CallbackHandler { | ||
Map<String, Field> processForm(List<Field> form); | ||
} |
Oops, something went wrong.