25 lines
792 B
Java
25 lines
792 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package com.tridium.platcrypto.daemon.messages;
|
|
|
|
import com.tridium.platcrypto.daemon.messages.SetKeyEntryMessage;
|
|
import java.security.Key;
|
|
import java.security.cert.X509Certificate;
|
|
|
|
public class SetKeyEntryWithResponseMessage
|
|
extends SetKeyEntryMessage {
|
|
public String getAction() {
|
|
return "setKeyEntryWithResponse";
|
|
}
|
|
|
|
public SetKeyEntryWithResponseMessage(String string, String string2, byte[] byArray, X509Certificate[] x509CertificateArray) {
|
|
super(string, string2, byArray, x509CertificateArray);
|
|
}
|
|
|
|
public SetKeyEntryWithResponseMessage(String string, String string2, Key key, char[] cArray, X509Certificate[] x509CertificateArray) {
|
|
super(string, string2, key, cArray, x509CertificateArray);
|
|
}
|
|
}
|
|
|