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