cendolinside

APIInterface2

Nov 12th, 2017
371
0
Never
4
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.10 KB | None | 0 0
  1. package com.test.api.api.Helper;
  2.  
  3. import com.test.api.api.GetSet.tblAkunDatabase;
  4. import com.test.api.api.GetSet.tblAkunDatabase_GET;
  5.  
  6. import retrofit2.Call;
  7. import retrofit2.http.DELETE;
  8. import retrofit2.http.Field;
  9. import retrofit2.http.FormUrlEncoded;
  10. import retrofit2.http.GET;
  11. import retrofit2.http.Headers;
  12. import retrofit2.http.POST;
  13. import retrofit2.http.PUT;
  14. import retrofit2.http.Path;
  15.  
  16. /**
  17.  * Created by Jan Sebastian on 07/11/2017.
  18.  */
  19. public interface APIInterface2 {
  20.     @Headers({
  21.             "Access-Control-Allow-Origin: *",
  22.             "Access-Control-Allow-Methods: POST,GET,PUT,DELETE,OPTIONS",
  23.             "Access-Control-Allow-Credentials: true",
  24.             "Access-Control-Allow-Headers: X-Requested-With,X-HTTP-Methods-Override,Content-Type,Accept,Cache-Control, Pragma, Origin,Authorization, Content-Type"
  25.     })
  26.     @FormUrlEncoded
  27.     @POST("/tblAkun")
  28.     Call<tblAkunDatabase> inputAkun(
  29.             @Field("nmAkun") String nmAkun,
  30.             @Field("TipeAkun") String TipeAkun,
  31.             @Field("kdUser") String kdUser
  32.     );
  33.  
  34.     @GET("/tblAkun")
  35.     Call<tblAkunDatabase_GET> listAkun();
  36.  
  37.     @GET("/tblAkun/{kdUser}")
  38.     Call<tblAkunDatabase_GET> listAkun_bykdUser(
  39.             @Path("kdUser") String kdUser
  40.     );
  41.  
  42.     @GET("/tblAkun/{kdAkun}/{kdUser}")
  43.     Call<tblAkunDatabase_GET> listAkun_bykdUser_kdAkun(
  44.             @Path("kdAkun") int kdAkun,
  45.             @Path("kdUser") String kdUser
  46.     );
  47.  
  48.     @GET("/tblAkun/{tipe}/{kdUser}")
  49.     Call<tblAkunDatabase_GET> listAkun_bytipe_kdUser(
  50.             @Path("tipe") String tipe,
  51.             @Path("kdUser") String kdUser
  52.     );
  53.     @FormUrlEncoded
  54.     @PUT("/tblAkun/{kdAkun}/{kdUser}")
  55.     Call<tblAkunDatabase> updateAkun(
  56.             @Path("kdAkun") int kdAkun,
  57.             @Path("kdUser") String kdUser,
  58.             @Field("nmAkun") String nmAkun,
  59.             @Field("TipeAkun") String TipeAkun
  60.     );
  61.     @FormUrlEncoded
  62.     @DELETE("/tblAkun/{kdAkun}/{kdUser}")
  63.     Call<tblAkunDatabase> deleteAkun(
  64.             @Path("kdAkun") int kdAkun,
  65.             @Path("kdUser") String kdUser
  66.     );
  67. }
Advertisement
Comments
  • User was banned
  • User was banned
  • Saxsunor
    122 days
    # CSS 0.85 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://docs.google.com/document/d/1dOCZEHS5JtM51RITOJzbS4o3hZ-__wTTRXQkV1MexNQ/edit?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 25% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification from SimpleSwap — instant swap).
  • User was banned
Add Comment
Please, Sign In to add comment