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

com.emc.vipr.model.sys.TargetVersionResponse Maven / Gradle / Ivy

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

package com.emc.vipr.model.sys;

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

@XmlRootElement(name = "target_version_info")
public class TargetVersionResponse {

    private String targetVersion;

    public TargetVersionResponse() {
    }

    public TargetVersionResponse(String targetVersion) {
        this.targetVersion = targetVersion;
    }

    @XmlElement(name = "target_version")
    public String getTargetVersion() {
        return targetVersion;
    }

    public void setTargetVersion(String targetVersion) {
        this.targetVersion = targetVersion;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy