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

jreleaser / jreleaser / #524

01 Aug 2025 02:16PM UTC coverage: 48.454% (-0.9%) from 49.315%
#524

push

github

aalmiray
fix(hooks): Inherit matrix and environment from named groups

Relates to #1947

56 of 125 new or added lines in 5 files covered. (44.8%)

450 existing lines in 37 files now uncovered.

25680 of 52999 relevant lines covered (48.45%)

0.48 hits per line

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

0.0
/sdks/jreleaser-github-java-sdk/src/main/java/org/jreleaser/sdk/github/api/GhOrganization.java
1
/*
2
 * SPDX-License-Identifier: Apache-2.0
3
 *
4
 * Copyright 2020-2025 The JReleaser authors.
5
 *
6
 * Licensed under the Apache License, Version 2.0 (the "License");
7
 * you may not use this file except in compliance with the License.
8
 * You may obtain a copy of the License at
9
 *
10
 *     https://www.apache.org/licenses/LICENSE-2.0
11
 *
12
 * Unless required by applicable law or agreed to in writing, software
13
 * distributed under the License is distributed on an "AS IS" BASIS,
14
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
 * See the License for the specific language governing permissions and
16
 * limitations under the License.
17
 */
18
package org.jreleaser.sdk.github.api;
19

20
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
21

22
/**
23
 * @author Andres Almiray
24
 * @since 1.6.0
25
 */
26
@JsonIgnoreProperties(ignoreUnknown = true)
UNCOV
27
public class GhOrganization {
×
28
    private Integer id;
29
    private String login;
30
    private String company;
31
    private String description;
32
    private String htmlUrl;
33

34
    public Integer getId() {
35
        return id;
×
36
    }
37

38
    public void setId(Integer id) {
UNCOV
39
        this.id = id;
×
UNCOV
40
    }
×
41

42
    public String getLogin() {
43
        return login;
×
44
    }
45

46
    public void setLogin(String login) {
UNCOV
47
        this.login = login;
×
UNCOV
48
    }
×
49

50
    public String getCompany() {
51
        return company;
×
52
    }
53

54
    public void setCompany(String company) {
UNCOV
55
        this.company = company;
×
UNCOV
56
    }
×
57

58
    public String getDescription() {
59
        return description;
×
60
    }
61

62
    public void setDescription(String description) {
UNCOV
63
        this.description = description;
×
UNCOV
64
    }
×
65

66
    public String getHtmlUrl() {
67
        return htmlUrl;
×
68
    }
69

70
    public void setHtmlUrl(String htmlUrl) {
UNCOV
71
        this.htmlUrl = htmlUrl;
×
UNCOV
72
    }
×
73
}
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

© 2026 Coveralls, Inc