Package io.fathom.auto.haproxy.model

Examples of io.fathom.auto.haproxy.model.Backend


        if (chunk.mappings != null) {
            for (LbaasMapping mapping : chunk.mappings) {
                log.debug("Found mapping: {}", mapping);

                Backend backend = buildBackend(mapping);

                backend.mappings.add(mapping);
            }
        }
View Full Code Here


            key = DEFAULT_HOST_KEY;
        } else {
            key = buildKey(host);
        }

        Backend backend = backends.get(key);
        if (backend != null) {
            return backend;
        }

        backend = new Backend();
        backend.host = host;
        backend.key = key;
        backends.put(backend.key, backend);

        SecretKeys.SecretInfo secret;
View Full Code Here

TOP

Related Classes of io.fathom.auto.haproxy.model.Backend

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.