Example usage for com.liferay.portal.kernel.util Http.Options getCookies

List of usage examples for com.liferay.portal.kernel.util Http.Options getCookies

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.util Http.Options getCookies.

Prototype

public Cookie[] getCookies();

Source Link

Usage

From source file:com.twelve.capital.external.feed.util.HttpImpl.java

License:Open Source License

@Override
public byte[] URLtoByteArray(Http.Options options) throws IOException {
    return URLtoByteArray(options.getLocation(), options.getMethod(), options.getHeaders(),
            options.getCookies(), options.getAuth(), options.getBody(), options.getFileParts(),
            options.getParts(), options.getResponse(), options.isFollowRedirects(), options.getProgressId(),
            options.getPortletRequest());
}