Coverage Summary for Class: BootstrapDataSignature (co.rsk.db.importer.provider.index.data)

Class Class, % Method, % Line, %
BootstrapDataSignature 0% (0/1) 0% (0/3) 0% (0/5)


1 /* 2  * This file is part of RskJ 3  * Copyright (C) 2019 RSK Labs Ltd. 4  * 5  * This program is free software: you can redistribute it and/or modify 6  * it under the terms of the GNU Lesser General Public License as published by 7  * the Free Software Foundation, either version 3 of the License, or 8  * (at your option) any later version. 9  * 10  * This program is distributed in the hope that it will be useful, 11  * but WITHOUT ANY WARRANTY; without even the implied warranty of 12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13  * GNU Lesser General Public License for more details. 14  * 15  * You should have received a copy of the GNU Lesser General Public License 16  * along with this program. If not, see <http://www.gnu.org/licenses/>. 17  */ 18  19 package co.rsk.db.importer.provider.index.data; 20  21 import com.fasterxml.jackson.annotation.JsonCreator; 22 import com.fasterxml.jackson.annotation.JsonProperty; 23  24 public class BootstrapDataSignature { 25  26  private String r; 27  private String s; 28  29  @JsonCreator 30  public BootstrapDataSignature(@JsonProperty("r") String r, @JsonProperty("s") String s) { 31  this.r = r; 32  this.s = s; 33  } 34  35  public String getR() { 36  return r; 37  } 38  39  public String getS() { 40  return s; 41  } 42 }