1 /* 2 * Copyright 2008 FatWire Corporation. All Rights Reserved. 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.fatwire.gst.foundation.facade.fsii; 18 19 /** 20 * Value object to hold data that typically is found in the HTML HEAD tag. 21 * 22 * @author Tony Field 23 * @since Nov 17, 2009 24 */ 25 public final class HeadTagData { 26 private String title; 27 private String keywords; 28 private String description; 29 30 public String getTitle() { 31 return title; 32 } 33 34 public void setTitle(String title) { 35 this.title = title; 36 } 37 38 public String getKeywords() { 39 return keywords; 40 } 41 42 public void setKeywords(String keywords) { 43 this.keywords = keywords; 44 } 45 46 public String getDescription() { 47 return description; 48 } 49 50 public void setDescription(String description) { 51 this.description = description; 52 } 53 }