1 23 24 31 package com.sun.enterprise.config.impl; 32 33 import java.io.Serializable ; 34 import java.util.HashMap ; 35 import java.util.Set ; 36 import java.util.Iterator ; 37 38 42 public abstract class ConfigChangeImpl implements com.sun.enterprise.config.ConfigChange, Serializable { 43 44 protected String xpath = null; protected String parentXpath = null; 46 47 48 private long _lastModified = -1; 49 55 56 59 public abstract String getConfigChangeType(); 60 public abstract String getName(); 61 62 65 public String getXPath() { 66 return this.xpath; 67 } 68 69 73 public String getParentXPath() { 74 return this.parentXpath; 75 } 76 77 public long getGlobalLastModified() { 78 return _lastModified; 79 } 80 81 public void setGlobalLastModified(long lm) { 82 _lastModified = lm; 83 } 84 } | Popular Tags |