-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from zzz403/profile
Profile
- Loading branch information
Showing
13 changed files
with
689 additions
and
43 deletions.
There are no files selected for viewing
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
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
11 changes: 10 additions & 1 deletion
11
src/main/java/com/imperial/academia/use_case/profile/ProfileInputBoundry.java
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,6 +1,15 @@ | ||
package com.imperial.academia.use_case.profile; | ||
|
||
/** | ||
* The ProfileInputBoundry interface provides a contract for executing profile-related operations. | ||
* Implementations of this interface should define the specific logic for handling profile input data. | ||
*/ | ||
public interface ProfileInputBoundry { | ||
void excute (ProfileInputData profileInputData); | ||
|
||
/** | ||
* Executes an operation with the given profile input data. | ||
* | ||
* @param profileInputData the data required to perform the profile operation | ||
*/ | ||
void excute(ProfileInputData profileInputData); | ||
} |
Oops, something went wrong.