blob: 7a4e8c083bfba36c4cd2efec52ec1795dda6fe76 [file] [log] [blame]
package org.apache.qpid.transport;
/*
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
public enum StreamReturnCode {
CONTENT_TOO_LARGE((int) 311),
NO_ROUTE((int) 312),
NO_CONSUMERS((int) 313);
private final int value;
StreamReturnCode(int value)
{
this.value = value;
}
public int getValue()
{
return value;
}
public static StreamReturnCode get(int value)
{
switch (value)
{
case (int) 311: return CONTENT_TOO_LARGE;
case (int) 312: return NO_ROUTE;
case (int) 313: return NO_CONSUMERS;
default: throw new IllegalArgumentException("no such value: " + value);
}
}
}