1 23 package com.sun.enterprise.deployment; 24 25 import java.io.Serializable ; 26 27 33 34 public class TagLibConfigurationDescriptor implements Serializable { 35 private String uri; 36 private String location; 37 38 41 public TagLibConfigurationDescriptor() { 42 } 43 44 49 public TagLibConfigurationDescriptor(String uri, String location) { 50 this.uri = uri; 51 this.location = location; 52 } 53 54 58 public void setTagLibURI(String uri) { 59 this.uri = uri; 60 } 61 62 66 public String getTagLibURI() { 67 if (this.uri == null) { 68 this.uri = ""; 69 } 70 return this.uri; 71 } 72 73 77 public void setTagLibLocation(String location) { 78 this.location = location; 79 } 80 81 85 public String getTagLibLocation() { 86 if (this.location == null) { 87 this.location = ""; 88 } 89 return this.location; 90 } 91 92 95 public void print(StringBuffer toStringBuffer) { 96 toStringBuffer.append("TGLIB: ").append(uri).append(", ").append(location); 97 } 98 99 } 100 | Popular Tags |