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

com.alibaba.nacos.naming.pojo.ServiceDetailInfo Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 1999-2018 Alibaba Group Holding Ltd.
 *
 * Licensed 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 com.alibaba.nacos.naming.pojo;

import java.io.Serializable;
import java.util.Map;

/**
 * @author caogu.wyp
 * @version $Id: ServiceDetailInfo.java, v 0.1 2018-09-17 上午10:47 caogu.wyp Exp $$
 */
public class ServiceDetailInfo implements Serializable {

    private String                   serviceName;

    private Map clusterMap;

    private Map      metadata;

    /**
     * Getter method for property serviceName.
     *
     * @return property value of serviceName
     */
    public String getServiceName() {
        return serviceName;
    }

    /**
     * Setter method for property serviceName .
     *
     * @param serviceName value to be assigned to property serviceName
     */
    public void setServiceName(String serviceName) {
        this.serviceName = serviceName;
    }

    /**
     * Getter method for property clusterMap.
     *
     * @return property value of clusterMap
     */
    public Map getClusterMap() {
        return clusterMap;
    }

    /**
     * Setter method for property clusterMap .
     *
     * @param clusterMap value to be assigned to property clusterMap
     */
    public void setClusterMap(Map clusterMap) {
        this.clusterMap = clusterMap;
    }

    /**
     * Getter method for property metadata.
     *
     * @return property value of metadata
     */
    public Map getMetadata() {
        return metadata;
    }

    /**
     * Setter method for property metadata .
     *
     * @param metadata value to be assigned to property metadata
     */
    public void setMetadata(Map metadata) {
        this.metadata = metadata;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy