37 lines
1001 B
Java
37 lines
1001 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* com.tridium.crypto.core.io.ICoreProviderInfo
|
|
* com.tridium.crypto.core.provider.IProvider
|
|
* javax.baja.sys.BComponent
|
|
*/
|
|
package com.tridium.platcrypto.fox;
|
|
|
|
import com.tridium.crypto.core.io.ICoreProviderInfo;
|
|
import com.tridium.crypto.core.provider.IProvider;
|
|
import com.tridium.platcrypto.core.IProviderInfo;
|
|
import com.tridium.platcrypto.fox.ChannelBase;
|
|
import java.util.Enumeration;
|
|
import javax.baja.sys.BComponent;
|
|
|
|
public class ChannelProviderInfo
|
|
extends ChannelBase
|
|
implements IProviderInfo,
|
|
ICoreProviderInfo {
|
|
public Enumeration providers() throws Exception {
|
|
this.checkChannel();
|
|
return this.channel.providerProviders();
|
|
}
|
|
|
|
public IProvider getProvider(String string) throws Exception {
|
|
this.checkChannel();
|
|
return this.channel.providerGetProvider(string);
|
|
}
|
|
|
|
public ChannelProviderInfo(BComponent bComponent) {
|
|
super(bComponent);
|
|
}
|
|
}
|
|
|