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 class ConfigDeleteImpl extends ConfigChangeImpl implements com.sun.enterprise.config.ConfigDelete, Serializable { 43 44 public String getConfigChangeType() { 45 return TYPE_DELETE; 46 } 47 48 public ConfigDeleteImpl(String xpath) { 49 this.xpath = xpath; 50 } 51 52 public String toString() { 53 String ret = "delete xpath=" +xpath; 54 return ret; 55 } 56 57 public String getName() { 58 return null; } 60 61 } 62 | Popular Tags |