• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Adyen / adyen-java-api-library / #3489

04 Sep 2024 12:51PM CUT coverage: 11.864%. First build
#3489

push

web-flow
Merge e5ac612e1 into a58d35543

12570 of 105948 relevant lines covered (11.86%)

0.12 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/main/java/com/adyen/httpclient/AdyenResponse.java
1
/*
2
 *                       ######
3
 *                       ######
4
 * ############    ####( ######  #####. ######  ############   ############
5
 * #############  #####( ######  #####. ######  #############  #############
6
 *        ######  #####( ######  #####. ######  #####  ######  #####  ######
7
 * ###### ######  #####( ######  #####. ######  #####  #####   #####  ######
8
 * ###### ######  #####( ######  #####. ######  #####          #####  ######
9
 * #############  #############  #############  #############  #####  ######
10
 *  ############   ############  #############   ############  #####  ######
11
 *                                      ######
12
 *                               #############
13
 *                               ############
14
 *
15
 * Adyen Java API Library
16
 *
17
 * Copyright (c) 2021 Adyen B.V.
18
 * This file is open source and available under the MIT license.
19
 * See the LICENSE file for more info.
20
 */
21
package com.adyen.httpclient;
22

23
import java.util.List;
24
import java.util.Map;
25

26
class AdyenResponse {
×
27

28
    private String body;
29
    private int status;
30
    private Map<String, List<String>> headers;
31

32
    public String getBody() {
33
        return body;
×
34
    }
35

36
    public void setBody(String body) {
37
        this.body = body;
×
38
    }
×
39

40
    public int getStatus() {
41
        return status;
×
42
    }
43

44
    public void setStatus(int status) {
45
        this.status = status;
×
46
    }
×
47

48
    public Map<String, List<String>> getHeaders() {
49
        return headers;
×
50
    }
51

52
    public void setHeaders(Map<String, List<String>> headers) {
53
        this.headers = headers;
×
54
    }
×
55
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc