-
Notifications
You must be signed in to change notification settings - Fork 0
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 #13 from AWS-Cloud-School-6/12-feat-s3-company-spe…
…cific-directing #12 Feat: S3 Company-Specific Directing
- Loading branch information
Showing
4 changed files
with
30 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package AIWA.MCPBackend_Member.Dto; | ||
|
||
import lombok.Getter; | ||
|
||
@Getter | ||
public class CompanyDto { | ||
private String userId; | ||
private String company; | ||
private String accessKey; | ||
private String secretKey; | ||
|
||
public CompanyDto(String userId, String company, String accessKey, String secretKey) { | ||
this.userId = userId; | ||
this.company = company; | ||
this.accessKey = accessKey; | ||
this.secretKey = secretKey; | ||
} | ||
} |
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