/* * Copyright 2015 EMC Corporation * All Rights Reserved */ package com.emc.storageos.xtremio.restapi.model.request; import org.codehaus.jackson.annotate.JsonProperty; import org.codehaus.jackson.map.annotate.JsonRootName; import com.google.gson.annotations.SerializedName; @JsonRootName(value = "xtremio_cg_request") public class XtremIOConsistencyGroupRequest { @SerializedName("consistency-group-name") @JsonProperty(value = "consistency-group-name") private String cgName; @SerializedName("cluster-id") @JsonProperty(value = "cluster-id") private String clusterName; public String getCgName() { return cgName; } public void setCgName(String cgName) { this.cgName = cgName; } public String getClusterName() { return clusterName; } public void setClusterName(String clusterName) { this.clusterName = clusterName; } @Override public String toString() { return "XtremIOConsistencyGroupCreate [cgName=" + cgName + ", clusterName=" + clusterName + "]"; } }