1 23 package com.sun.appserv.management.ext.wsmgmt; 24 25 import java.util.Map ; 26 import java.io.Serializable ; 27 28 import com.sun.appserv.management.ext.wsmgmt.MessageTrace; 29 30 31 36 37 public final class WebServiceSupport 38 { 39 45 public static MessageTrace 46 mapToMessageTrace( final Map <String ,Serializable > m ) 47 { 48 return( new MessageTraceImpl( m, MessageTrace.CLASS_NAME ) ); 49 } 50 51 57 public static WebServiceEndpointInfo 58 mapToWebServiceEndpointInfo( final Map <String ,Serializable > m ) 59 { 60 return( new WebServiceEndpointInfoImpl( m, WebServiceEndpointInfo.CLASS_NAME ) ); 61 } 62 63 64 } 65 66 67 68 | Popular Tags |