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

apache / rocketmq-dashboard / 200

pending completion
200

Pull #130

travis-ci-com

web-flow
Merge e87e98135 into 86bdb0636
Pull Request #130: Bump snakeyaml from 1.30 to 1.32

2374 of 2869 relevant lines covered (82.75%)

1.65 hits per line

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

52.94
/src/main/java/org/apache/rocketmq/dashboard/model/ConsumerGroupRollBackStat.java
1
/*
2
 * Licensed to the Apache Software Foundation (ASF) under one or more
3
 * contributor license agreements.  See the NOTICE file distributed with
4
 * this work for additional information regarding copyright ownership.
5
 * The ASF licenses this file to You under the Apache License, Version 2.0
6
 * (the "License"); you may not use this file except in compliance with
7
 * the License.  You may obtain a copy of the License at
8
 *
9
 *     http://www.apache.org/licenses/LICENSE-2.0
10
 *
11
 * Unless required by applicable law or agreed to in writing, software
12
 * distributed under the License is distributed on an "AS IS" BASIS,
13
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 * See the License for the specific language governing permissions and
15
 * limitations under the License.
16
 */
17
package org.apache.rocketmq.dashboard.model;
18

19
import org.apache.rocketmq.common.admin.RollbackStats;
20
import com.google.common.collect.Lists;
21

22
import java.util.List;
23

24
public class ConsumerGroupRollBackStat {
25
    private boolean status;
26
    private String errMsg;
27
    private List<RollbackStats> rollbackStatsList = Lists.newArrayList();
2✔
28

29
    public ConsumerGroupRollBackStat(boolean status) {
2✔
30
        this.status = status;
2✔
31
    }
2✔
32

33
    public ConsumerGroupRollBackStat(boolean status, String errMsg) {
×
34
        this.status = status;
×
35
        this.errMsg = errMsg;
×
36
    }
×
37

38
    public String getErrMsg() {
39
        return errMsg;
2✔
40
    }
41

42
    public void setErrMsg(String errMsg) {
43
        this.errMsg = errMsg;
×
44
    }
×
45

46
    public boolean isStatus() {
47
        return status;
2✔
48
    }
49

50
    public void setStatus(boolean status) {
51
        this.status = status;
×
52
    }
×
53

54
    public List<RollbackStats> getRollbackStatsList() {
55
        return rollbackStatsList;
2✔
56
    }
57

58
    public void setRollbackStatsList(List<RollbackStats> rollbackStatsList) {
59
        this.rollbackStatsList = rollbackStatsList;
2✔
60
    }
2✔
61
}
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