ODI Java Decrypt Password

package ODI;

import com.sunopsis.dwg.DwgObject;
import java.sql.*;

public class decrypt_password {

@SuppressWarnings(“deprecation”)
public static void main(String[] args) {

@SuppressWarnings(“deprecation”)
String strMasterPassEnc=”dNfHRQilqhZhupd,MDGYw7H5pEMUKrd”;
String strMasterPass=DwgObject.snpsDecypher(strMasterPassEnc);
System.out.println(strMasterPass);

}

}