00001
00025 package org.objectweb.jonas_ejb.lib;
00026
00031 public class EjbqlLimiterRange {
00032
00036 public static final int KIND_NONE = -1;
00037
00041 public static final int KIND_LITERAL = 1;
00042
00046 public static final int KIND_PARAMETER = 2;
00047
00051 private int kind = KIND_NONE;
00052
00056 private int value;
00057
00063 public EjbqlLimiterRange(int kind, int value) {
00064 this.kind = kind;
00065 this.value = value;
00066 }
00067
00071 public int getKind() {
00072 return kind;
00073 }
00074
00078 public int getValue() {
00079 return value;
00080 }
00081
00082 }