コード例 #1
0
ファイル: InstanceInfo.java プロジェクト: scotte/eureka
 /**
  * Sets the Virtual Internet Protocol address for this instance. The address should follow the
  * format <code><hostname:port></code> This address needs to be resolved into a real address for
  * communicating with this instance.
  *
  * @param vipAddress - The Virtual Internet Protocol address of this instance.
  * @return the instance builder.
  */
 public Builder setVIPAddress(String vipAddress) {
   result.vipAddressUnresolved = vipAddress;
   result.vipAddress = resolveDeploymentContextBasedVipAddresses(vipAddress);
   return this;
 }