We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4a8b015 + e1dcd13 commit 06e158fCopy full SHA for 06e158f
cloudfoundry-client/src/main/java/org/cloudfoundry/client/v3/packages/_DockerData.java
@@ -18,6 +18,7 @@
18
19
import com.fasterxml.jackson.annotation.JsonProperty;
20
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
21
+import org.cloudfoundry.Nullable;
22
import org.immutables.value.Value;
23
24
/**
@@ -37,12 +38,14 @@ abstract class _DockerData implements PackageData {
37
38
* The password for the image's registry
39
*/
40
@JsonProperty("password")
41
+ @Nullable
42
abstract String getPassword();
43
44
45
* The username for the image's registry
46
47
@JsonProperty("username")
48
49
abstract String getUsername();
50
51
}
0 commit comments