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

types.UserOption Maven / Gradle / Ivy

There is a newer version: 4.6.0
Show newest version
package types;

import org.ovirt.api.metamodel.annotations.Link;
import org.ovirt.api.metamodel.annotations.Type;

/**
 * User options allow you to save key/value properties
 * which are used to customize the settings per individual
 * user.
 */
@Type
public interface UserOption extends Identified {

    /**
     * JSON content encoded as string. Any valid JSON is supported.
     */
    String content();

    @Link User user();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy