niagara-ax/modules/cfr_output/com/tridium/platcrypto/daemon/messages/SetKeyEntryWithResponseMessage.java
2026-03-17 13:31:18 -07:00

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);
}
}