link start!
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package javax.baja.dataRecovery;
|
||||
|
||||
import javax.baja.dataRecovery.BIDataRecoverySource;
|
||||
import javax.baja.io.BIEncodable;
|
||||
import javax.baja.sys.BIService;
|
||||
import javax.baja.sys.BajaRuntimeException;
|
||||
import javax.baja.sys.Sys;
|
||||
import javax.baja.sys.Type;
|
||||
|
||||
public interface BIDataRecoveryService
|
||||
extends BIService {
|
||||
public static final Type TYPE;
|
||||
|
||||
public boolean isEnabled();
|
||||
|
||||
public boolean append(BIDataRecoverySource var1, BIEncodable var2, byte[] var3, int var4, int var5) throws BajaRuntimeException;
|
||||
|
||||
public boolean append(BIDataRecoverySource var1, BIEncodable var2, byte[] var3) throws BajaRuntimeException;
|
||||
|
||||
public boolean update(BIDataRecoverySource var1, BIEncodable var2, byte[] var3, int var4, int var5) throws BajaRuntimeException;
|
||||
|
||||
public boolean update(BIDataRecoverySource var1, BIEncodable var2, byte[] var3) throws BajaRuntimeException;
|
||||
|
||||
public boolean hasRecoveryData() throws BajaRuntimeException;
|
||||
|
||||
public void saveStarted() throws BajaRuntimeException;
|
||||
|
||||
public void saveFinished() throws BajaRuntimeException;
|
||||
|
||||
public void saveFailed(Throwable var1);
|
||||
|
||||
public void shutdownStarted() throws BajaRuntimeException;
|
||||
|
||||
public String checkForStationFault();
|
||||
|
||||
static {
|
||||
Class clazz = 1.class$javax$baja$dataRecovery$BIDataRecoveryService;
|
||||
if (clazz == null) {
|
||||
clazz = 1.class$javax$baja$dataRecovery$BIDataRecoveryService = 1.class("[Ljavax.baja.dataRecovery.BIDataRecoveryService;", false);
|
||||
}
|
||||
TYPE = Sys.loadType(clazz);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package javax.baja.dataRecovery;
|
||||
|
||||
import java.util.Iterator;
|
||||
import javax.baja.dataRecovery.IDataRecoveryRecord;
|
||||
import javax.baja.naming.BOrd;
|
||||
import javax.baja.spy.SpyWriter;
|
||||
import javax.baja.sys.BInterface;
|
||||
import javax.baja.sys.Sys;
|
||||
import javax.baja.sys.Type;
|
||||
|
||||
public interface BIDataRecoverySource
|
||||
extends BInterface {
|
||||
public static final Type TYPE;
|
||||
|
||||
public BOrd getOrdInSession() throws Exception;
|
||||
|
||||
public boolean dataRecoveryRestore(IDataRecoveryRecord var1) throws Exception;
|
||||
|
||||
public void dataRecoveryRestoreComplete();
|
||||
|
||||
public void dataRecoverySpy(SpyWriter var1, Iterator var2) throws Exception;
|
||||
|
||||
static {
|
||||
Class clazz = 1.class$javax$baja$dataRecovery$BIDataRecoverySource;
|
||||
if (clazz == null) {
|
||||
clazz = 1.class$javax$baja$dataRecovery$BIDataRecoverySource = 1.class("[Ljavax.baja.dataRecovery.BIDataRecoverySource;", false);
|
||||
}
|
||||
TYPE = Sys.loadType(clazz);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package javax.baja.dataRecovery;
|
||||
|
||||
import javax.baja.dataRecovery.BIDataRecoveryService;
|
||||
import javax.baja.sys.BIService;
|
||||
import javax.baja.sys.Sys;
|
||||
import javax.baja.sys.Type;
|
||||
|
||||
public interface BIDataRecoverySourceService
|
||||
extends BIService {
|
||||
public static final Type TYPE;
|
||||
|
||||
public void initDataRecoverySource(BIDataRecoveryService var1);
|
||||
|
||||
static {
|
||||
Class clazz = 1.class$javax$baja$dataRecovery$BIDataRecoverySourceService;
|
||||
if (clazz == null) {
|
||||
clazz = 1.class$javax$baja$dataRecovery$BIDataRecoverySourceService = 1.class("[Ljavax.baja.dataRecovery.BIDataRecoverySourceService;", false);
|
||||
}
|
||||
TYPE = Sys.loadType(clazz);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package javax.baja.dataRecovery;
|
||||
|
||||
import javax.baja.sys.BajaRuntimeException;
|
||||
|
||||
public class DataRecoveryException
|
||||
extends BajaRuntimeException {
|
||||
public DataRecoveryException(String string, Throwable throwable) {
|
||||
super(string, throwable);
|
||||
}
|
||||
|
||||
public DataRecoveryException(Throwable throwable) {
|
||||
super(throwable);
|
||||
}
|
||||
|
||||
public DataRecoveryException(String string) {
|
||||
super(string);
|
||||
}
|
||||
|
||||
public DataRecoveryException() {
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package javax.baja.dataRecovery;
|
||||
|
||||
import javax.baja.dataRecovery.DataRecoveryException;
|
||||
|
||||
public class DataRecoveryInvalidKeyException
|
||||
extends DataRecoveryException {
|
||||
public DataRecoveryInvalidKeyException() {
|
||||
}
|
||||
|
||||
public DataRecoveryInvalidKeyException(String string) {
|
||||
super(string);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package javax.baja.dataRecovery;
|
||||
|
||||
import javax.baja.dataRecovery.DataRecoveryException;
|
||||
|
||||
public class DataRecoveryServiceInFaultException
|
||||
extends DataRecoveryException {
|
||||
public DataRecoveryServiceInFaultException() {
|
||||
}
|
||||
|
||||
public DataRecoveryServiceInFaultException(String string) {
|
||||
super(string);
|
||||
}
|
||||
|
||||
public DataRecoveryServiceInFaultException(String string, Throwable throwable) {
|
||||
super(string, throwable);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package javax.baja.dataRecovery;
|
||||
|
||||
import javax.baja.dataRecovery.DataRecoveryException;
|
||||
|
||||
/*
|
||||
* Illegal identifiers - consider using --renameillegalidents true
|
||||
*/
|
||||
public class DataRecoveryTooLargeException
|
||||
extends DataRecoveryException {
|
||||
public int attemptedSize;
|
||||
public int maxSize;
|
||||
|
||||
private final /* synthetic */ void this() {
|
||||
this.attemptedSize = 0;
|
||||
this.maxSize = 0;
|
||||
}
|
||||
|
||||
public DataRecoveryTooLargeException(int n, int n2) {
|
||||
this.this();
|
||||
this.attemptedSize = n;
|
||||
this.maxSize = n2;
|
||||
}
|
||||
|
||||
public DataRecoveryTooLargeException(int n, int n2, String string) {
|
||||
super(string);
|
||||
this.this();
|
||||
this.attemptedSize = n;
|
||||
this.maxSize = n2;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package javax.baja.dataRecovery;
|
||||
|
||||
public interface IDataRecoveryRecord {
|
||||
public byte[] getData();
|
||||
|
||||
public byte[] getKey();
|
||||
|
||||
public byte getDataRecoverySourceIdentifier();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user