Skip to content
This repository has been archived by the owner on Apr 8, 2019. It is now read-only.

Commit

Permalink
Merge pull request #11 from metacosm/2.1.x
Browse files Browse the repository at this point in the history
Bug 835375: properly add supportedOptions to service description (partial fix for GTNWSRP-262)
  • Loading branch information
metacosm committed Jun 26, 2012
2 parents 21f070e + 85ecf85 commit 2db837a
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -62,7 +62,7 @@
wsdlLocation = "/WEB-INF/wsdl/wsrp-2.0-services.wsdl",
endpointInterface = "org.oasis.wsrp.v2.WSRPV2ServiceDescriptionPortType"
)
@HandlerChain(file="../producer-handler-chains.xml")
@HandlerChain(file = "../producer-handler-chains.xml")
public class ServiceDescriptionEndpoint extends WSRPBaseEndpoint implements WSRPV2ServiceDescriptionPortType
{
public void getServiceDescription(
Expand Down Expand Up @@ -105,5 +105,10 @@ public void getServiceDescription(
locales.value = description.getLocales();
resourceList.value = description.getResourceList();
extensions.value = description.getExtensions();
eventDescriptions.value = description.getEventDescriptions();
schemaType.value = description.getSchemaType();
supportedOptions.value = description.getSupportedOptions();
exportDescription.value = description.getExportDescription();
mayReturnRegistrationState.value = description.isMayReturnRegistrationState();
}
}

0 comments on commit 2db837a

Please sign in to comment.