X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=opendaylight%2Fnetworkconfiguration%2Fneutron%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetworkconfig%2Fneutron%2FINeutronPortAware.java;h=3f40ba3879a84a2b8aa517f0baad66e2cf0c1672;hb=7e24111a0842d66187c752022aa975c411b42cca;hp=36ed4ffb39ec12f82bb0cf38e1ab1bb7f813532e;hpb=e40d69673c2529d99069a8a0bafb152a1c11c41a;p=controller.git diff --git a/opendaylight/networkconfiguration/neutron/src/main/java/org/opendaylight/controller/networkconfig/neutron/INeutronPortAware.java b/opendaylight/networkconfiguration/neutron/src/main/java/org/opendaylight/controller/networkconfig/neutron/INeutronPortAware.java index 36ed4ffb39..3f40ba3879 100644 --- a/opendaylight/networkconfiguration/neutron/src/main/java/org/opendaylight/controller/networkconfig/neutron/INeutronPortAware.java +++ b/opendaylight/networkconfiguration/neutron/src/main/java/org/opendaylight/controller/networkconfig/neutron/INeutronPortAware.java @@ -1,83 +1,83 @@ -/* - * Copyright IBM Corporation, 2013. 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 - */ - -package org.opendaylight.controller.networkconfig.neutron; - -/** - * This interface defines the methods a service that wishes to be aware of Neutron Ports needs to implement - * - */ - -public interface INeutronPortAware { - - /** - * Services provide this interface method to indicate if the specified port can be created - * - * @param port - * instance of proposed new Neutron Port object - * @return integer - * the return value is understood to be a HTTP status code. A return value outside of 200 through 299 - * results in the create operation being interrupted and the returned status value reflected in the - * HTTP response. - */ - public int canCreatePort(NeutronPort port); - - /** - * Services provide this interface method for taking action after a port has been created - * - * @param port - * instance of new Neutron Port object - * @return void - */ - public void neutronPortCreated(NeutronPort port); - - /** - * Services provide this interface method to indicate if the specified port can be changed using the specified - * delta - * - * @param delta - * updates to the port object using patch semantics - * @param port - * instance of the Neutron Port object to be updated - * @return integer - * the return value is understood to be a HTTP status code. A return value outside of 200 through 299 - * results in the update operation being interrupted and the returned status value reflected in the - * HTTP response. - */ - public int canUpdatePort(NeutronPort delta, NeutronPort original); - - /** - * Services provide this interface method for taking action after a port has been updated - * - * @param port - * instance of modified Neutron Port object - * @return void - */ - public void neutronPortUpdated(NeutronPort port); - - /** - * Services provide this interface method to indicate if the specified port can be deleted - * - * @param port - * instance of the Neutron Port object to be deleted - * @return integer - * the return value is understood to be a HTTP status code. A return value outside of 200 through 299 - * results in the delete operation being interrupted and the returned status value reflected in the - * HTTP response. - */ - public int canDeletePort(NeutronPort port); - - /** - * Services provide this interface method for taking action after a port has been deleted - * - * @param port - * instance of deleted Port Network object - * @return void - */ - public void neutronPortDeleted(NeutronPort port); -} +/* + * Copyright IBM Corporation, 2013. 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 + */ + +package org.opendaylight.controller.networkconfig.neutron; + +/** + * This interface defines the methods a service that wishes to be aware of Neutron Ports needs to implement + * + */ + +public interface INeutronPortAware { + + /** + * Services provide this interface method to indicate if the specified port can be created + * + * @param port + * instance of proposed new Neutron Port object + * @return integer + * the return value is understood to be a HTTP status code. A return value outside of 200 through 299 + * results in the create operation being interrupted and the returned status value reflected in the + * HTTP response. + */ + public int canCreatePort(NeutronPort port); + + /** + * Services provide this interface method for taking action after a port has been created + * + * @param port + * instance of new Neutron Port object + * @return void + */ + public void neutronPortCreated(NeutronPort port); + + /** + * Services provide this interface method to indicate if the specified port can be changed using the specified + * delta + * + * @param delta + * updates to the port object using patch semantics + * @param port + * instance of the Neutron Port object to be updated + * @return integer + * the return value is understood to be a HTTP status code. A return value outside of 200 through 299 + * results in the update operation being interrupted and the returned status value reflected in the + * HTTP response. + */ + public int canUpdatePort(NeutronPort delta, NeutronPort original); + + /** + * Services provide this interface method for taking action after a port has been updated + * + * @param port + * instance of modified Neutron Port object + * @return void + */ + public void neutronPortUpdated(NeutronPort port); + + /** + * Services provide this interface method to indicate if the specified port can be deleted + * + * @param port + * instance of the Neutron Port object to be deleted + * @return integer + * the return value is understood to be a HTTP status code. A return value outside of 200 through 299 + * results in the delete operation being interrupted and the returned status value reflected in the + * HTTP response. + */ + public int canDeletePort(NeutronPort port); + + /** + * Services provide this interface method for taking action after a port has been deleted + * + * @param port + * instance of deleted Port Network object + * @return void + */ + public void neutronPortDeleted(NeutronPort port); +}