![JAR search and dependency download from the Maven repository](/logo.png)
com.hp.autonomy.hod.client.api.developer.ApplicationUpdateRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-hod-client Show documentation
Show all versions of java-hod-client Show documentation
Java Client for communicating with HP Haven OnDemand
package com.hp.autonomy.hod.client.api.developer;
import lombok.Builder;
import java.util.List;
import java.util.Optional;
@Builder
public class ApplicationUpdateRequest {
private final String description;
private final List authentications;
public Optional getDescription() {
return Optional.ofNullable(description);
}
public Optional> getAuthentications() {
return Optional.ofNullable(authentications);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy