Skip to content

Commit

Permalink
Merge pull request #301 from finos/main-6.2
Browse files Browse the repository at this point in the history
[*] remove snmp from client
  • Loading branch information
alex-karpovich authored Dec 3, 2024
2 parents e1d61cb + f6c08b0 commit 1c62cce
Show file tree
Hide file tree
Showing 17 changed files with 12 additions and 354 deletions.
7 changes: 6 additions & 1 deletion java/timebase/commons/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Timebase Commons Server API Library"

dependencies {
api project(':java:timebase:pub')
api project(':java:timebase:snmpagent')
//implementation project(':java:timebase:snmpagent')

api ('com.epam.deltix:timebase-lang')
api ('com.epam.deltix:timebase-util')
Expand Down Expand Up @@ -37,6 +37,11 @@ dependencies {

implementation 'com.github.sarxos:windows-registry-util:0.3'

implementation 'com.bettercloud:vault-java-driver'

implementation 'com.azure:azure-identity'
implementation 'com.azure:azure-security-keyvault-secrets'

implementation 'com.epam.deltix:gflog-api',
'com.epam.deltix:gflog-core',
'com.epam.deltix:gflog-jul',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,10 @@
import com.epam.deltix.qsrv.config.QuantServiceConfig.Type;
import com.epam.deltix.qsrv.config.ServiceExecutor;
import com.epam.deltix.qsrv.util.servlet.AccessFilter;
import com.epam.deltix.snmp.QuantServerSnmpObjectContainer;
import com.epam.deltix.snmp.SNMPTransportFactory;
import com.epam.deltix.qsrv.util.tomcat.DXTomcat;
import com.epam.deltix.util.collections.generated.ObjectArrayList;
import com.epam.deltix.util.io.Home;
import com.epam.deltix.util.lang.Util;
import com.epam.deltix.util.tomcat.ConnectionHandshakeHandler;
import org.apache.catalina.Context;
import org.apache.catalina.LifecycleException;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
*/
package com.epam.deltix.qsrv.config;

import com.epam.deltix.snmp.QuantServerSnmpObjectContainer;
import org.apache.catalina.Context;

import java.io.Closeable;
Expand All @@ -35,10 +34,10 @@ public interface ServiceExecutor extends Closeable {
*/
void configure(Context context);

/**
* Implementors for this method may put own SNMP data objects into provided {@code snmpContextHolder}.
* @param snmpContextHolder container for SNMP data objects
*/
default void registerSnmpObjects(QuantServerSnmpObjectContainer snmpContextHolder) {
}
// /**
// * Implementors for this method may put own SNMP data objects into provided {@code snmpContextHolder}.
// * @param snmpContextHolder container for SNMP data objects
// */
// default void registerSnmpObjects(QuantServerSnmpObjectContainer snmpContextHolder) {
// }
}

This file was deleted.

This file was deleted.

Loading

0 comments on commit 1c62cce

Please sign in to comment.