This commit is contained in:
2023-09-27 13:31:02 -05:00
parent 99634aba7e
commit a7c5929537
307 changed files with 23548 additions and 0 deletions

View File

@@ -0,0 +1,74 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Author.java</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<style type="text/css">
<!--
body {color: #a9b7c6; background-color: #2b2b2b; font-family: monospace}
pre {color: #a9b7c6; background-color: #2b2b2b; font-family: monospace}
table {color: #888888; background-color: #313335; font-family: monospace}
.ST2 {color: #9876aa}
.ST3 {color: #ffc66d}
.comment {color: #808080}
.whitespace {color: #505050}
.ST1 {color: #808080; font-family: monospace; font-weight: bold}
.ST0 {color: #287bde}
.literal {color: #cc7832}
-->
</style>
</head>
<body>
<table width="100%"><tr><td align="center">/home/caleb/ASDV-WebDev/Semester 2/Assignments/lab6-f23_CalebFontenot/src/main/java/edu/slcc/asdv/pojos/Author.java</td></tr></table>
<pre>
<span class="comment">/*</span>
<span class="comment"> * Click </span><span class="ST0">nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt</span><span class="comment"> to change this license</span>
<span class="comment"> * Click </span><span class="ST0">nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java</span><span class="comment"> to edit this template</span>
<span class="comment"> */</span>
<span class="literal">package</span> edu.slcc.asdv.pojos;
<span class="comment">/**</span>
<span class="comment"> *</span>
<span class="comment"> * </span><span class="ST1">@author</span> <span class="comment">caleb</span>
<span class="comment">*/</span>
<span class="literal">public</span> <span class="literal">class</span> Author <span class="literal">implements</span> java.io.Serializable {
<span class="literal">private</span> String <span class="ST2">first</span> = <span class="literal">null</span>;
<span class="literal">public</span> Author(String first, String last, String bio) {
<span class="literal">this</span>.<span class="ST2">first</span> = first;
<span class="literal">this</span>.<span class="ST2">last</span> = last;
<span class="literal">this</span>.<span class="ST2">bio</span> = bio;
}
<span class="literal">public</span> String <span class="ST3">getFirst</span>() {
<span class="literal">return</span> <span class="ST2">first</span>;
}
<span class="literal">public</span> <span class="literal">void</span> <span class="ST3">setFirst</span>(String first) {
<span class="literal">this</span>.<span class="ST2">first</span> = first;
}
<span class="literal">private</span> String <span class="ST2">last</span> = <span class="literal">null</span>;
<span class="literal">public</span> String <span class="ST3">getLast</span>() {
<span class="literal">return</span> <span class="ST2">last</span>;
}
<span class="literal">public</span> <span class="literal">void</span> <span class="ST3">setLast</span>(String last) {
<span class="literal">this</span>.<span class="ST2">last</span> = last;
}
<span class="literal">private</span> String <span class="ST2">bio</span> = <span class="literal">null</span>;
<span class="literal">public</span> String <span class="ST3">getBio</span>() {
<span class="literal">return</span> <span class="ST2">bio</span>;
}
<span class="literal">public</span> <span class="literal">void</span> <span class="ST3">setBio</span>(String bio) {
<span class="literal">this</span>.<span class="ST2">bio</span> = bio;
}
}
</pre></body>
</html>

View File

@@ -0,0 +1,119 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>AuthorController.java</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<style type="text/css">
<!--
body {color: #a9b7c6; background-color: #2b2b2b; font-family: monospace}
pre {color: #a9b7c6; background-color: #2b2b2b; font-family: monospace}
table {color: #888888; background-color: #313335; font-family: monospace}
.ST2 {color: #9876aa}
.ST3 {color: #ffc66d}
.string {color: #6a8759}
.comment {color: #808080}
.whitespace {color: #505050}
.ST4 {color: #9876aa; font-family: monospace; font-style: italic}
.ST1 {color: #808080; font-family: monospace; font-weight: bold}
.ST0 {color: #287bde}
.literal {color: #cc7832}
-->
</style>
</head>
<body>
<table width="100%"><tr><td align="center">/home/caleb/ASDV-WebDev/Semester 2/Assignments/lab6-f23_CalebFontenot/src/main/java/edu/slcc/asdv/beans/AuthorController.java</td></tr></table>
<pre>
<span class="comment">/*</span>
<span class="comment"> * Click </span><span class="ST0">nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt</span><span class="comment"> to change this license</span>
<span class="comment"> * Click </span><span class="ST0">nbfs://nbhost/SystemFileSystem/Templates/JSF/JSFManagedBean.java</span><span class="comment"> to edit this template</span>
<span class="comment"> */</span>
<span class="literal">package</span> edu.slcc.asdv.beans;
<span class="literal">import</span> edu.slcc.asdv.pojos.Author;
<span class="literal">import</span> jakarta.inject.Named;
<span class="literal">import</span> jakarta.enterprise.context.SessionScoped;
<span class="literal">import</span> java.io.Serializable;
<span class="literal">import</span> java.util.ArrayList;
<span class="literal">import</span> java.util.List;
<span class="comment">/**</span>
<span class="comment"> *</span>
<span class="comment"> * </span><span class="ST1">@author</span> <span class="comment">caleb</span>
<span class="comment">*/</span>
@Named(value = <span class="string">&quot;</span><span class="string">authorController</span><span class="string">&quot;</span>)
@SessionScoped
<span class="literal">public</span> <span class="literal">class</span> AuthorController <span class="literal">implements</span> Serializable {
<span class="literal">private</span> String <span class="ST2">newAuthorFirst</span>;
<span class="literal">public</span> AuthorController() {
populateAuthorList();
}
<span class="literal">private</span> String <span class="ST2">newAuthorLast</span>;
<span class="literal">public</span> String <span class="ST3">getNewAuthorLast</span>() {
<span class="literal">return</span> <span class="ST2">newAuthorLast</span>;
}
<span class="literal">public</span> <span class="literal">void</span> <span class="ST3">setNewAuthorLast</span>(String newAuthorLast) {
<span class="literal">this</span>.<span class="ST2">newAuthorLast</span> = newAuthorLast;
}
<span class="literal">private</span> <span class="literal">void</span> <span class="ST3">populateAuthorList</span>() {
<span class="ST2">authorList</span> = <span class="literal">new</span> ArrayList&lt;&gt;();
System.<span class="ST4">out</span>.println(<span class="string">&quot;</span><span class="string">Initializing Authors</span><span class="string">&quot;</span>);
<span class="ST2">authorList</span>.add(<span class="literal">new</span> Author(<span class="string">&quot;</span><span class="string">Josh</span><span class="string">&quot;</span>, <span class="string">&quot;</span><span class="string">Juno</span><span class="string">&quot;</span>, <span class="string">&quot;</span><span class="string">AKA JJ</span><span class="string">&quot;</span>));
<span class="ST2">authorList</span>.add(<span class="literal">new</span> Author(<span class="string">&quot;</span><span class="string">Carl</span><span class="string">&quot;</span>, <span class="string">&quot;</span><span class="string">Dea</span><span class="string">&quot;</span>, <span class="string">&quot;</span><span class="string">Inventor of the CD</span><span class="string">&quot;</span>));
}
<span class="literal">public</span> <span class="literal">void</span> <span class="ST3">addAuthor</span>() {
System.<span class="ST4">out</span>.println(<span class="string">&quot;</span><span class="string">Attempting to add author</span><span class="string">&quot;</span>);
<span class="literal">this</span>.getAuthorList().add(
<span class="literal">new</span> Author(<span class="literal">t</span><span class="literal">his</span>.getNewAuthorFirst(),
<span class="literal">t</span><span class="literal">his</span>.getNewAuthorLast(),
<span class="literal">t</span><span class="literal">his</span>.getBio()));
}
<span class="literal">public</span> String <span class="ST3">getNewAuthorFirst</span>() {
<span class="literal">return</span> <span class="ST2">newAuthorFirst</span>;
}
<span class="literal">public</span> <span class="literal">void</span> <span class="ST3">setNewAuthorFirst</span>(String newAuthorFirst) {
<span class="literal">this</span>.<span class="ST2">newAuthorFirst</span> = newAuthorFirst;
}
<span class="literal">private</span> String <span class="ST2">string</span>;
<span class="literal">public</span> String <span class="ST3">getString</span>() {
<span class="literal">return</span> <span class="ST2">string</span>;
}
<span class="literal">public</span> <span class="literal">void</span> <span class="ST3">setString</span>(String string) {
<span class="literal">this</span>.<span class="ST2">string</span> = string;
}
<span class="literal">private</span> String <span class="ST2">bio</span>;
<span class="literal">public</span> String <span class="ST3">getBio</span>() {
<span class="literal">return</span> <span class="ST2">bio</span>;
}
<span class="literal">public</span> <span class="literal">void</span> <span class="ST3">setBio</span>(String bio) {
<span class="literal">this</span>.<span class="ST2">bio</span> = bio;
}
<span class="literal">private</span> List&lt;Author&gt; <span class="ST2">authorList</span>;
<span class="literal">public</span> List&lt;Author&gt; <span class="ST3">getAuthorList</span>() {
<span class="literal">return</span> <span class="ST2">authorList</span>;
}
<span class="literal">public</span> <span class="literal">void</span> <span class="ST3">setAuthorList</span>(List&lt;Author&gt; authorList) {
<span class="literal">this</span>.<span class="ST2">authorList</span> = authorList;
}
}
</pre></body>
</html>

View File

@@ -0,0 +1,80 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>index.xhtml</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<style type="text/css">
<!--
body {color: #a9b7c6; background-color: #2b2b2b; font-family: monospace}
pre {color: #a9b7c6; background-color: #2b2b2b; font-family: monospace}
table {color: #888888; background-color: #313335; font-family: monospace}
.ST3 {color: #e8bf6a}
.ST6 {color: #e8bf6a; font-family: monospace; font-weight: bold}
.ST7 {color: #6897bb}
.ST1 {color: #505050}
.ST4 {color: #bababa}
.ST2 {color: #287bde}
.ST0 {color: #628fb5}
.ST5 {color: #a5c261}
.expression-language {background-color: #232525}
.highlight-caret-row {background-color: #323232}
-->
</style>
</head>
<body>
<table width="100%"><tr><td align="center">/home/caleb/ASDV-WebDev/Semester 2/Assignments/lab6-f23_CalebFontenot/src/main/webapp/index.xhtml</td></tr></table>
<pre>
<span class="highlight-caret-row">&lt;?xml version=&#39;1.0&#39; encoding=&#39;UTF-8&#39; ?&gt;</span>
<span class="ST0">&lt;!DOCTYPE</span> <span class="ST0">html</span> <span class="ST0">PUBLIC</span> <span class="ST0">&quot;-//W3C//DTD</span> <span class="ST0">XHTML</span> <span class="ST0">1.0</span> <span class="ST0">Transitional//EN&quot;</span> <span class="ST0">&quot;</span><span class="ST2">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</span><span class="ST0">&quot;</span><span class="ST0">&gt;</span>
<span class="ST3">&lt;</span><span class="ST3">html</span> <span class="ST4">xmlns</span><span class="ST4">=</span><span class="ST5">&quot;</span><span class="ST2">http://www.w3.org/1999/xhtml</span><span class="ST5">&quot;</span>
<span class="ST4">xmlns:h</span><span class="ST4">=</span><span class="ST5">&quot;</span><span class="ST2">http://xmlns.jcp.org/jsf/html</span><span class="ST5">&quot;</span><span class="ST3">&gt;</span>
<span class="ST6">&lt;</span><span class="ST6">h:head</span><span class="ST6">&gt;</span>
<span class="ST3">&lt;</span><span class="ST3">title</span><span class="ST3">&gt;</span>Building Sophisticated JSF Views with Components<span class="ST3">&lt;/</span><span class="ST3">title</span><span class="ST3">&gt;</span>
<span class="ST6">&lt;/</span><span class="ST6">h:head</span><span class="ST6">&gt;</span>
<span class="ST6">&lt;</span><span class="ST6">h:body</span><span class="ST6">&gt;</span>
<span class="ST6">&lt;</span><span class="ST6">h:form</span><span class="ST6">&gt;</span>
<span class="ST3">&lt;</span><span class="ST3">h1</span><span class="ST3">&gt;</span>JSF Components, Creating a Sophisticated Page<span class="ST3">&lt;/</span><span class="ST3">h1</span><span class="ST3">&gt;</span>
<span class="ST3">&lt;</span><span class="ST3">p</span><span class="ST3">&gt;</span>
The view for this page is made up entirely of JSF standard components.
<span class="ST3">&lt;</span><span class="ST3">br</span><span class="ST3">/&gt;</span>As you can see, there are many useful components bundled with JSF out of the box.
<span class="ST3">&lt;</span><span class="ST3">br</span><span class="ST3">/&gt;</span>
<span class="ST3">&lt;/</span><span class="ST3">p</span><span class="ST3">&gt;</span>
<span class="ST3">&lt;</span><span class="ST3">p</span><span class="ST3">&gt;</span>Book Recommendation: Java 7 Recipes
<span class="ST3">&lt;</span><span class="ST3">br</span><span class="ST3">/&gt;</span>
<span class="ST6">&lt;</span><span class="ST6">h:graphicImage</span> <span class="ST4">style</span><span class="ST4">=</span><span class="ST5">&quot;</span>max-height: <span class="ST7">300px</span>; max-width: <span class="ST7">300px</span>;<span class="ST5">&quot;</span>
<span class="ST4">library</span><span class="ST4">=</span><span class="ST5">&quot;images&quot;</span> <span class="ST4">name</span><span class="ST4">=</span><span class="ST5">&quot;picture.png&quot;</span><span class="ST3">/</span><span class="ST6">&gt;</span>
<span class="ST3">&lt;</span><span class="ST3">br</span><span class="ST3">/&gt;</span>
<span class="ST6">&lt;</span><span class="ST6">h:outputLabel</span> <span class="ST4">for</span><span class="ST4">=</span><span class="ST5">&quot;newAuthorFirst&quot;</span> <span class="ST4">value</span><span class="ST4">=</span><span class="ST5">&quot;New Author First Name: &quot;</span><span class="ST3">/</span><span class="ST6">&gt;</span>
<span class="ST6">&lt;</span><span class="ST6">h:inputText</span> <span class="ST4">id</span><span class="ST4">=</span><span class="ST5">&quot;newAuthorFirst&quot;</span> <span class="ST4">value</span><span class="ST4">=</span><span class="ST5">&quot;</span><span class="expression-language">#{</span><span class="expression-language">authorController</span><span class="expression-language">.</span><span class="expression-language">newAuthorFirst</span><span class="expression-language">}</span><span class="ST5">&quot;</span><span class="ST3">/</span><span class="ST6">&gt;</span>
<span class="ST3">&lt;</span><span class="ST3">br</span><span class="ST3">/&gt;</span>
<span class="ST6">&lt;</span><span class="ST6">h:outputLabel</span> <span class="ST4">for</span><span class="ST4">=</span><span class="ST5">&quot;newAuthorLast&quot;</span> <span class="ST4">value</span><span class="ST4">=</span><span class="ST5">&quot;New Author Last Name: &quot;</span><span class="ST3">/</span><span class="ST6">&gt;</span>
<span class="ST6">&lt;</span><span class="ST6">h:inputText</span> <span class="ST4">id</span><span class="ST4">=</span><span class="ST5">&quot;newAuthorLast&quot;</span> <span class="ST4">value</span><span class="ST4">=</span><span class="ST5">&quot;</span><span class="expression-language">#{</span><span class="expression-language">authorController</span><span class="expression-language">.</span><span class="expression-language">newAuthorLast</span><span class="expression-language">}</span><span class="ST5">&quot;</span><span class="ST3">/</span><span class="ST6">&gt;</span>
<span class="ST3">&lt;</span><span class="ST3">br</span><span class="ST3">/&gt;</span>
<span class="ST6">&lt;</span><span class="ST6">h:inputTextarea</span> <span class="ST4">id</span><span class="ST4">=</span><span class="ST5">&quot;bio&quot;</span> <span class="ST4">cols</span><span class="ST4">=</span><span class="ST5">&quot;20&quot;</span> <span class="ST4">rows</span><span class="ST4">=</span><span class="ST5">&quot;5&quot;</span>
<span class="ST4">value</span><span class="ST4">=</span><span class="ST5">&quot;</span><span class="expression-language">#{</span><span class="expression-language">authorController</span><span class="expression-language">.</span><span class="expression-language">bio</span><span class="expression-language">}</span><span class="ST5">&quot;</span><span class="ST3">/</span><span class="ST6">&gt;</span>
<span class="ST3">&lt;</span><span class="ST3">br</span><span class="ST3">/&gt;</span><span class="ST3">&lt;</span><span class="ST3">br</span><span class="ST3">/&gt;</span>
<span class="ST6">&lt;</span><span class="ST6">h:commandButton</span> <span class="ST4">id</span><span class="ST4">=</span><span class="ST5">&quot;addAuthor&quot;</span> <span class="ST4">action</span><span class="ST4">=</span><span class="ST5">&quot;</span><span class="expression-language">#{</span><span class="expression-language">authorController</span><span class="expression-language">.</span><span class="expression-language">addAuthor</span><span class="expression-language">}</span><span class="ST5">&quot;</span>
<span class="ST4">value</span><span class="ST4">=</span><span class="ST5">&quot;Add Author&quot;</span><span class="ST3">/</span><span class="ST6">&gt;</span>
<span class="ST3">&lt;</span><span class="ST3">br</span><span class="ST3">/&gt;</span><span class="ST3">&lt;</span><span class="ST3">br</span><span class="ST3">/&gt;</span>
<span class="ST6">&lt;</span><span class="ST6">h:dataTable</span> <span class="ST4">id</span><span class="ST4">=</span><span class="ST5">&quot;authorTable&quot;</span>
<span class="ST4">value</span><span class="ST4">=</span><span class="ST5">&quot;</span><span class="expression-language">#{</span><span class="expression-language">authorController</span><span class="expression-language">.</span><span class="expression-language">authorList</span><span class="expression-language">}</span><span class="ST5">&quot;</span>
<span class="ST4">var</span><span class="ST4">=</span><span class="ST5">&quot;author&quot;</span><span class="ST6">&gt;</span>
<span class="ST6">&lt;</span><span class="ST6">h:column</span><span class="ST6">&gt;</span>
<span class="ST6">&lt;</span><span class="ST6">h:outputText</span> <span class="ST4">id</span><span class="ST4">=</span><span class="ST5">&quot;authorName&quot;</span>
<span class="ST4">value</span><span class="ST4">=</span><span class="ST5">&quot;</span><span class="expression-language">#{</span><span class="expression-language">author</span><span class="expression-language">.</span><span class="expression-language">first</span><span class="expression-language">}</span> <span class="expression-language">#{</span><span class="expression-language">author</span><span class="expression-language">.</span><span class="expression-language">last</span><span class="expression-language">}</span> <span class="expression-language">#{</span><span class="expression-language">author</span><span class="expression-language">.</span><span class="expression-language">bio</span><span class="expression-language">}</span><span class="ST5">&quot;</span><span class="ST3">/</span><span class="ST6">&gt;</span>
<span class="ST6">&lt;/</span><span class="ST6">h:column</span><span class="ST6">&gt;</span>
<span class="ST6">&lt;/</span><span class="ST6">h:dataTable</span><span class="ST6">&gt;</span>
<span class="ST6">&lt;</span><span class="ST6">h:message</span> <span class="ST4">for</span><span class="ST4">=</span><span class="ST5">&quot;addAuthor&quot;</span> <span class="ST3">/</span><span class="ST6">&gt;</span>
<span class="ST3">&lt;/</span><span class="ST3">p</span><span class="ST3">&gt;</span>
<span class="ST6">&lt;/</span><span class="ST6">h:form</span><span class="ST6">&gt;</span>
<span class="ST6">&lt;/</span><span class="ST6">h:body</span><span class="ST6">&gt;</span>
<span class="ST3">&lt;/</span><span class="ST3">html</span><span class="ST3">&gt;</span>
</pre></body>
</html>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project-shared-configuration>
<!--
This file contains additional configuration written by modules in the NetBeans IDE.
The configuration is intended to be shared among all the users of project and
therefore it is assumed to be part of version control checkout.
Without this configuration present, some functionality in the IDE may be limited or fail altogether.
-->
<properties xmlns="http://www.netbeans.org/ns/maven-properties-data/1">
<!--
Properties that influence various parts of the IDE, especially code formatting and the like.
You can copy and paste the single properties, into the pom.xml file and the IDE will pick them up.
That way multiple projects can share the same settings (useful for formatting rules for example).
Any value defined here will override the pom.xml file value but is only applicable to the current project.
-->
<org-netbeans-modules-maven-j2ee.netbeans_2e_hint_2e_j2eeVersion>10-web</org-netbeans-modules-maven-j2ee.netbeans_2e_hint_2e_j2eeVersion>
<org-netbeans-modules-maven-j2ee.netbeans_2e_hint_2e_deploy_2e_server>gfv700ee10</org-netbeans-modules-maven-j2ee.netbeans_2e_hint_2e_deploy_2e_server>
<org-netbeans-modules-projectapi.jsf_2e_language>Facelets</org-netbeans-modules-projectapi.jsf_2e_language>
<netbeans.hint.jdkPlatform>JDK_11__System_</netbeans.hint.jdkPlatform>
</properties>
</project-shared-configuration>

View File

@@ -0,0 +1,77 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>edu.slcc.asdv.caleb</groupId>
<artifactId>lab6-f23_CalebFontenot</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>lab6-f23_CalebFontenot-1.0-SNAPSHOT</name>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<failOnMissingWebXml>false</failOnMissingWebXml>
<jakartaee>10.0.0</jakartaee>
</properties>
<dependencies>
<dependency>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-api</artifactId>
<version>${jakartaee}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>11</source>
<target>11</target>
<compilerArguments>
<endorseddirs>${endorsed.dir}</endorseddirs>
</compilerArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.3</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<outputDirectory>${endorsed.dir}</outputDirectory>
<silent>true</silent>
<artifactItems>
<artifactItem>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-api</artifactId>
<version>${jakartaee}</version>
<type>jar</type>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

View File

@@ -0,0 +1,91 @@
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/JSF/JSFManagedBean.java to edit this template
*/
package edu.slcc.asdv.beans;
import edu.slcc.asdv.pojos.Author;
import jakarta.inject.Named;
import jakarta.enterprise.context.SessionScoped;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
/**
*
* @author caleb
*/
@Named(value = "authorController")
@SessionScoped
public class AuthorController implements Serializable {
private String newAuthorFirst;
public AuthorController() {
populateAuthorList();
}
private String newAuthorLast;
public String getNewAuthorLast() {
return newAuthorLast;
}
public void setNewAuthorLast(String newAuthorLast) {
this.newAuthorLast = newAuthorLast;
}
private void populateAuthorList() {
authorList = new ArrayList<>();
System.out.println("Initializing Authors");
authorList.add(new Author("Josh", "Juno", "AKA JJ"));
authorList.add(new Author("Carl", "Dea", "Inventor of the CD"));
}
public void addAuthor() {
System.out.println("Attempting to add author");
this.getAuthorList().add(
new Author(this.getNewAuthorFirst(),
this.getNewAuthorLast(),
this.getBio()));
}
public String getNewAuthorFirst() {
return newAuthorFirst;
}
public void setNewAuthorFirst(String newAuthorFirst) {
this.newAuthorFirst = newAuthorFirst;
}
private String string;
public String getString() {
return string;
}
public void setString(String string) {
this.string = string;
}
private String bio;
public String getBio() {
return bio;
}
public void setBio(String bio) {
this.bio = bio;
}
private List<Author> authorList;
public List<Author> getAuthorList() {
return authorList;
}
public void setAuthorList(List<Author> authorList) {
this.authorList = authorList;
}
}

View File

@@ -0,0 +1,13 @@
package edu.slcc.asdv.caleb.labjuneau_calebfontenot;
import jakarta.ws.rs.ApplicationPath;
import jakarta.ws.rs.core.Application;
/**
* Configures Jakarta RESTful Web Services for the application.
* @author Juneau
*/
@ApplicationPath("resources")
public class JakartaRestConfiguration extends Application {
}

View File

@@ -0,0 +1,20 @@
package edu.slcc.asdv.caleb.labjuneau_calebfontenot.resources;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.core.Response;
/**
*
* @author
*/
@Path("jakartaee10")
public class JakartaEE10Resource {
@GET
public Response ping(){
return Response
.ok("ping Jakarta EE")
.build();
}
}

View File

@@ -0,0 +1,49 @@
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
package edu.slcc.asdv.pojos;
/**
*
* @author caleb
*/
public class Author implements java.io.Serializable {
private String first = null;
public Author(String first, String last, String bio) {
this.first = first;
this.last = last;
this.bio = bio;
}
public String getFirst() {
return first;
}
public void setFirst(String first) {
this.first = first;
}
private String last = null;
public String getLast() {
return last;
}
public void setLast(String last) {
this.last = last;
}
private String bio = null;
public String getBio() {
return bio;
}
public void setBio(String bio) {
this.bio = bio;
}
}

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="3.0" xmlns="https://jakarta.ee/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://jakarta.ee/xml/ns/persistence https://jakarta.ee/xml/ns/persistence/persistence_3_0.xsd">
<!-- Define Persistence Unit -->
<persistence-unit name="my_persistence_unit">
</persistence-unit>
</persistence>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee https://jakarta.ee/xml/ns/jakartaee/beans_4_0.xsd"
bean-discovery-mode="all">
</beans>

View File

@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
version 2 with the GNU Classpath Exception, which is available at
https://www.gnu.org/software/classpath/license.html.
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
-->
<!DOCTYPE glassfish-web-app PUBLIC "-//GlassFish.org//DTD GlassFish Application Server 3.1 Servlet 3.0//EN" "http://glassfish.org/dtds/glassfish-web-app_3_0-1.dtd">
<glassfish-web-app error-url="">
<class-loader delegate="true"/>
<jsp-config>
<property name="keepgenerated" value="true">
<description>Keep a copy of the generated servlet class' java code.</description>
</property>
</jsp-config>
</glassfish-web-app>

View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="6.0" xmlns="https://jakarta.ee/xml/ns/jakartaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee https://jakarta.ee/xml/ns/jakartaee/web-app_6_0.xsd">
<context-param>
<param-name>jakarta.faces.PROJECT_STAGE</param-name>
<param-value>Development</param-value>
</context-param>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>jakarta.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>faces/index.xhtml</welcome-file>
</welcome-file-list>
</web-app>

View File

@@ -0,0 +1,51 @@
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html">
<h:head>
<title>Building Sophisticated JSF Views with Components</title>
</h:head>
<h:body>
<h:form>
<h1>JSF Components, Creating a Sophisticated Page</h1>
<p>
The view for this page is made up entirely of JSF standard components.
<br/>As you can see, there are many useful components bundled with JSF out of the box.
<br/>
</p>
<p>Book Recommendation: Java 7 Recipes
<br/>
<h:graphicImage style="max-height: 300px; max-width: 300px;"
library="images" name="picture.png"/>
<br/>
<h:outputLabel for="newAuthorFirst" value="New Author First Name: "/>
<h:inputText id="newAuthorFirst" value="#{authorController.newAuthorFirst}"/>
<br/>
<h:outputLabel for="newAuthorLast" value="New Author Last Name: "/>
<h:inputText id="newAuthorLast" value="#{authorController.newAuthorLast}"/>
<br/>
<h:inputTextarea id="bio" cols="20" rows="5"
value="#{authorController.bio}"/>
<br/><br/>
<h:commandButton id="addAuthor" action="#{authorController.addAuthor}"
value="Add Author"/>
<br/><br/>
<h:dataTable id="authorTable"
value="#{authorController.authorList}"
var="author">
<h:column>
<h:outputText id="authorName"
value="#{author.first} #{author.last} #{author.bio}"/>
</h:column>
</h:dataTable>
<h:message for="addAuthor" />
</p>
</h:form>
</h:body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="3.0" xmlns="https://jakarta.ee/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://jakarta.ee/xml/ns/persistence https://jakarta.ee/xml/ns/persistence/persistence_3_0.xsd">
<!-- Define Persistence Unit -->
<persistence-unit name="my_persistence_unit">
</persistence-unit>
</persistence>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee https://jakarta.ee/xml/ns/jakartaee/beans_4_0.xsd"
bean-discovery-mode="all">
</beans>

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="3.0" xmlns="https://jakarta.ee/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://jakarta.ee/xml/ns/persistence https://jakarta.ee/xml/ns/persistence/persistence_3_0.xsd">
<!-- Define Persistence Unit -->
<persistence-unit name="my_persistence_unit">
</persistence-unit>
</persistence>

View File

@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
version 2 with the GNU Classpath Exception, which is available at
https://www.gnu.org/software/classpath/license.html.
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
-->
<!DOCTYPE glassfish-web-app PUBLIC "-//GlassFish.org//DTD GlassFish Application Server 3.1 Servlet 3.0//EN" "http://glassfish.org/dtds/glassfish-web-app_3_0-1.dtd">
<glassfish-web-app error-url="">
<class-loader delegate="true"/>
<jsp-config>
<property name="keepgenerated" value="true">
<description>Keep a copy of the generated servlet class' java code.</description>
</property>
</jsp-config>
</glassfish-web-app>

View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="6.0" xmlns="https://jakarta.ee/xml/ns/jakartaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee https://jakarta.ee/xml/ns/jakartaee/web-app_6_0.xsd">
<context-param>
<param-name>jakarta.faces.PROJECT_STAGE</param-name>
<param-value>Development</param-value>
</context-param>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>jakarta.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>faces/index.xhtml</welcome-file>
</welcome-file-list>
</web-app>

View File

@@ -0,0 +1,51 @@
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html">
<h:head>
<title>Building Sophisticated JSF Views with Components</title>
</h:head>
<h:body>
<h:form>
<h1>JSF Components, Creating a Sophisticated Page</h1>
<p>
The view for this page is made up entirely of JSF standard components.
<br/>As you can see, there are many useful components bundled with JSF out of the box.
<br/>
</p>
<p>Book Recommendation: Java 7 Recipes
<br/>
<h:graphicImage style="max-height: 300px; max-width: 300px;"
library="images" name="picture.png"/>
<br/>
<h:outputLabel for="newAuthorFirst" value="New Author First Name: "/>
<h:inputText id="newAuthorFirst" value="#{authorController.newAuthorFirst}"/>
<br/>
<h:outputLabel for="newAuthorLast" value="New Author Last Name: "/>
<h:inputText id="newAuthorLast" value="#{authorController.newAuthorLast}"/>
<br/>
<h:inputTextarea id="bio" cols="20" rows="5"
value="#{authorController.bio}"/>
<br/><br/>
<h:commandButton id="addAuthor" action="#{authorController.addAuthor}"
value="Add Author"/>
<br/><br/>
<h:dataTable id="authorTable"
value="#{authorController.authorList}"
var="author">
<h:column>
<h:outputText id="authorName"
value="#{author.first} #{author.last} #{author.bio}"/>
</h:column>
</h:dataTable>
<h:message for="addAuthor" />
</p>
</h:form>
</h:body>
</html>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee https://jakarta.ee/xml/ns/jakartaee/beans_4_0.xsd"
bean-discovery-mode="all">
</beans>

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="3.0" xmlns="https://jakarta.ee/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://jakarta.ee/xml/ns/persistence https://jakarta.ee/xml/ns/persistence/persistence_3_0.xsd">
<!-- Define Persistence Unit -->
<persistence-unit name="my_persistence_unit">
</persistence-unit>
</persistence>

View File

@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
version 2 with the GNU Classpath Exception, which is available at
https://www.gnu.org/software/classpath/license.html.
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
-->
<!DOCTYPE glassfish-web-app PUBLIC "-//GlassFish.org//DTD GlassFish Application Server 3.1 Servlet 3.0//EN" "http://glassfish.org/dtds/glassfish-web-app_3_0-1.dtd">
<glassfish-web-app error-url="">
<class-loader delegate="true"/>
<jsp-config>
<property name="keepgenerated" value="true">
<description>Keep a copy of the generated servlet class' java code.</description>
</property>
</jsp-config>
</glassfish-web-app>

View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="6.0" xmlns="https://jakarta.ee/xml/ns/jakartaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee https://jakarta.ee/xml/ns/jakartaee/web-app_6_0.xsd">
<context-param>
<param-name>jakarta.faces.PROJECT_STAGE</param-name>
<param-value>Development</param-value>
</context-param>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>jakarta.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>faces/index.xhtml</welcome-file>
</welcome-file-list>
</web-app>

View File

@@ -0,0 +1,51 @@
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html">
<h:head>
<title>Building Sophisticated JSF Views with Components</title>
</h:head>
<h:body>
<h:form>
<h1>JSF Components, Creating a Sophisticated Page</h1>
<p>
The view for this page is made up entirely of JSF standard components.
<br/>As you can see, there are many useful components bundled with JSF out of the box.
<br/>
</p>
<p>Book Recommendation: Java 7 Recipes
<br/>
<h:graphicImage style="max-height: 300px; max-width: 300px;"
library="images" name="picture.png"/>
<br/>
<h:outputLabel for="newAuthorFirst" value="New Author First Name: "/>
<h:inputText id="newAuthorFirst" value="#{authorController.newAuthorFirst}"/>
<br/>
<h:outputLabel for="newAuthorLast" value="New Author Last Name: "/>
<h:inputText id="newAuthorLast" value="#{authorController.newAuthorLast}"/>
<br/>
<h:inputTextarea id="bio" cols="20" rows="5"
value="#{authorController.bio}"/>
<br/><br/>
<h:commandButton id="addAuthor" action="#{authorController.addAuthor}"
value="Add Author"/>
<br/><br/>
<h:dataTable id="authorTable"
value="#{authorController.authorList}"
var="author">
<h:column>
<h:outputText id="authorName"
value="#{author.first} #{author.last} #{author.bio}"/>
</h:column>
</h:dataTable>
<h:message for="addAuthor" />
</p>
</h:form>
</h:body>
</html>

View File

@@ -0,0 +1,5 @@
#Generated by Maven
#Mon Sep 25 10:33:55 CDT 2023
groupId=edu.slcc.asdv.caleb
artifactId=lab6-f23_CalebFontenot
version=1.0-SNAPSHOT

View File

@@ -0,0 +1,4 @@
edu/slcc/asdv/caleb/labjuneau_calebfontenot/resources/JakartaEE10Resource.class
edu/slcc/asdv/caleb/labjuneau_calebfontenot/JakartaRestConfiguration.class
edu/slcc/asdv/beans/AuthorController.class
edu/slcc/asdv/pojos/Author.class

View File

@@ -0,0 +1,4 @@
/home/caleb/ASDV-WebDev/Semester 2/Assignments/lab6-f23_CalebFontenot/src/main/java/edu/slcc/asdv/caleb/labjuneau_calebfontenot/JakartaRestConfiguration.java
/home/caleb/ASDV-WebDev/Semester 2/Assignments/lab6-f23_CalebFontenot/src/main/java/edu/slcc/asdv/beans/AuthorController.java
/home/caleb/ASDV-WebDev/Semester 2/Assignments/lab6-f23_CalebFontenot/src/main/java/edu/slcc/asdv/caleb/labjuneau_calebfontenot/resources/JakartaEE10Resource.java
/home/caleb/ASDV-WebDev/Semester 2/Assignments/lab6-f23_CalebFontenot/src/main/java/edu/slcc/asdv/pojos/Author.java