Skip to content

Commit 06e158f

Browse files
committed
Merge branch '1011-docker-credentials' into 3.x
2 parents 4a8b015 + e1dcd13 commit 06e158f

File tree

1 file changed

+3
-0
lines changed
  • cloudfoundry-client/src/main/java/org/cloudfoundry/client/v3/packages

1 file changed

+3
-0
lines changed

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v3/packages/_DockerData.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
import com.fasterxml.jackson.annotation.JsonProperty;
2020
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
21+
import org.cloudfoundry.Nullable;
2122
import org.immutables.value.Value;
2223

2324
/**
@@ -37,12 +38,14 @@ abstract class _DockerData implements PackageData {
3738
* The password for the image's registry
3839
*/
3940
@JsonProperty("password")
41+
@Nullable
4042
abstract String getPassword();
4143

4244
/**
4345
* The username for the image's registry
4446
*/
4547
@JsonProperty("username")
48+
@Nullable
4649
abstract String getUsername();
4750

4851
}

0 commit comments

Comments
 (0)