/******************************************************************************* * Copyright (c) 2004, 2007-2008 IBM Corporation and Cambridge Semantics Incorporated. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * File: $Source$ * Created by: Generated Source from org.openanzo.jdbc.utils.opgen.jet * Created on: Generated Source from org.openanzo.jdbc.utils.opgen.jet * Revision: $Id$ * * Contributors: * IBM Corporation - initial API and implementation * Cambridge Semantics Incorporated - Fork to Anzo *******************************************************************************/ package org.openanzo.ontologies.system; /** * Implementations of this listener may be registered with instances of org.openanzo.ontologies.system.NetworkConnection to * receive notification when properties changed, added or removed. * <br> */ public interface NetworkConnectionListener extends org.openanzo.rdf.jastor.ThingListener { /** * Called when host has changed * @param source the affected instance of org.openanzo.ontologies.system.NetworkConnection */ public void hostChanged(org.openanzo.ontologies.system.NetworkConnection source); /** * Called when keystoreFile has changed * @param source the affected instance of org.openanzo.ontologies.system.NetworkConnection */ public void keystoreFileChanged(org.openanzo.ontologies.system.NetworkConnection source); /** * Called when keystorePassword has changed * @param source the affected instance of org.openanzo.ontologies.system.NetworkConnection */ public void keystorePasswordChanged(org.openanzo.ontologies.system.NetworkConnection source); /** * Called when keystoreType has changed * @param source the affected instance of org.openanzo.ontologies.system.NetworkConnection */ public void keystoreTypeChanged(org.openanzo.ontologies.system.NetworkConnection source); /** * Called when port has changed * @param source the affected instance of org.openanzo.ontologies.system.NetworkConnection */ public void portChanged(org.openanzo.ontologies.system.NetworkConnection source); /** * Called when timeout has changed * @param source the affected instance of org.openanzo.ontologies.system.NetworkConnection */ public void timeoutChanged(org.openanzo.ontologies.system.NetworkConnection source); /** * Called when truststoreFile has changed * @param source the affected instance of org.openanzo.ontologies.system.NetworkConnection */ public void truststoreFileChanged(org.openanzo.ontologies.system.NetworkConnection source); /** * Called when truststorePassword has changed * @param source the affected instance of org.openanzo.ontologies.system.NetworkConnection */ public void truststorePasswordChanged(org.openanzo.ontologies.system.NetworkConnection source); /** * Called when truststoreType has changed * @param source the affected instance of org.openanzo.ontologies.system.NetworkConnection */ public void truststoreTypeChanged(org.openanzo.ontologies.system.NetworkConnection source); /** * Called when useSsl has changed * @param source the affected instance of org.openanzo.ontologies.system.NetworkConnection */ public void useSslChanged(org.openanzo.ontologies.system.NetworkConnection source); }