本文整理了Java中org.snmp4j.Snmp.addTransportMapping()
方法的一些代码示例,展示了Snmp.addTransportMapping()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Snmp.addTransportMapping()
方法的具体详情如下:
包路径:org.snmp4j.Snmp
类名称:Snmp
方法名:addTransportMapping
[英]Adds a TransportMapping
to this SNMP session.
[中]将TransportMapping
添加到此SNMP会话。
代码示例来源:origin: org.mobicents.tools.snmp.adaptor/core
private void initSession(){
this.session = new Snmp(dispatcher);
for (int i = 0; i < transportMappings.length;i++){
try{
session.addTransportMapping(transportMappings[i]);
}
catch(Exception e){
log.warn("Tranport mapping invalid. Failed to initialize mapping '"+
transportMappings[i]+"' with: "+e.getMessage());
}
}
this.session.addCommandResponder(responder);
}
代码示例来源:origin: org.jboss.jbossas/jboss-snmp
private void initSession(){
this.session = new Snmp(dispatcher);
for (int i = 0; i < transportMappings.length;i++){
try{
session.addTransportMapping(transportMappings[i]);
}
catch(Exception e){
log.warn("Tranport mapping invalid. Failed to initialize mapping '"+
transportMappings[i]+"' with: "+e.getMessage());
}
}
this.session.addCommandResponder(responder);
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.snmp4j
/**
* Creates a <code>Snmp</code> instance that uses a
* <code>MessageDispatcherImpl</code> with all supported message processing
* models and the default security protols for dispatching.
* <p>
* To initialize a <code>Snmp</code> instance created with this constructor
* follow this sample code:
* <pre>
* Transport transport = ...;
* Snmp snmp = new Snmp(transport);
* OctetString localEngineID =
* new OctetString(snmp.getMPv3().getLocalEngineID());
* USM usm = new USM(SecurityProtocols.getInstance(), localEngineID, 0);
* SecurityModels.getInstance().addSecurityModel(usm);
* snmp.listen();
* </pre>
*
* @param transportMapping TransportMapping
* the initial <code>TransportMapping</code>. You can add more or remove
* the same later.
*/
public Snmp(TransportMapping<? extends Address> transportMapping) {
this();
initMessageDispatcher();
if (transportMapping != null) {
addTransportMapping(transportMapping);
}
}
代码示例来源:origin: org.snmp4j/snmp4j
/**
* Creates a <code>Snmp</code> instance that uses a
* <code>MessageDispatcherImpl</code> with all supported message processing
* models and the default security protols for dispatching.
* <p>
* To initialize a <code>Snmp</code> instance created with this constructor
* follow this sample code:
* <pre>
* Transport transport = ...;
* Snmp snmp = new Snmp(transport);
* OctetString localEngineID =
* new OctetString(snmp.getMPv3().getLocalEngineID());
* USM usm = new USM(SecurityProtocols.getInstance(), localEngineID, 0);
* SecurityModels.getInstance().addSecurityModel(usm);
* snmp.listen();
* </pre>
*
* @param transportMapping
* TransportMapping
* the initial <code>TransportMapping</code>. You can add more or remove
* the same later.
*/
public Snmp(TransportMapping<? extends Address> transportMapping) {
this();
initMessageDispatcher();
if (transportMapping != null) {
addTransportMapping(transportMapping);
}
}
代码示例来源:origin: org.kaazing/snmp4j
/**
* Creates a <code>Snmp</code> instance that uses a
* <code>MessageDispatcherImpl</code> with all supported message processing
* models and the default security protols for dispatching.
* <p>
* To initialize a <code>Snmp</code> instance created with this constructor
* follow this sample code:
* <pre>
* Transport transport = ...;
* Snmp snmp = new Snmp(transport);
* OctetString localEngineID =
* new OctetString(snmp.getMPv3().getLocalEngineID());
* USM usm = new USM(SecurityProtocols.getInstance(), localEngineID, 0);
* SecurityModels.getInstance().addSecurityModel(usm);
* snmp.listen();
* </pre>
*
* @param transportMapping TransportMapping
* the initial <code>TransportMapping</code>. You can add more or remove
* the same later.
*/
public Snmp(TransportMapping transportMapping) {
this();
initMessageDispatcher();
if (transportMapping != null) {
addTransportMapping(transportMapping);
}
}
代码示例来源:origin: org.kaazing/snmp4j
this.messageDispatcher.addCommandResponder(this);
if (transportMapping != null) {
addTransportMapping(transportMapping);
代码示例来源:origin: org.kaazing/snmp4j-agent
protected void initSnmpSession() {
session = new Snmp(dispatcher);
for (int i=0; i<transportMappings.length; i++) {
try {
session.addTransportMapping(transportMappings[i]);
}
catch (Exception ex) {
logger.warn("Failed to initialize transport mapping '"+
transportMappings[i]+"' with: "+ex.getMessage());
}
}
updateSession(session);
}
代码示例来源:origin: org.snmp4j/snmp4j-agent
protected void initSnmpSession() {
session = new Snmp(dispatcher);
for (TransportMapping<? extends Address> transportMapping : transportMappings) {
try {
session.addTransportMapping(transportMapping);
} catch (Exception ex) {
logger.warn("Failed to initialize transport mapping '" +
transportMapping + "' with: " + ex.getMessage());
}
}
updateSession(session);
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.snmp4j
/**
* Sets the message dispatcher associated with this SNMP session. The {@link CommandResponder} registration is
* removed from the existing message dispatcher (if not {@code null}).
* @param messageDispatcher
* a message dispatcher that processes incoming SNMP {@link PDU}s.
* @since 2.5.7
*/
public void setMessageDispatcher(MessageDispatcher messageDispatcher) {
if (messageDispatcher == null) {
throw new NullPointerException();
}
Collection<TransportMapping> existingTransportMappings = new LinkedList<TransportMapping>();
if (this.messageDispatcher != null) {
existingTransportMappings = messageDispatcher.getTransportMappings();
for (TransportMapping tm : existingTransportMappings) {
removeTransportMapping(tm);
}
this.messageDispatcher.removeCommandResponder(this);
}
this.messageDispatcher = messageDispatcher;
this.messageDispatcher.addCommandResponder(this);
for (TransportMapping tm : existingTransportMappings) {
addTransportMapping(tm);
}
}
代码示例来源:origin: org.snmp4j/snmp4j
/**
* Sets the message dispatcher associated with this SNMP session. The {@link CommandResponder} registration is
* removed from the existing message dispatcher (if not {@code null}).
*
* @param messageDispatcher
* a message dispatcher that processes incoming SNMP {@link PDU}s.
*
* @since 2.5.7
*/
@SuppressWarnings("unchecked")
public void setMessageDispatcher(MessageDispatcher messageDispatcher) {
if (messageDispatcher == null) {
throw new NullPointerException();
}
Collection<TransportMapping<? extends Address>> existingTransportMappings = new LinkedList<>();
if (this.messageDispatcher != null) {
existingTransportMappings = messageDispatcher.getTransportMappings();
for (TransportMapping<?> tm : existingTransportMappings) {
removeTransportMapping(tm);
}
this.messageDispatcher.removeCommandResponder(this);
}
this.messageDispatcher = messageDispatcher;
this.messageDispatcher.addCommandResponder(this);
for (TransportMapping<?> tm : existingTransportMappings) {
addTransportMapping(tm);
}
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.snmp4j
this.messageDispatcher.addCommandResponder(this);
if (transportMapping != null) {
addTransportMapping(transportMapping);
代码示例来源:origin: org.snmp4j/snmp4j
this.messageDispatcher.addCommandResponder(this);
if (transportMapping != null) {
addTransportMapping(transportMapping);
内容来源于网络,如有侵权,请联系作者删除!