![JAR search and dependency download from the Maven repository](/logo.png)
com.oneops.infoblox.Main Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infoblox-java Show documentation
Show all versions of infoblox-java Show documentation
A pure java API for Infoblox DNS appliance.
package com.oneops.infoblox;
/**
* Main class
*
* @author Suresh G
*/
public class Main {
public static void main(String[] args) throws Exception {
InfobloxClient client = InfobloxClient.builder()
.endPoint("localhost:8888")
.userName("")
.password("")
.build();
client.getAuthZones().forEach(System.out::println);
System.out.println("--------------");
client.getAuthZones("domain.com").forEach(System.out::println);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy