Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.util.HashMap;

import java.util.Map;

public class Main {

    public static Map<String, Object> getRegistMsgMap(String telephoneNo, String messageType, String requestTime) {
        Map<String, Object> map = getMap();
        map.put("telephoneNo", telephoneNo);
        map.put("messageType", messageType);
        map.put("requestTime", requestTime);
        return map;
    }

    public static <K, V> Map<K, V> getMap() {
        return new HashMap<K, V>();
    }
}