All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.pulsar.common.lookup.data.LookupData Maven / Gradle / Ivy

The newest version!
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.apache.pulsar.common.lookup.data;

import org.apache.pulsar.shade.com.google.common.base.MoreObjects;

/**
 * This class encapsulates lookup data.
 */
public class LookupData {
    private String brokerUrl;
    private String brokerUrlTls;
    private String httpUrl; // Web service HTTP address
    private String httpUrlTls; // Web service HTTPS address
    private String nativeUrl;

    public LookupData() {
    }

    public LookupData(String brokerUrl, String brokerUrlTls, String httpUrl, String httpUrlTls) {
        this.brokerUrl = brokerUrl;
        this.brokerUrlTls = brokerUrlTls;
        this.httpUrl = httpUrl;
        this.httpUrlTls = httpUrlTls;
        this.nativeUrl = brokerUrl;
    }

    public String getBrokerUrl() {
        return brokerUrl;
    }

    public String getBrokerUrlTls() {
        return brokerUrlTls;
    }

    public String getHttpUrl() {
        return httpUrl;
    }

    public String getHttpUrlTls() {
        return httpUrlTls;
    }

    public void setHttpUrlTls(String httpUrlTls) {
        this.httpUrlTls = httpUrlTls;
    }

    /**
     * Legacy name, but client libraries are still using it so it needs to be included in Json.
     */
    @Deprecated
    public String getNativeUrl() {
        return nativeUrl;
    }

    /**
     * "brokerUrlSsl" is needed in the serialized Json for compatibility reasons.
     *
     * 

Older C++ pulsar client library version will fail the lookup if this field is not included, * even though it's not used */ @Deprecated public String getBrokerUrlSsl() { return ""; } @Override public String toString() { return MoreObjects.toStringHelper(this).add("brokerUrl", brokerUrl).add("brokerUrlTls", brokerUrlTls) .add("httpUrl", httpUrl).add("httpUrlTls", httpUrlTls).toString(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy