File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
dsf-fhir/dsf-fhir-server/src/main/java/dev/dsf/fhir/model Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 13
13
14
14
public class DeferredBase64BinaryTypeImpl extends Base64BinaryType implements DeferredBase64BinaryType
15
15
{
16
- private static final String USER_DATA_BINARY_DATA_PLACEHOLDER_VALUE = "binary_data_value_placeholder" ;
16
+ private static final String USER_DATA_BINARY_DATA_VALUE_PLACEHOLDER = "binary_data_value_placeholder" ;
17
17
18
18
@ FunctionalInterface
19
19
public static interface ConsumerWithIoException <T >
@@ -60,7 +60,7 @@ public boolean hasValue()
60
60
@ Override
61
61
public String getValueAsString ()
62
62
{
63
- String placeholderValue = (String ) getUserData (USER_DATA_BINARY_DATA_PLACEHOLDER_VALUE );
63
+ String placeholderValue = (String ) getUserData (USER_DATA_BINARY_DATA_VALUE_PLACEHOLDER );
64
64
65
65
if (placeholderValue != null )
66
66
return placeholderValue ;
@@ -93,7 +93,7 @@ public String createPlaceHolderAndSetAsUserData()
93
93
{
94
94
String placeHolder = "===" + UUID .randomUUID ().toString ().replaceAll ("-" , "" ) + "===" ;
95
95
96
- setUserData (USER_DATA_BINARY_DATA_PLACEHOLDER_VALUE , placeHolder );
96
+ setUserData (USER_DATA_BINARY_DATA_VALUE_PLACEHOLDER , placeHolder );
97
97
98
98
return placeHolder ;
99
99
}
You can’t perform that action at this time.
0 commit comments