/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* An AttachingConnector to attach to a running VM using any
* TransportService.
*/
public class GenericAttachingConnector
extends ConnectorImpl implements AttachingConnector
{
/*
* The arguments that this connector supports
*/
/*
* Initialize a new instance of this connector. The connector
* encapsulates a transport service and optionally has an
* "address" connector argument.
*/
boolean addAddressArgument)
{
// delegate name to the transport service
return transportService.name();
}
};
if (addAddressArgument) {
getString("generic_attaching.address.label"),
getString("generic_attaching.address"),
"",
true);
}
getString("generic_attaching.timeout.label"),
getString("generic_attaching.timeout"),
"",
false,
}
/**
* Initializes a new instance of this connector. This constructor
* is used when sub-classing - the resulting connector will have
* a "timeout" connector argument.
*/
this(ts, false);
}
/*
* Create an instance of this connector. The resulting AttachingConnector
* will have address and timeout connector arguments.
*/
return new GenericAttachingConnector(ts, true);
}
/**
* Attach to a target VM using the specified address and Connector arguments.
*/
{
int timeout = 0;
}
}
/**
* Attach to a target VM using the specified arguments - the address
* of the target VM is specified by the <code>address</code> connector
* argument.
*/
public VirtualMachine
{
}
}
return transportService.description();
}
return transport;
}
}