1 23 package org.objectweb.joram.shared.admin; 24 25 import java.util.Vector ; 26 27 28 32 public class Monitor_GetClusterRep extends Monitor_Reply { 33 private static final long serialVersionUID = 8073241648201291805L; 34 35 36 private Vector topics; 37 38 43 public Monitor_GetClusterRep(Vector topics) { 44 this.topics = topics; 45 } 46 47 48 public Vector getTopics() { 49 if (topics == null) 50 return new Vector (); 51 return topics; 52 } 53 } 54 | Popular Tags |