Package de.fhkn.in.uce.directconnection.core

Examples of de.fhkn.in.uce.directconnection.core.DirectconnectionSource


     * {@link NATTraversalTechniqueMetaData}.
     */
    public Directconnection() {
        try {
            this.metaData = new DirectconnectionMetaData();
            this.source = new DirectconnectionSource();
            this.target = new DirectconnectionTarget();
        } catch (final Exception e) {
            logger.error("Exception occured while creating direct connection object.", e); //$NON-NLS-1$
            throw new RuntimeException("Could not create direct connection object.", e); //$NON-NLS-1$
        }
View Full Code Here


     *            the {@link Directconnection} to copy
     */
    public Directconnection(final Directconnection toCopy) {
        try {
            this.metaData = new DirectconnectionMetaData((DirectconnectionMetaData) toCopy.metaData);
            this.source = new DirectconnectionSource();
            this.target = new DirectconnectionTarget();
        } catch (final Exception e) {
            logger.error("Exception occured while creating direct connection object.", e); //$NON-NLS-1$
            throw new RuntimeException("Could not create direct connection object.", e); //$NON-NLS-1$
        }
View Full Code Here

TOP

Related Classes of de.fhkn.in.uce.directconnection.core.DirectconnectionSource

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.