1 5 6 13 package org.exoplatform.services.portletcontainer.pci; 14 15 public class RenderOutput extends Output { 16 17 private String title; 18 private char[] content; 19 private boolean cacheHit = true; 20 21 public String getTitle() { 22 return title; 23 } 24 25 public void setTitle(String title) { 26 this.title = title; 27 } 28 29 public char[] getContent() { 30 return content; 31 } 32 33 public void setContent(char[] content) { 34 this.content = content; 35 } 36 37 public boolean isCacheHit() { 38 return cacheHit; 39 } 40 41 public void setCacheHit(boolean cacheHit) { 42 this.cacheHit = cacheHit; 43 } 44 45 } 46 | Popular Tags |