Notice: Over the next few months, we're reorganizing the App Engine documentation site to make it easier to find content and better align with the rest of Google Cloud products. The same content will be available, but the navigation will now match the rest of the Cloud products. If you have feedback or questions as you navigate the site, click Send Feedback.

AbstractContainerService.PortMappingProvider

com.google.appengine.tools.development

Interface AbstractContainerService.PortMappingProvider

  • Enclosing class:
    AbstractContainerService


    public static interface AbstractContainerService.PortMappingProvider
    Provider for the 'portMapping'.

    The provided map contains an entry for every backend instance. For the main instance the key is the backend name and the value is the hostname:port for sending http requests to the instance (i.e. bob->127.0.0.1:1234). For other instances the key is instance-id.hostname and the value is again the hostname:port for sending http requests to the instance (i.e. 2.bob->127.0.0.1:1234).

    • Method Detail

      • getPortMapping

        java.util.Map<java.lang.String,java.lang.String> getPortMapping()