2 * Copyright (C) 2014 Red Hat, Inc. and others. All rights reserved.
4 * This program and the accompanying materials are made available under the
5 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 * and is available at http://www.eclipse.org/legal/epl-v10.html
9 package org.opendaylight.netvirt.openstack.netvirt.translator.iaware;
11 import org.opendaylight.netvirt.openstack.netvirt.translator.NeutronSecurityRule;
14 * This interface defines the methods required to be aware of Neutron Security Rules
17 public interface INeutronSecurityRuleAware {
20 * Services provide this interface method to indicate if the specified security rule can be created
22 * @param securityRule instance of proposed new Neutron Security Rule object
24 * the return value is understood to be a HTTP status code. A return value outside of 200 through 299
25 * results in the create operation being interrupted and the returned status value reflected in the
28 int canCreateNeutronSecurityRule(NeutronSecurityRule securityRule);
31 * Services provide this interface method for taking action after a security rule has been created
33 * @param securityRule instance of new Neutron Security Rule object
35 void neutronSecurityRuleCreated(NeutronSecurityRule securityRule);
38 * Services provide this interface method to indicate if the specified security rule can be changed using the specified
41 * @param delta updates to the security rule object using patch semantics
42 * @param original instance of the Neutron Security Rule object to be updated
44 * the return value is understood to be a HTTP status code. A return value outside of 200 through 299
45 * results in the update operation being interrupted and the returned status value reflected in the
48 int canUpdateNeutronSecurityRule(NeutronSecurityRule delta, NeutronSecurityRule original);
51 * Services provide this interface method for taking action after a security rule has been updated
53 * @param securityRule instance of modified Neutron Security Rule object
55 void neutronSecurityRuleUpdated(NeutronSecurityRule securityRule);
58 * Services provide this interface method to indicate if the specified security rule can be deleted
60 * @param securityRule instance of the Neutron Security Rule object to be deleted
62 * the return value is understood to be a HTTP status code. A return value outside of 200 through 299
63 * results in the delete operation being interrupted and the returned status value reflected in the
66 int canDeleteNeutronSecurityRule(NeutronSecurityRule securityRule);
69 * Services provide this interface method for taking action after a security rule has been deleted
71 * @param securityRule instance of deleted Neutron Security Rule object
73 void neutronSecurityRuleDeleted(NeutronSecurityRule securityRule);