Java Map Remove removeParamsForAlipaySign(Map map)

Here you can find the source of removeParamsForAlipaySign(Map map)

Description

remove Params For Alipay Sign

License

Open Source License

Declaration

public static Map<String, String> removeParamsForAlipaySign(Map<String, String> map) 

Method Source Code


//package com.java2s;
import java.util.*;

public class Main {

    public static Map<String, String> removeParamsForAlipaySign(Map<String, String> map) {
        map.remove("sign");
        map.remove("sign_type");

        return map;
    }//  ww  w .  ja va  2 s  .co m
}

Related

  1. removeNullValues(final Map parameters)
  2. removeNullValues(Map map)
  3. removeObject(Map map, T key)
  4. removeObjectProperty(Map properties, String key, Object defaultValue)
  5. removeOutStringsStrings(Map map, String newString)
  6. removeParentBeans(Map parentBeans, Map beans)
  7. removePrivateColumns( Map contentValues)
  8. removeRownum(List> rows)
  9. removeTrailingNumber(Map names)