Here you can find the source of pathToSelfLink()
public static String pathToSelfLink()
//package com.java2s; //License from project: Open Source License public class Main { public static String pathToSelfLink() { return pathToLink("self"); }/* w w w .j a va 2 s. c om*/ public static String pathToLink(String relationType) { return String.format("_links['%s']", relationType); } }