Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
// Released under the Apache License, Version 2.0

import java.net.CookieHandler;
import java.net.CookieManager;

public class Main {
    /**
     * Creates a new CookieManager instance.
     */
    public static CookieHandler newCookieManager() {
        return new CookieManager();
    }
}