com.northernwall.hadrian.details.simple.dao.VipDao Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Hadrian Show documentation
Show all versions of Hadrian Show documentation
Hadrian is a DevOps UI, Inventory, and Auditing system that plugs into other tools to execute actions.
package com.northernwall.hadrian.details.simple.dao;
import com.google.gson.annotations.SerializedName;
import java.util.LinkedList;
import java.util.List;
public class VipDao {
public String address;
public String name;
@SerializedName(value="dataCenter", alternate={"site"})
public String dataCenter;
@SerializedName(value="ports", alternate={"vport_list"})
public List ports = new LinkedList<>();;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy