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

com.chargebee.internal.RequestBase Maven / Gradle / Ivy

There is a newer version: 3.28.0
Show newest version
/*
 * Copyright (c) 2011 chargebee.com
 * All Rights Reserved.
 */

package com.chargebee.internal;

import java.util.*;


public class RequestBase {

    protected String uri;
    protected Params params = new Params();   
    protected Map headers = new HashMap();

    public Params params() {
        return params;
    }

    public U header(String headerName,String headerValue){        
        headers.put(headerName, headerValue);
        return (U)this;
    }
    

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy