1 23 package com.sun.enterprise.admin.wsmgmt.repository.spi; 24 25 import java.util.List ; 26 import java.util.Map ; 27 28 38 public interface WebServiceInfoProvider { 39 40 45 public String getProviderID(); 46 47 58 public List getWebServiceInfo(String moduleInfo, Map propMap) 59 throws RepositoryException; 60 61 65 public final static String MOD_TYPE_PROP_NAME = "module.type"; 66 67 68 public final static String MOD_TYPE_EJB = "ejb.module.type"; 69 70 71 public final static String MOD_TYPE_WEB = "web.module.type"; 72 73 74 public final static String APP_ID_PROP_NAME = "application.id"; 75 76 77 public final static String BUNDLE_NAME_PROP_NAME = "bundle.name"; 78 79 80 public final static String WSDL_PROP_NAME = "wsdl.location"; 81 82 83 public final static String APPLICATION_XML_PROP_NAME = "application.xml"; 84 85 86 public final static String WS_XML_PROP_NAME = "ws.xml"; 87 88 89 public final static String WS_XML_LOCATION_PROP_NAME = "ws.xml.location"; 90 91 92 public final static String MAPPING_PROP_NAME = "mapping.location"; 93 94 95 public final static String EJB_JAR_XML_PROP_NAME = 96 "ejb.jar.xml.location"; 97 98 99 public final static String SUN_EJB_JAR_XML_PROP_NAME = 100 "sun.ejb.jar.xml"; 101 102 103 public final static String SUN_EJB_JAR_XML_LOCATION_PROP_NAME = 104 "sun.ejb.jar.xml.location"; 105 106 107 public final static String WEB_XML_PROP_NAME = "web.xml.location"; 108 109 110 public final static String SUN_WEB_XML_PROP_NAME = 111 "sun.web.xml"; 112 113 114 public final static String SUN_WEB_XML_LOCATION_PROP_NAME = 115 "sun.web.xml.location"; 116 117 118 119 public final static String APP_ROOT_LOCATION_PROP_NAME="app.root.location"; 120 121 122 public final static String BUNDLE_ROOT_LOCATION_PROP_NAME = 123 "bundle.root.location"; 124 } 125 | Popular Tags |