1 package org.exoplatform.services.seo;
2
3 import java.util.ArrayList;
4 import java.util.List;
5
6 public class SEOConfig {
7 private List<String> robotsindex = new ArrayList<String>();
8 private List<String> robotsfollow = new ArrayList<String>();
9 private List<String> frequency = new ArrayList<String>();
10
11 public List<String> getRobotsIndex () {
12 return robotsindex;
13 }
14 public void setRobotsIndex(List<String> robotsindex_) {
15 this.robotsindex = robotsindex_;
16 }
17
18 public List<String> getRobotsFollow() {
19 return robotsfollow;
20 }
21 public void setRobotsFollow(List<String> robotsfollow_) {
22 this.robotsfollow = robotsfollow_;
23 }
24
25 public List<String> getFrequency() {
26 return frequency;
27 }
28 public void setFrequency(List<String> frequency_) {
29 this.frequency = frequency_;
30 }
31 }