blob: 4d6a841bb7ebf9dfdc8925d917f1f45959e33814 [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.ClusteringColumn;
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
*/
@Table(name = ApplicationSignatures.TABLE_NAME)
public class ApplicationSignatureEntity {
@PartitionKey
@Column(name = ApplicationSignatures.APPLICATION_IDENTIFIER_COLUMN)
private String applicationIdentifier;
@ClusteringColumn
@Column(name = ApplicationSignatures.KEY_TIMESTAMP_COLUMN)
private String keyTimestamp;
@Column(name = ApplicationSignatures.PUBLIC_KEY_MOD_COLUMN)
private BigInteger publicKeyMod;
@Column(name = ApplicationSignatures.PUBLIC_KEY_EXP_COLUMN)
private BigInteger publicKeyExp;
public String getApplicationIdentifier() {
return applicationIdentifier;
}
public void setApplicationIdentifier(String applicationIdentifier) {
this.applicationIdentifier = applicationIdentifier;
}
public String getKeyTimestamp() {
return keyTimestamp;
}
public void setKeyTimestamp(String keyTimestamp) {
this.keyTimestamp = keyTimestamp;
}
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;
}
}