blob: 4d1f128809f8ee111a621e148bf33bebb362ce5e [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.fineract.cn.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;
}
}