Example usage for org.apache.commons.configuration XMLConfiguration clone

List of usage examples for org.apache.commons.configuration XMLConfiguration clone

Introduction

In this page you can find the example usage for org.apache.commons.configuration XMLConfiguration clone.

Prototype

public Object clone() 

Source Link

Document

Creates a copy of this object.

Usage

From source file:org.apache.qpid.server.store.berkeleydb.HATestClusterCreator.java

private void collectConfig(final int brokerPortNumber, TestBrokerConfiguration testConfiguration,
        XMLConfiguration testVirtualhosts) {
    _brokerConfigurations.put(brokerPortNumber,
            new BrokerConfigHolder(testConfiguration, (XMLConfiguration) testVirtualhosts.clone()));
}