All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hp.autonomy.hod.client.api.developer.ApplicationUpdateRequest Maven / Gradle / Ivy

There is a newer version: 0.25.3
Show newest version
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