org.apache.catalina.connector.Connector.getInfo()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(5.7k)|赞(0)|评价(0)|浏览(140)

本文整理了Java中org.apache.catalina.connector.Connector.getInfo()方法的一些代码示例,展示了Connector.getInfo()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Connector.getInfo()方法的具体详情如下:
包路径:org.apache.catalina.connector.Connector
类名称:Connector
方法名:getInfo

Connector.getInfo介绍

[英]Return descriptive information about this Connector implementation.
[中]

代码示例

代码示例来源:origin: tomcat/catalina

/**
 * Add a new Connector to the set of defined Connectors.  The newly
 * added Connector will be associated with the most recently added Engine.
 *
 * @param connector The connector to be added
 *
 * @exception IllegalStateException if no engines have been added yet
 */
public synchronized void addConnector(Connector connector) {
  if( log.isDebugEnabled() ) {
    log.debug("Adding connector (" + connector.getInfo() + ")");
  }
  // Make sure we have a Container to send requests to
  if (engines.length < 1)
    throw new IllegalStateException
      (sm.getString("embedded.noEngines"));
  /*
   * Add the connector. This will set the connector's container to the
   * most recently added Engine
   */
  super.addConnector(connector);
}

代码示例来源:origin: jboss.web/jbossweb

/**
 * Add a new Connector to the set of defined Connectors.  The newly
 * added Connector will be associated with the most recently added Engine.
 *
 * @param connector The connector to be added
 *
 * @exception IllegalStateException if no engines have been added yet
 */
public synchronized void addConnector(Connector connector) {
  if( log.isDebugEnabled() ) {
    log.debug("Adding connector (" + connector.getInfo() + ")");
  }
  // Make sure we have a Container to send requests to
  if (engines.length < 1)
    throw new IllegalStateException
      (sm.getString("embedded.noEngines"));
  /*
   * Add the connector. This will set the connector's container to the
   * most recently added Engine
   */
  super.addConnector(connector);
}

代码示例来源:origin: org.mobicents.arquillian.container/mss-tomcat-embedded-6

@Override
public synchronized void addConnector(Connector connector) {
  if( log.isDebugEnabled() ) {
    log.debug("Adding connector (" + connector.getInfo() + ")");
  }
  // Make sure we have a Container to send requests to
  if (engines.length < 1)
    throw new IllegalStateException
      (sm.getString("embedded.noEngines"));
  /*
   * Add the connector. This will set the connector's container to the
   * most recently added Engine
   */
  service.addConnector(connector);
}

代码示例来源:origin: org.apache.geronimo.ext.tomcat/catalina

/**
 * Add a new Connector to the set of defined Connectors.  The newly
 * added Connector will be associated with the most recently added Engine.
 *
 * @param connector The connector to be added
 *
 * @exception IllegalStateException if no engines have been added yet
 */
@Override
public synchronized void addConnector(Connector connector) {
  if( log.isDebugEnabled() ) {
    log.debug("Adding connector (" + connector.getInfo() + ")");
  }
  // Make sure we have a Container to send requests to
  if (engines.length < 1)
    throw new IllegalStateException
      (sm.getString("embedded.noEngines"));
  /*
   * Add the connector. This will set the connector's container to the
   * most recently added Engine
   */
  super.addConnector(connector);
}

代码示例来源:origin: org.apache.catalina/com.springsource.org.apache.catalina

/**
 * Add a new Connector to the set of defined Connectors.  The newly
 * added Connector will be associated with the most recently added Engine.
 *
 * @param connector The connector to be added
 *
 * @exception IllegalStateException if no engines have been added yet
 */
@Override
public synchronized void addConnector(Connector connector) {
  if( log.isDebugEnabled() ) {
    log.debug("Adding connector (" + connector.getInfo() + ")");
  }
  // Make sure we have a Container to send requests to
  if (engines.length < 1)
    throw new IllegalStateException
      (sm.getString("embedded.noEngines"));
  /*
   * Add the connector. This will set the connector's container to the
   * most recently added Engine
   */
  super.addConnector(connector);
}

代码示例来源:origin: com.ovea.tajin.server/tajin-server-tomcat7

/**
 * Add a new Connector to the set of defined Connectors.  The newly
 * added Connector will be associated with the most recently added Engine.
 *
 * @param connector The connector to be added
 *
 * @exception IllegalStateException if no engines have been added yet
 */
@Override
public synchronized void addConnector(Connector connector) {
  if( log.isDebugEnabled() ) {
    log.debug("Adding connector (" + connector.getInfo() + ")");
  }
  // Make sure we have a Container to send requests to
  if (engines.length < 1)
    throw new IllegalStateException
      (sm.getString("embedded.noEngines"));
  /*
   * Add the connector. This will set the connector's container to the
   * most recently added Engine
   */
  super.addConnector(connector);
}

代码示例来源:origin: com.ovea.tajin.server/tajin-server-jetty9

/**
 * Add a new Connector to the set of defined Connectors.  The newly
 * added Connector will be associated with the most recently added Engine.
 *
 * @param connector The connector to be added
 *
 * @exception IllegalStateException if no engines have been added yet
 */
@Override
public synchronized void addConnector(Connector connector) {
  if( log.isDebugEnabled() ) {
    log.debug("Adding connector (" + connector.getInfo() + ")");
  }
  // Make sure we have a Container to send requests to
  if (engines.length < 1)
    throw new IllegalStateException
      (sm.getString("embedded.noEngines"));
  /*
   * Add the connector. This will set the connector's container to the
   * most recently added Engine
   */
  super.addConnector(connector);
}

代码示例来源:origin: com.ovea.tajin.servers/tajin-server-jetty9

/**
 * Add a new Connector to the set of defined Connectors.  The newly
 * added Connector will be associated with the most recently added Engine.
 *
 * @param connector The connector to be added
 *
 * @exception IllegalStateException if no engines have been added yet
 */
@Override
public synchronized void addConnector(Connector connector) {
  if( log.isDebugEnabled() ) {
    log.debug("Adding connector (" + connector.getInfo() + ")");
  }
  // Make sure we have a Container to send requests to
  if (engines.length < 1)
    throw new IllegalStateException
      (sm.getString("embedded.noEngines"));
  /*
   * Add the connector. This will set the connector's container to the
   * most recently added Engine
   */
  super.addConnector(connector);
}

相关文章

Connector类方法