blob: cbe1854f4ad7ae7999cad4c74de752fe014961be [file] [log] [blame]
/*
* Copyright 2017 The Mifos Initiative.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.mifos.identity.internal.repository;
import com.datastax.driver.mapping.annotations.Column;
import com.datastax.driver.mapping.annotations.PartitionKey;
import com.datastax.driver.mapping.annotations.Table;
import java.math.BigInteger;
/**
* @author Myrle Krantz
*/
@SuppressWarnings({"unused", "WeakerAccess"})
@Table(name = Signatures.TABLE_NAME)
public class SignatureEntity {
@PartitionKey
@Column(name = Signatures.KEY_TIMESTAMP_COLUMN)
private String keyTimestamp;
@Column(name = Signatures.VALID_COLUMN)
private Boolean valid;
@Column(name = Signatures.PUBLIC_KEY_MOD_COLUMN)
private BigInteger publicKeyMod;
@Column(name = Signatures.PUBLIC_KEY_EXP_COLUMN)
private BigInteger publicKeyExp;
public SignatureEntity() { }
public String getKeyTimestamp() {
return keyTimestamp;
}
public void setKeyTimestamp(String keyTimestamp) {
this.keyTimestamp = keyTimestamp;
}
public Boolean getValid() {
return valid;
}
public void setValid(Boolean valid) {
this.valid = valid;
}
public BigInteger getPublicKeyMod() {
return publicKeyMod;
}
public void setPublicKeyMod(BigInteger publicKeyMod) {
this.publicKeyMod = publicKeyMod;
}
public BigInteger getPublicKeyExp() {
return publicKeyExp;
}
public void setPublicKeyExp(BigInteger publicKeyExp) {
this.publicKeyExp = publicKeyExp;
}
}