package evanniederwerfer.blogapp.blogappv2; import java.io.File; import java.nio.file.Path; import java.util.concurrent.atomic.AtomicInteger; import java.util.concurrent.atomic.AtomicReference; public interface values { AtomicReference AUTHOR = new AtomicReference<>(""); // The author for the post in blogPosts.php AtomicReference TITLE = new AtomicReference<>(""); // The post title in blogPosts.php AtomicReference POST_CONTENT = new AtomicReference<>(""); // The post content for blogPosts.php AtomicInteger RT = new AtomicInteger(); // Read time (approx time it takes to read article) for blogPosts.php // Files AtomicReference file = new AtomicReference<>(); // Select the blog txt file AtomicReference publishFile = new AtomicReference<>(); // The .HTML file to be published to the site AtomicReference imageFile = new AtomicReference<>(); // The image to be displayed on published div File tempFile = new File("tempFile.php"); // Temp .PHP file downloaded to update blogPosts.php // HTML Strings AtomicReference Tag1Var = new AtomicReference<>(""); // Remains empty if user doesn't select AtomicReference Tag2Var = new AtomicReference<>(""); // Remains empty if user doesn't select AtomicReference Tag3Var = new AtomicReference<>(""); // Remains empty if user doesn't select AtomicReference Tag4Var = new AtomicReference<>(""); // Remains empty if user doesn't select AtomicReference Tag5Var = new AtomicReference<>(""); // Remains empty if user doesn't select AtomicReference Tag6Var = new AtomicReference<>(""); // Remains empty if user doesn't select AtomicReference Tag7Var = new AtomicReference<>(""); // Remains empty if user doesn't select String Tag1String = "How-To"; // The first blog post tag String Tag2String = "Politics"; // The second blog post tag String Tag3String = "Tech"; // The third blog post tag String Tag4String = "Ethics"; // The fourth blog post tag String Tag5String = "VPA/SEG"; // The fourth blog post tag String Tag6String = "Personal"; // The fourth blog post tag String Tag7String = "Other"; // The fourth blog post tag // FTP Credentials String host = ""; String user = ""; String password = ""; int port = 21; // JavaFX Node Text String headingLabel = "Create Blog"; // First heading label String fileLabelTxt = "Blog File:"; // The blog file label text located by "Select File" button String selectFileBtn = "Select File"; // The button to select a txt file with syntax to create blog }