Ejemplo n.º 1
0
 /**
  * Sets the Secure Virtual Internet Protocol address for this instance. The address should
  * follow the format <hostname:port> This address needs to be resolved into a real address for
  * communicating with this instance.
  *
  * @param secureVIPAddress the secure VIP address of the instance.
  * @return - Builder instance
  */
 public Builder setSecureVIPAddress(String secureVIPAddress) {
   result.secureVipAddressUnresolved = secureVIPAddress;
   result.secureVipAddress = resolveDeploymentContextBasedVipAddresses(secureVIPAddress);
   return this;
 }