Introduced neutron-mapper
[groupbasedpolicy.git] / neutron-mapper / src / main / java / org / opendaylight / groupbasedpolicy / neutron / mapper / mapping / StatusCode.java
1 package org.opendaylight.groupbasedpolicy.neutron.mapper.mapping;
2
3 /**
4  * HTTP status codes
5  */
6 public final class StatusCode {
7
8     public static final int OK = 200;
9     public static final int BAD_REQUEST = 400;
10     public static final int FORBIDDEN = 403;
11     public static final int NOT_FOUND = 404;
12     public static final int INTERNAL_SERVER_ERROR = 500;
13
14     private StatusCode() {
15         throw new UnsupportedOperationException("Cannot create an instance.");
16     }
17 }