Skip to content

Commit

Permalink
Add timezone based timestamp response 2 (mosip#688)
Browse files Browse the repository at this point in the history
* Minor correction to the id prop

* minor refactoring

* Fix missing code in refactoring

* Added timezone logger

* Minor correction

* Pom correction

* Added timezone based timestamp responses for related APIs

* Test fixes

* Test fix

* Fix to filename pattern

* Added missing file

Co-authored-by: Loganathan Sekar <[email protected]>
Signed-off-by: kameshsr <[email protected]>
  • Loading branch information
2 people authored and kameshsr committed Oct 17, 2023
1 parent e9e02af commit f81f5c6
Showing 1 changed file with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package io.mosip.resident.function;

/**
*
* @author Loganathan Sekar
*
* @param <T> Type Argument 1
* @param <U> Type Argument 2
* @param <V> Type Argument 3
* @param <W> Type Argument 4
* @param <R> Return type
*/
@FunctionalInterface
public interface QuadFunction<T, U, V, W, R> {

/**
* Applies this function to the given arguments.
*
* @param t the first function argument
* @param u the second function argument
* @param v the third function argument
* @param w the fourth function argument
* @return the function result
*/
R apply(T t, U u, V v, W w);

}

0 comments on commit f81f5c6

Please sign in to comment.