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

com.emc.storageos.model.customconfig.CustomConfigUpdateParam Maven / Gradle / Ivy

There is a newer version: 3.5.0.0
Show newest version
/*
 * Copyright (c) 2014 EMC Corporation
 * All Rights Reserved
 */

package com.emc.storageos.model.customconfig;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

/**
 * Parameter for custom config update.
 */
@XmlRootElement(name = "config_update")
public class CustomConfigUpdateParam {
    private String value;

    public CustomConfigUpdateParam() {
    }

    public CustomConfigUpdateParam(String value) {
        this.value = value;
    }

    /**
     * The config value to be changed
     * 
     * @valid none
     */
    @XmlElement
    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy