1 23 package com.scalagent.joram.mom.dest.mail; 24 25 public class RemoveSenderInfo extends org.objectweb.joram.shared.admin.SpecialAdmin { 26 public SenderInfo si = null; 27 public int index = -1; 28 29 public RemoveSenderInfo(String destId, SenderInfo si) { 30 super(destId); 31 this.si = si; 32 } 33 34 public RemoveSenderInfo(String destId, int index) { 35 super(destId); 36 this.index = index; 37 } 38 39 public String toString() { 40 return "RemoveSenderInfo (destId=" + getDestId() + 41 ", index=" + index + ", si=" + si + ")"; 42 } 43 } 44 | Popular Tags |