Package org.apache.cxf.service
Class ServiceModelVisitor
java.lang.Object
org.apache.cxf.service.ServiceModelVisitor
- Direct Known Subclasses:
ServiceModelSchemaValidator
Implements the Visitor pattern for the Service model.
The visit order is as follows:
1) Begin the overall service info. 2) Begin the service's interface. 3) For each operation, begin the operation. 3.1) begin the input message. 3.1.1) begin and end each part of the input message. 3.2) end the input message. 3.3) begin the output message. 3.3.1) begin and end each part of the output message. 3.4) end the output message 3.5) begin each fault. (3.5-3.6 repeated for each fault) 3.5.1) begin and end each part of each fault 3.6) end each fault. 3.7) if a wrapped operation, begin the corresponding unwrapped operation. 3.8) process the entire unwrapped operation starting at (3). 3.9) end the unwrapped operation. 4) end the operation. 5) end the interface. 6) For each endpoint (= port) begin and end the EndpointInfo 7) For each binding (= BindingInfo) begin and end the BindingInfo. 8) end the service info.Unwrapped operations share messages with their corresponding wrapped messages, so beware of processing the same messages twice as if unique.
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
begin
(BindingInfo bindingInfo) void
begin
(EndpointInfo endpointInfo) void
void
begin
(InterfaceInfo intf) void
begin
(MessageInfo msg) void
begin
(MessagePartInfo part) void
begin
(OperationInfo op) void
begin
(ServiceInfo service) void
void
end
(BindingInfo bindingInfo) void
end
(EndpointInfo endpointInfo) void
void
end
(InterfaceInfo intf) void
end
(MessageInfo msg) void
end
(MessagePartInfo part) void
end
(OperationInfo op) void
end
(ServiceInfo service) void
void
walk()
-
Field Details
-
serviceInfo
-
-
Constructor Details
-
ServiceModelVisitor
-
-
Method Details
-
walk
public void walk() -
begin
-
begin
-
begin
-
begin
-
begin
-
begin
-
begin
-
end
-
end
-
end
-
end
-
end
-
end
-
end
-
begin
-
end
-
begin
-
end
-