blob: f6c9c13bfbcfc34f940b11d568b8652a8765b6fe [file] [log] [blame]
/*
* Copyright (c) 2020 Kentyou.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Kentyou - initial API and implementation
*/
package org.eclipse.sensinact.gateway.core.security.entity;
import org.json.JSONObject;
import org.eclipse.sensinact.gateway.common.bundle.Mediator;
import org.eclipse.sensinact.gateway.core.security.entity.annotation.Column;
import org.eclipse.sensinact.gateway.core.security.entity.annotation.PrimaryKey;
import org.eclipse.sensinact.gateway.core.security.entity.annotation.Table;
/**
* Application Entity
*
* @author <a href="mailto:christophe.munilla@cea.fr">Christophe Munilla</a>
*/
@Table(value = "APPLICATION")
@PrimaryKey(value = { "APPID" })
public class ApplicationEntity extends SnaEntity {
@Column(value = "APPID")
private long identifier;
@Column(value = "OID")
private long objectId;
@Column(value = "APP_PUBLIC_KEY")
private String publicKey;
@Column(value = "APP_PRIVATE_KEY")
private String privateKey;
/**
* Constructor
*
* @param mediator
* the {@link Mediator} allowing to interact with the OSGi host
* environment
*/
public ApplicationEntity(Mediator mediator) {
super(mediator);
}
/**
* Constructor
*
* @param mediator
* the {@link Mediator} allowing to interact with the OSGi host
* environment
* @param row
*/
public ApplicationEntity(Mediator mediator, JSONObject row) {
super(mediator, row);
}
/**
* Constructor
*
* @param mediator
* the {@link Mediator} allowing to interact with the OSGi host
* environment
* @param objectId
* @param publicKey
*/
public ApplicationEntity(Mediator mediator, long objectId, String publicKey, String privateKey) {
this(mediator);
this.setObjectId(objectId);
this.setPublicKey(publicKey);
this.setPrivateKey(privateKey);
}
/**
* @inheritDoc
*
* @see SnaEntity#getIdentifier()
*/
public long getIdentifier() {
return identifier;
}
/**
* @param identifier
* the identifier to set
*/
public void setIdentifier(long identifier) {
this.identifier = identifier;
}
/**
* @return the login
*/
public long getObjectId() {
return objectId;
}
/**
* @param objectId
* the object identifier to set
*/
public void setObjectId(long objectId) {
this.objectId = objectId;
}
/**
* @return the public key
*/
public String getPublicKey() {
return publicKey;
}
/**
* @param publicKey
* the public key to set
*/
public void setPublicKey(String publicKey) {
this.publicKey = publicKey;
}
/**
* @return the private key
*/
public String getPrivateKey() {
return privateKey;
}
/**
* @param privateKey
* the private key to set
*/
public void setPrivateKey(String privateKey) {
this.privateKey = privateKey;
}
}