/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package objects; /** * * @author TuoiCM */ public class Keys { private String keyId; private String keyLabel; public Keys(String keyId, String keyLabel) { this.keyId = keyId; this.keyLabel = keyLabel; } public String getKeyId() { return keyId; } public void setKeyId(String keyId) { this.keyId = keyId; } public String getKeyLabel() { return keyLabel; } public void setKeyLabel(String keyLabel) { this.keyLabel = keyLabel; } }