| 1 20 package org.openi.mondrian.schema; 21 22 public class HierarchyGrant { 23 private String hierarchy; 24 private String access; 25 private String topLevel; 26 27 public HierarchyGrant() { 28 try { 29 jbInit(); 30 } catch (Exception ex) { 31 ex.printStackTrace(); 32 } 33 } 34 35 private void jbInit() throws Exception { 36 } 37 38 public void setHierarchy(String hierarchy) { 39 this.hierarchy = hierarchy; 40 } 41 42 public void setAccess(String access) { 43 this.access = access; 44 } 45 46 public void setTopLevel(String topLevel) { 47 this.topLevel = topLevel; 48 } 49 50 public String getHierarchy() { 51 return hierarchy; 52 } 53 54 public String getAccess() { 55 return access; 56 } 57 58 public String getTopLevel() { 59 return topLevel; 60 } 61 } 62 | Popular Tags |