
com.megaport.api.dto.PortLocationDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
This library is a Java wrapper for the Megaport API.
The newest version!
package com.megaport.api.dto;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import java.io.Serializable;
/**
* Created by leo.na on 16/03/2015.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class PortLocationDto implements Serializable {
private String market;
private String country;
private String networkRegion;
private Address address;
private String campus;
private String metro;
private String name;
private Integer id;
@Deprecated // look in this.products for MCR == true
private Boolean sdrcAvailable = false;
@Deprecated // look in this.products for MCR == true
private Boolean vRouterAvailable = false;
private AvailableProductDto products;
public AvailableProductDto getProducts() {
return products;
}
public void setProducts(AvailableProductDto products) {
this.products = products;
}
public String getMarket() {
return market;
}
public void setMarket(String market) {
this.market = market;
}
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
public String getNetworkRegion() {
return networkRegion;
}
public void setNetworkRegion(String networkRegion) {
this.networkRegion = networkRegion;
}
public Address getAddress() {
return address;
}
public void setAddress(Address address) {
this.address = address;
}
public String getCampus() {
return campus;
}
public void setCampus(String campus) {
this.campus = campus;
}
@Deprecated // look in this.products for MCR == true
public Boolean getSdrcAvailable() {
return sdrcAvailable;
}
public void setSdrcAvailable(Boolean sdrcAvailable) {
this.sdrcAvailable = sdrcAvailable;
}
public String getMetro() {
return metro;
}
public void setMetro(String metro) {
this.metro = metro;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
@Deprecated // look in this.products for MCR == true
public Boolean getvRouterAvailable() {
return vRouterAvailable;
}
public void setvRouterAvailable(Boolean vRouterAvailable) {
this.vRouterAvailable = vRouterAvailable;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy