1 package org.jahia.engines.deletecontainer; 2 3 import java.io.*; 4 5 12 13 public class HardcodedLinkSourceInfo implements Serializable { 14 private String objectType = ""; 15 private String objectSubType = ""; 16 private String name = ""; 17 private String title = ""; 18 private int pageID = -1; 19 private String pageURL = ""; 20 private String ID = ""; 21 22 public HardcodedLinkSourceInfo () { 23 } 24 25 public String getObjectType () { 26 return objectType; 27 } 28 29 public void setObjectType (String objectType) { 30 this.objectType = objectType; 31 } 32 33 public String getObjectSubType () { 34 return objectSubType; 35 } 36 37 public void setObjectSubType (String objectSubType) { 38 this.objectSubType = objectSubType; 39 } 40 41 public String getName () { 42 return name; 43 } 44 45 public void setName (String name) { 46 this.name = name; 47 } 48 49 public String getTitle () { 50 return title; 51 } 52 53 public void setTitle (String title) { 54 this.title = title; 55 } 56 57 public int getPageID () { 58 return pageID; 59 } 60 61 public void setPageID (int pageID) { 62 this.pageID = pageID; 63 } 64 65 public String getPageURL () { 66 return pageURL; 67 } 68 69 public void setPageURL (String pageURL) { 70 this.pageURL = pageURL; 71 } 72 73 public String getID () { 74 return ID; 75 } 76 77 public void setID (String ID) { 78 this.ID = ID; 79 } 80 81 private void writeObject (ObjectOutputStream oos) throws IOException { 82 oos.defaultWriteObject (); 83 } 84 85 private void readObject (ObjectInputStream ois) throws ClassNotFoundException , IOException { 86 ois.defaultReadObject (); 87 } 88 89 } | Popular Tags |