f8fbbe39791a32dd94b591768aed880f63741f74
[bgpcep.git] / pcep / api / src / main / java / org / opendaylight / protocol / pcep / PCEPCloseTermination.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. 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.protocol.pcep;
9
10 import org.opendaylight.protocol.framework.TerminationReason;
11 import org.opendaylight.protocol.pcep.object.PCEPCloseObject.Reason;
12
13 /**
14  * Used as a reason when one of the regular reasons was the cause of the
15  * termination of a session.
16  */
17 public final class PCEPCloseTermination implements TerminationReason {
18
19         private final Reason reason;
20
21         /**
22          * Creates new Termination.
23          * @param reason reason for termination
24          */
25         public PCEPCloseTermination(Reason reason) {
26                 this.reason = reason;
27         }
28
29         /* (non-Javadoc)
30          * @see org.opendaylight.protocol.pcep.PCEPTerminationReason#getErrorMessage()
31          */
32         @Override
33         public String getErrorMessage() {
34                 return this.reason.toString();
35         }
36
37 }