Hello colleagues!
I'am developing a mini framework for MDM API specific logic.
First I need to read MDM Destination parameters like serverName and repositoryName.
There is a good service com.sap.security.core.server.destinations.api.DestinationService But there is no MDMDestination class.
I've decompiled WD MDM Comopnents code and found the code:
destination = (DynamicDestination)dService.getDestination("MDM", destinationName);
...
currProperty = MdmDestinationProperty.SERVER_NAME.toString();
DestinationPropertySimple serverNameP = destination.getSimpleProperty(currProperty);
String serverName = (String)serverNameP.getValue();
...
But I didn't find DynamicDestination class in my NWDS 7.2 SP04 plugins directory.
Does anybody know how to read MDM Destination parameters?