All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.psu.swe.scim.spec.protocol.data.PatchOperationPathAdapter Maven / Gradle / Ivy

There is a newer version: 2.22.4
Show newest version
package edu.psu.swe.scim.spec.protocol.data;

import javax.xml.bind.annotation.adapters.XmlAdapter;

public class PatchOperationPathAdapter extends XmlAdapter{

  @Override
  public PatchOperationPath unmarshal(String v) throws Exception {
    if (v == null) {
      return null;
    }
    return new PatchOperationPath();
  }

  @Override
  public String marshal(PatchOperationPath v) throws Exception {
    if (v == null) {
      return null;
    }
    return v.toString();  
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy