1 22 package org.jboss.mx.loading; 23 24 import java.util.Set ; 25 import java.net.URL ; 26 import java.net.MalformedURLException ; 27 import java.text.ParseException ; 28 29 42 public interface MBeanFileParser 43 { 44 45 56 Set parseMBeanFile(URL url) throws ParseException ; 57 58 70 Set parseMBeanFile(String url) throws ParseException , MalformedURLException ; 71 72 } 73 74 75 76 77 | Popular Tags |