1b5d128005ff76d94df3619231455e852da61496
[controller.git] / opendaylight / blueprint / src / main / java / org / opendaylight / controller / blueprint / ext / UpdateStrategy.java
1 /*
2  * Copyright (c) 2016 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
3  *
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
7  */
8 package org.opendaylight.controller.blueprint.ext;
9
10 /**
11  * Enumerates possible strategies when a component is updated
12  *
13  * @author Vishal Thapar
14  */
15 public enum UpdateStrategy {
16     /*
17      * Restart container
18      */
19     RELOAD,
20     /*
21      * Don't do anything
22      */
23     NONE
24 }