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

com.alibaba.rocketmq.research.gson.ContactBook Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
package com.alibaba.rocketmq.research.gson;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;


public class ContactBook extends Convert {
    private String name;
    private List contactList = new ArrayList();
    private Map customField = new HashMap();

    private int code;


    public String getName() {
        return name;
    }


    public void setName(String name) {
        this.name = name;
    }


    public List getContactList() {
        return contactList;
    }


    public void setContactList(List contactList) {
        this.contactList = contactList;
    }


    public int getCode() {
        return code;
    }


    public void setCode(int code) {
        this.code = code;
    }


    public Map getCustomField() {
        return customField;
    }


    public void setCustomField(Map customField) {
        this.customField = customField;
    }


    @Override
    public String toString() {
        return "ContactBook [name=" + name + ", contactList=" + contactList + ", customField=" + customField
                + ", code=" + code + "]";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy