1 23 24 25 package com.sun.enterprise.deployment.runtime; 26 27 import com.sun.enterprise.deployment.Descriptor; 28 29 public class IASEjbCMPFinder extends Descriptor { 30 31 private String method_name = null; 32 private String query_params = null; 33 private String query_filter = null; 34 private String query_variables = null; 35 private String query_ordering = null; 36 37 public IASEjbCMPFinder () { 38 } 39 40 public IASEjbCMPFinder(String method_name, String params, String filter) { 41 this.method_name = method_name; 42 this.query_params = params; 43 this.query_filter = filter; 44 this.query_variables = ""; 45 } 46 47 public IASEjbCMPFinder(String method_name, String params, String filter, String variables) { 48 this.method_name = method_name; 49 this.query_params = params; 50 this.query_filter = filter; 51 this.query_variables = variables; 52 } 53 54 public String getMethodName() { 55 return method_name; 56 } 57 58 public String getQueryParameterDeclaration() { 59 return query_params; 60 } 61 62 public String getQueryFilter() { 63 return query_filter; 64 } 65 66 public String getQueryVariables() { 67 return query_variables; 68 } 69 70 public void setMethodName(String name) { 71 method_name = name; 72 } 73 74 public void setQueryParameterDeclaration(String qry) { 75 query_params = qry; 76 } 77 78 public void setQueryVariables(String qryvariables) { 79 query_variables = qryvariables; 80 } 81 82 public void setQueryFilter(String qryfilter) { 83 query_filter = qryfilter; 84 } 85 86 public String getQueryOrdering() { 87 return query_ordering; 88 } 89 90 public void setQueryOrdering(String qryordering) { 91 query_ordering = qryordering; 92 } 93 } 94 95 | Popular Tags |