cactoos-http

Object-Oriented HTTP Client

License

License

MIT
Categories

Categories

cactoos General Purpose Libraries Utility
GroupId

GroupId

org.cactoos
ArtifactId

ArtifactId

cactoos-http
Last Version

Last Version

0.0.1
Release Date

Release Date

Type

Type

jar
Description

Description

cactoos-http
Object-Oriented HTTP Client
Project URL

Project URL

https://github.com/yegor256/cactoos-http
Project Organization

Project Organization

Cactoos
Source Code Management

Source Code Management

https://github.com/yegor256/cactoos-http

Download cactoos-http

How to add to project

<!-- https://jarcasting.com/artifacts/org.cactoos/cactoos-http/ -->
<dependency>
    <groupId>org.cactoos</groupId>
    <artifactId>cactoos-http</artifactId>
    <version>0.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.cactoos/cactoos-http/
implementation 'org.cactoos:cactoos-http:0.0.1'
// https://jarcasting.com/artifacts/org.cactoos/cactoos-http/
implementation ("org.cactoos:cactoos-http:0.0.1")
'org.cactoos:cactoos-http:jar:0.0.1'
<dependency org="org.cactoos" name="cactoos-http" rev="0.0.1">
  <artifact name="cactoos-http" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.cactoos', module='cactoos-http', version='0.0.1')
)
libraryDependencies += "org.cactoos" % "cactoos-http" % "0.0.1"
[org.cactoos/cactoos-http "0.0.1"]

Dependencies

compile (1)

Group / Artifact Type Version
org.cactoos : cactoos jar 0.29.2

test (1)

Group / Artifact Type Version
org.takes : takes jar 1.1

Project Modules

There are no modules declared in this project.

Donate via Zerocracy

EO principles respected here Managed by Zerocracy DevOps By Rultor.com We recommend IntelliJ IDEA

Build Status Javadoc PDD status Maven Central License

Test Coverage SonarQube

Cactoos-HTTP is a experimental HTTP client, fully object-oriented.

These are the design principles behind Cactoos-HTTP.

All you need is this:

<dependency>
  <groupId>org.cactoos</groupId>
  <artifactId>cactoos-http</artifactId>
  <version><!-- Get it here: https://github.com/yegor256/cactoos-http/releases --></version>
</dependency>

Java version required: 1.8+.

StackOverflow tag is cactoos.

We are well aware of competitors (most likely they are more powerful than our client, but less object-oriented):

How to use

Ht stands for HTTP. We are not using Http just in order to look a bit different than all other libraries.

To make a simple HTTP GET request and read its body:

String body = new TextOf(
  new HtBody(
    new HtResponse(
      "http://www.google.com"
    )
  )
).asString();

This one sends a PUT request with a multi-part form and reads back some headers and the response code (mind the usage of StickyInput):

Input head = new StickyInput(
  new HtHead(
    new HtResponse(
      new HtWire("www.example.com"),
      new Joined(
        "\n\r",
        "PUT / HTTP/1.1",
        "Host: www.example.com"
      ).asString()
    )
  )
);
int status = new HtStatus(head).intValue();
Map<String, String> headers = new HtHeaders(head);

Questions

Ask your questions related to cactoos library on Stackoverflow with cactoos tag.

How to contribute?

Just fork the repo and send us a pull request.

Make sure your branch builds without any warnings/issues:

mvn clean install -Pqulice

License (MIT)

Copyright (c) 2018 Yegor Bugayenko

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Versions

Version
0.0.1