BUG-58: refactor to take advantage of netty
[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.pcep.object.PCEPCloseObject.Reason;
11
12 import com.google.common.base.Objects.ToStringHelper;
13
14 /**
15  * Used as a reason when one of the regular reasons was the cause of the
16  * termination of a session.
17  */
18 public final class PCEPCloseTermination extends PCEPTerminationReason {
19
20         private final Reason reason;
21
22         /**
23          * Creates new Termination.
24          * @param reason reason for termination
25          */
26         public PCEPCloseTermination(final Reason reason) {
27                 super();
28                 this.reason = reason;
29         }
30
31         /* (non-Javadoc)
32          * @see org.opendaylight.protocol.pcep.PCEPTerminationReason#getErrorMessage()
33          */
34         @Override
35         public String getErrorMessage() {
36                 return this.reason.toString();
37         }
38
39         @Override
40         protected ToStringHelper addToStringAttributes(final ToStringHelper toStringHelper) {
41                 return toStringHelper.add("reason", reason);
42
43         }
44 }