1 21 package com.jaspersoft.jasperserver.util; 22 23 27 28 public class OlapUnitBean extends ResourceBean { 29 30 private String mdxQuery; 31 private OlapClientConnectionBean olapClientConnection; 32 33 public String getMdxQuery() { 34 return mdxQuery; 35 } 36 37 public void setMdxQuery(String mdxQuery) { 38 this.mdxQuery = mdxQuery; 39 } 40 41 public OlapClientConnectionBean getOlapClientConnection() { 42 return olapClientConnection; 43 } 44 45 public void setOlapClientConnection(OlapClientConnectionBean olapClientConnection) { 46 this.olapClientConnection = olapClientConnection; 47 } 48 } 49 | Popular Tags |