1 25 package org.objectweb.jonas_ejb.lib; 26 27 31 public class EjbqlLimiterRange { 32 33 36 public static final int KIND_NONE = -1; 37 38 41 public static final int KIND_LITERAL = 1; 42 43 46 public static final int KIND_PARAMETER = 2; 47 48 51 private int kind = KIND_NONE; 52 53 56 private int value; 57 58 63 public EjbqlLimiterRange(int kind, int value) { 64 this.kind = kind; 65 this.value = value; 66 } 67 68 71 public int getKind() { 72 return kind; 73 } 74 75 78 public int getValue() { 79 return value; 80 } 81 82 } | Popular Tags |