Repository: cloudstack
Updated Branches:
  refs/heads/master 7f14da640 -> 351cc829e


CLOUDSTACK-969: Zone response - removed vlan from the zoneResponse as this 
field was moved to PhysicalNetworkResponse around 3 releases ago


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/351cc829
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/351cc829
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/351cc829

Branch: refs/heads/master
Commit: 351cc829e3dbdd27c740b8e4a0e8c3afa6252ff1
Parents: 7f14da6
Author: Alena Prokharchyk <[email protected]>
Authored: Wed Jul 23 16:10:12 2014 -0700
Committer: Alena Prokharchyk <[email protected]>
Committed: Wed Jul 23 16:10:12 2014 -0700

----------------------------------------------------------------------
 .../org/apache/cloudstack/api/response/ZoneResponse.java | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/351cc829/api/src/org/apache/cloudstack/api/response/ZoneResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/ZoneResponse.java 
b/api/src/org/apache/cloudstack/api/response/ZoneResponse.java
index bbb9a7b..7aee448 100644
--- a/api/src/org/apache/cloudstack/api/response/ZoneResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/ZoneResponse.java
@@ -21,14 +21,13 @@ import java.util.List;
 import java.util.Map;
 import java.util.Set;
 
-import com.google.gson.annotations.SerializedName;
-
 import org.apache.cloudstack.api.ApiConstants;
 import org.apache.cloudstack.api.BaseResponse;
 import org.apache.cloudstack.api.EntityReference;
 
 import com.cloud.dc.DataCenter;
 import com.cloud.serializer.Param;
+import com.google.gson.annotations.SerializedName;
 
 @SuppressWarnings("unused")
 @EntityReference(value = DataCenter.class)
@@ -69,10 +68,6 @@ public class ZoneResponse extends BaseResponse {
     @Param(description = "the second internal DNS for the Zone")
     private String internalDns2;
 
-    @SerializedName(ApiConstants.VLAN)
-    @Param(description = "the vlan range of the zone")
-    private String vlan;
-
     @SerializedName(ApiConstants.GUEST_CIDR_ADDRESS)
     @Param(description = "the guest CIDR address for the Zone")
     private String guestCidrAddress;
@@ -165,10 +160,6 @@ public class ZoneResponse extends BaseResponse {
         this.internalDns2 = internalDns2;
     }
 
-    public void setVlan(String vlan) {
-        this.vlan = vlan;
-    }
-
     public void setGuestCidrAddress(String guestCidrAddress) {
         this.guestCidrAddress = guestCidrAddress;
     }

Reply via email to