client/src/main/java/org/apache/qpid/transport/StreamReturnCode.java [42:51]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    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);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



client/src/main/java/org/apache/qpid/transport/FileReturnCode.java [42:51]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static FileReturnCode 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);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



