Lines Matching defs:implementor

41  * and one implementor, both set at endpoint creation time.
62 * present on the implementor.
86 * Creates an endpoint with the specified implementor object. If there is
95 * @param implementor The endpoint implementor.
100 public static Endpoint create(Object implementor) {
101 return create(null, implementor);
105 * Creates an endpoint with the specified implementor object and web
115 * @param implementor The endpoint implementor.
125 public static Endpoint create(Object implementor, WebServiceFeature ... features) {
126 return create(null, implementor, features);
131 * implementor object.
141 * @param implementor The endpoint implementor.
146 public static Endpoint create(String bindingId, Object implementor) {
147 return Provider.provider().createEndpoint(bindingId, implementor);
152 * implementor object, and web service features.
162 * @param implementor The endpoint implementor.
171 public static Endpoint create(String bindingId, Object implementor, WebServiceFeature ... features) {
172 return Provider.provider().createEndpoint(bindingId, implementor, features);
185 * @return The implementor for this endpoint
215 * Creates and publishes an endpoint for the specified implementor
229 * @param implementor The endpoint implementor.
239 public static Endpoint publish(String address, Object implementor) {
240 return Provider.provider().createAndPublishEndpoint(address, implementor);
244 * Creates and publishes an endpoint for the specified implementor
259 * @param implementor The endpoint implementor.
271 public static Endpoint publish(String address, Object implementor, WebServiceFeature ... features) {
272 return Provider.provider().createAndPublishEndpoint(address, implementor, features);
378 * the implementor object.
391 * the implementor object.