1 7 8 package org.jboss.portal.server.theme.strategy; 9 10 import org.jboss.portal.common.MediaType; 11 12 20 public abstract class AbstractLayoutStrategy implements LayoutStrategy 21 { 22 private MediaType mediaType = null; 23 private String name = null; 24 private String appName = null; 25 26 public AbstractLayoutStrategy() 27 { 28 } 29 30 35 public void setMediaType(MediaType mediaType) 36 { 37 this.mediaType = mediaType; 38 } 39 40 45 public MediaType getMediaType() 46 { 47 return mediaType; 48 } 49 50 55 public String getName() 56 { 57 return name; 58 } 59 60 65 public void setName(String name) 66 { 67 this.name = name; 68 } 69 70 75 public String getAppName() 76 { 77 return appName; 78 } 79 80 85 public void setAppName(String appName) 86 { 87 this.appName = appName; 88 } 89 } 90 | Popular Tags |