1 16 package com.blandware.atleap.model.core; 17 18 19 46 public class ContentPage extends Page { 47 48 50 53 protected Layout layout = null; 54 58 protected Long cacheMaxAge = null; 59 60 62 69 public Layout getLayout() { 70 return layout; 71 } 72 73 78 public void setLayout(Layout layout) { 79 this.layout = layout; 80 } 81 82 92 public Long getCacheMaxAge() { 93 return cacheMaxAge; 94 } 95 96 102 public void setCacheMaxAge(Long cacheMaxAge) { 103 this.cacheMaxAge = cacheMaxAge; 104 } 105 106 } 107 | Popular Tags |