/**
  * Convert wsrm:Identifier to 200502 version with 200508 WS-Addressing namespace.
  *
  * @param internal (may be <code>null</code>)
  * @return converted (<code>null</code> if internal is <code>null</code>)
  */
 public static org.apache.cxf.ws.rm.v200502wsa15.Identifier convert200502wsa15(
     Identifier internal) {
   if (internal == null) {
     return null;
   }
   org.apache.cxf.ws.rm.v200502wsa15.Identifier exposed =
       RMUtils.getWSRM200502WSA200508Factory().createIdentifier();
   exposed.setValue(internal.getValue());
   putAll(internal.getOtherAttributes(), exposed.getOtherAttributes());
   return exposed;
 }