-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated open api file for encryption parts #3250
- Loading branch information
Showing
6 changed files
with
160 additions
and
33 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
25 changes: 25 additions & 0 deletions
25
...l/src/main/java/com/mercedesbenz/sechub/sharedkernel/encryption/SecHubPasswordSource.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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package com.mercedesbenz.sechub.sharedkernel.encryption; | ||
|
||
public class SecHubPasswordSource { | ||
public static final String PROPERTY_TYPE = "type"; | ||
public static final String PROPERTY_DATA = "data"; | ||
|
||
private SecHubCipherPasswordSourceType type; | ||
private String data; | ||
|
||
public void setData(String data) { | ||
this.data = data; | ||
} | ||
|
||
public void setType(SecHubCipherPasswordSourceType type) { | ||
this.type = type; | ||
} | ||
|
||
public String getData() { | ||
return data; | ||
} | ||
|
||
public SecHubCipherPasswordSourceType getType() { | ||
return type; | ||
} | ||
} |
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