<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
#!/bin/bash | |
INSTALL_DIR=/opt/postman | |
if [ "$(whoami)" != "root" ] | |
then | |
echo "Sorry, you are not root. Use sudo!" | |
exit 1 | |
fi |
import javafx.application.Platform; | |
import javafx.geometry.Insets; | |
import javafx.scene.control.ButtonBar.ButtonData; | |
import javafx.scene.control.ButtonType; | |
import javafx.scene.control.Dialog; | |
import javafx.scene.control.PasswordField; | |
import javafx.scene.layout.HBox; | |
import javafx.scene.layout.Priority; | |
public class PasswordDialog extends Dialog<String> { |
import javax.imageio.IIOImage; | |
import javax.imageio.ImageIO; | |
import javax.imageio.ImageWriteParam; | |
import javax.imageio.ImageWriter; | |
import javax.imageio.stream.ImageOutputStream; | |
import java.awt.image.BufferedImage; | |
import java.io.ByteArrayInputStream; | |
import java.io.ByteArrayOutputStream; | |
import java.io.IOException; | |
import java.io.InputStream; |
import java.io.*; | |
/** | |
* Contains helper method to deep clone serializable objects | |
* @author Hussain Al-Derry <[email protected]> | |
* @version 1.0 | |
*/ | |
public class CloneUtils { | |
/** |
import java.util.*; | |
import java.util.concurrent.ConcurrentHashMap; | |
/** | |
* Cache implementation with a periodic memory clean up process. | |
* @author Hussain Al-Derry <[email protected]> | |
* @version 1.0 | |
*/ | |
public class ConcurrentCache<K, V> { |
/** | |
* A helper class to check number validity using the Luhn algorithm. | |
* @author Hussain Al-Derry <[email protected]> | |
*/ | |
public class LuhnChecker { | |
/** | |
* Checks number's validity using the last digit as a check digit. | |
* @param number The number to check | |
* @return boolean whether the number is valid or not. |
import com.android.volley.AuthFailureError; | |
import com.android.volley.DefaultRetryPolicy; | |
import com.android.volley.NetworkResponse; | |
import com.android.volley.Request; | |
import com.android.volley.Response; | |
import com.android.volley.RetryPolicy; | |
import com.android.volley.VolleyLog; | |
import com.android.volley.toolbox.HttpHeaderParser; | |
import com.squareup.okhttp.Headers; |