Tabnine Logo
InstanceInfo$Builder.withPorts
Code IndexAdd Tabnine to your IDE (free)

How to use
withPorts
method
in
com.netflix.eureka2.registry.InstanceInfo$Builder

Best Java code snippets using com.netflix.eureka2.registry.InstanceInfo$Builder.withPorts (Showing top 6 results out of 315)

origin: com.netflix.eureka2/eureka-testkit

protected Builder templateFor(String name) {
  HashSet<String> healthCheckUrls = new HashSet<>();
  healthCheckUrls.add("http://eureka/healthCheck/" + name + "1");
  healthCheckUrls.add("http://eureka/healthCheck/" + name + "2");
  HashSet<Integer> ports = new HashSet<>();
  ports.add(80);
  ports.add(8080);
  HashSet<Integer> securePorts = new HashSet<>();
  securePorts.add(443);
  securePorts.add(8443);
  return new Builder()
      .withId("id#" + name + "_" + UUID.randomUUID().toString())
      .withApp("app#" + name)
      .withAppGroup("group#" + name)
      .withAsg("asg#" + name)
      .withHealthCheckUrls(healthCheckUrls)
      .withHomePageUrl("http://eureka/home/" + name)
      .withPorts(Sets.asSet(new ServicePort(7200, false), new ServicePort(7210, true)))
      .withSecureVipAddress("vipSecure#" + name)
      .withStatus(Status.UP)
      .withStatusPageUrl("http://eureka/status/" + name)
      .withVipAddress("vip#" + name)
      .withMetaData("optionA", "valueA")
      .withMetaData("optionB", "valueB")
      .withDataCenterInfo(SampleAwsDataCenterInfo.UsEast1a.build());
}
origin: com.netflix.eureka2/eureka-testkit

@Override
public InstanceInfo next() {
  int cidx = idx.incrementAndGet();
  String name = baseName + '_' + cidx;
  NetworkAddress publicAddress = publicAddresses.next();
  NetworkAddress privateAddress = privateAddresses.next();
  DataCenterInfo dataCenter = new AwsDataCenterInfo.Builder()
      .withAwsDataCenter(templateDataCenter)
      .withPublicHostName(publicAddress.getHostName())
      .withPublicIPv4(publicAddress.getIpAddress())
      .withPrivateHostName(privateAddress.getHostName())
      .withPrivateIPv4(privateAddress.getIpAddress())
      .build();
  return new InstanceInfo.Builder()
      .withId("id#" + name)
      .withApp("app#" + baseName)
      .withAppGroup("group#" + baseName)
      .withAsg("asg#" + baseName)
      .withHealthCheckUrls(template.getHealthCheckUrls())
      .withHomePageUrl(template.getHomePageUrl())
      .withPorts(template.getPorts())
      .withSecureVipAddress("vipSecure#" + name)
      .withStatus(template.getStatus())
      .withStatusPageUrl(template.getStatusPageUrl())
      .withVipAddress("vip#" + baseName)
      .withMetaData(template.getMetaData())
      .withDataCenterInfo(dataCenter)
      .build();
}
origin: com.netflix.eureka2/eureka-bridge

@Override
public InstanceInfo fromV1(com.netflix.appinfo.InstanceInfo v1Info) {
  InstanceInfo.Builder builder = new InstanceInfo.Builder()
      .withId(v1Info.getAppName() + "_" + v1Info.getId())  // instanceId is not unique for v1Data
      .withAppGroup(v1Info.getAppGroupName())
      .withApp(v1Info.getAppName())
      .withAsg(v1Info.getASGName())
      .withVipAddress(v1Info.getVIPAddress())
      .withSecureVipAddress(v1Info.getSecureVipAddress())
      .withPorts(toSet(new ServicePort(v1Info.getPort(), false), new ServicePort(v1Info.getSecurePort(), true)))
      .withStatus(fromV1(v1Info.getStatus()))
      .withHomePageUrl(v1Info.getHomePageUrl())
      .withStatusPageUrl(v1Info.getStatusPageUrl())
      .withHealthCheckUrls(new HashSet<>(v1Info.getHealthCheckUrls()))
      .withMetaData(v1Info.getMetadata())
      .withDataCenterInfo(fromV1(v1Info.getDataCenterInfo()));
  return builder.build();
}
origin: com.netflix.eureka2/eureka-testkit

  @Override
  public Builder builder() {
    Builder builder = templateFor(this.name());
    builder.withPorts(Sets.asSet(
        SampleServicePort.EurekaDiscoveryPort.build()
    ));
    return builder;
  }
};
origin: com.netflix.eureka2/eureka-testkit

  protected InstanceInfo buildClientInfo(String name) {
    return new Builder()
        .withId("id#" + name)
        .withApp("app#" + name)
        .withAppGroup("appGroup#" + name)
        .withVipAddress("vip#" + name)
        .withStatus(Status.UP)
        .withPorts(SampleServicePort.httpPorts())
        .withDataCenterInfo(SampleAwsDataCenterInfo.UsEast1a.build())
        .build();
  }
}
origin: com.netflix.eureka2/eureka-testkit

protected Builder eurekaWriteTemplate(int idx) {
  Builder builder = templateFor(this.name() + '#' + idx);
  builder.withPorts(Sets.asSet(
      SampleServicePort.EurekaRegistrationPort.build(),
      SampleServicePort.EurekaDiscoveryPort.build(),
      SampleServicePort.EurekaReplicationPort.build()
  ));
  return builder;
}
com.netflix.eureka2.registryInstanceInfo$BuilderwithPorts

Popular methods of InstanceInfo$Builder

  • <init>
  • build
  • withApp
  • withDataCenterInfo
  • withHealthCheckUrls
  • withId
  • withStatus
  • withVipAddress
  • withAppGroup
  • withAsg
  • withHomePageUrl
  • withInstanceInfo
  • withHomePageUrl,
  • withInstanceInfo,
  • withMetaData,
  • withSecureVipAddress,
  • withStatusPageUrl,
  • withVersion

Popular in Java

  • Creating JSON documents from java classes using gson
  • getExternalFilesDir (Context)
  • runOnUiThread (Activity)
  • getSharedPreferences (Context)
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • Notification (javax.management)
  • JOptionPane (javax.swing)
  • JPanel (javax.swing)
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now