All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.oneops.infoblox.Main Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
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