MP hell MP hell MP hell MP hell
This commit is contained in:
@@ -0,0 +1,83 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>Navigator.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; font-weight: bold}
|
||||
pre {color: #a9b7c6; background-color: #2b2b2b; font-family: monospace; font-weight: bold}
|
||||
table {color: #888888; background-color: #313335; font-family: monospace; font-weight: bold}
|
||||
.literal {color: #cc7832}
|
||||
.ST2 {font-family: monospace; font-weight: bold; font-style: italic}
|
||||
.ST0 {color: #287bde}
|
||||
.string {color: #6a8759}
|
||||
.number {color: #6897bb}
|
||||
.ST1 {color: #ffc66d}
|
||||
.whitespace {color: #505050}
|
||||
.comment {color: #808080}
|
||||
.ST3 {color: #9876aa; font-family: monospace; font-weight: bold; font-style: italic}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<table width="100%"><tr><td align="center">/home/caleb/ASDV-Java/Semester 3/Assignments/MP2_Navigation_CalebFontenot/src/main/java/edu/slcc/asdv/pojo/Navigator.java</td></tr></table>
|
||||
<pre>
|
||||
<span class="literal">package</span> edu.slcc.asdv.pojo;
|
||||
|
||||
<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">import</span> jakarta.inject.Named;
|
||||
<span class="literal">import</span> jakarta.enterprise.context.RequestScoped;
|
||||
|
||||
<span class="comment">/**</span>
|
||||
<span class="comment"> *</span>
|
||||
<span class="comment"> * </span><span class="comment">@author</span> <span class="comment">caleb</span>
|
||||
<span class="comment">*/</span>
|
||||
@Named(value = <span class="string">"</span><span class="string">Navigator</span><span class="string">"</span>)
|
||||
@RequestScoped
|
||||
<span class="literal">public</span> <span class="literal">class</span> Navigator {
|
||||
|
||||
<span class="comment">/**</span>
|
||||
<span class="comment"> * </span><span class="comment">Creates</span> <span class="comment">a</span> <span class="comment">new</span> <span class="comment">instance</span> <span class="comment">of</span> <span class="comment">Navigator</span>
|
||||
<span class="comment">*/</span>
|
||||
<span class="literal">public</span> Navigator() {
|
||||
}
|
||||
|
||||
<span class="literal">public</span> String <span class="ST1">determine</span>(String origin) {
|
||||
<span class="literal">int</span> rand = (<span class="literal">int</span>) (Math.<span class="ST2">random</span>() * <span class="number">2</span>);
|
||||
System.<span class="ST3">out</span>.println(rand);
|
||||
String returnValue = <span class="string">""</span>;
|
||||
<span class="literal">switch</span> (origin) {
|
||||
<span class="literal">case</span> <span class="string">"</span><span class="string">a</span><span class="string">"</span>:
|
||||
<span class="literal">if</span> (rand == <span class="number">0</span>) {
|
||||
returnValue = <span class="string">"</span><span class="string">b.xhtml</span><span class="string">"</span>;
|
||||
} <span class="literal">else</span> {
|
||||
returnValue = <span class="string">"</span><span class="string">defeat.xhtml</span><span class="string">"</span>;
|
||||
}
|
||||
<span class="literal">break</span>;
|
||||
<span class="literal">case</span> <span class="string">"</span><span class="string">b</span><span class="string">"</span>:
|
||||
<span class="literal">if</span> (rand == <span class="number">0</span>) {
|
||||
returnValue = <span class="string">"</span><span class="string">c.xhtml</span><span class="string">"</span>;
|
||||
} <span class="literal">else</span> {
|
||||
returnValue = <span class="string">"</span><span class="string">defeat.xhtml</span><span class="string">"</span>;
|
||||
}
|
||||
<span class="literal">break</span>;
|
||||
<span class="literal">case</span> <span class="string">"</span><span class="string">c</span><span class="string">"</span>:
|
||||
<span class="literal">if</span> (rand == <span class="number">0</span>) {
|
||||
returnValue = <span class="string">"</span><span class="string">victory.xhtml</span><span class="string">"</span>;
|
||||
} <span class="literal">else</span> {
|
||||
returnValue = <span class="string">"</span><span class="string">defeat.xhtml</span><span class="string">"</span>;
|
||||
}
|
||||
<span class="literal">break</span>;
|
||||
}
|
||||
System.<span class="ST3">out</span>.println(<span class="string">"</span><span class="string">Return value: </span><span class="string">"</span> + returnValue);
|
||||
<span class="literal">return</span> returnValue;
|
||||
}
|
||||
}
|
||||
|
||||
</pre></body>
|
||||
</html>
|
@@ -0,0 +1,42 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>a.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; font-weight: bold}
|
||||
pre {color: #a9b7c6; background-color: #2b2b2b; font-family: monospace; font-weight: bold}
|
||||
table {color: #888888; background-color: #313335; font-family: monospace; font-weight: bold}
|
||||
.highlight-caret-row {background-color: #323232}
|
||||
.expression-language {background-color: #232525}
|
||||
.ST0 {color: #628fb5}
|
||||
.ST2 {color: #287bde}
|
||||
.ST6 {color: #6a8759; background-color: #232525}
|
||||
.ST5 {color: #a5c261}
|
||||
.ST3 {color: #e8bf6a}
|
||||
.ST1 {color: #505050}
|
||||
.ST4 {color: #bababa}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<table width="100%"><tr><td align="center">/home/caleb/ASDV-Java/Semester 3/Assignments/MP2_Navigation_CalebFontenot/src/main/webapp/a.xhtml</td></tr></table>
|
||||
<pre>
|
||||
<span class="highlight-caret-row"><?xml version='1.0' encoding='UTF-8' ?></span>
|
||||
<span class="ST0"><!DOCTYPE</span> <span class="ST0">html</span> <span class="ST0">PUBLIC</span> <span class="ST0">"-//W3C//DTD</span> <span class="ST0">XHTML</span> <span class="ST0">1.0</span> <span class="ST0">Transitional//EN"</span> <span class="ST0">"</span><span class="ST2">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</span><span class="ST0">"</span><span class="ST0">></span>
|
||||
<span class="ST3"><</span><span class="ST3">html</span> <span class="ST4">xmlns</span><span class="ST4">=</span><span class="ST5">"</span><span class="ST2">http://www.w3.org/1999/xhtml</span><span class="ST5">"</span>
|
||||
<span class="ST4">xmlns:h</span><span class="ST4">=</span><span class="ST5">"</span><span class="ST2">http://xmlns.jcp.org/jsf/html</span><span class="ST5">"</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:head</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">title</span><span class="ST3">></span>a<span class="ST3"></</span><span class="ST3">title</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">h:head</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:body</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h1</span><span class="ST3">></span>You are on A.<span class="ST3"></</span><span class="ST3">h1</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:form</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:commandLink</span> <span class="ST4">value</span><span class="ST4">=</span><span class="ST5">"try to go to b"</span> <span class="ST4">action</span><span class="ST4">=</span><span class="ST5">'</span><span class="expression-language">#{</span><span class="expression-language">Navigator</span><span class="expression-language">.</span><span class="expression-language">determine</span><span class="expression-language">(</span><span class="ST6">"a"</span><span class="expression-language">)</span><span class="expression-language">}</span><span class="ST5">'</span><span class="ST3">/</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">h:form</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">h:body</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">html</span><span class="ST3">></span>
|
||||
|
||||
</pre></body>
|
||||
</html>
|
@@ -0,0 +1,42 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>b.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; font-weight: bold}
|
||||
pre {color: #a9b7c6; background-color: #2b2b2b; font-family: monospace; font-weight: bold}
|
||||
table {color: #888888; background-color: #313335; font-family: monospace; font-weight: bold}
|
||||
.highlight-caret-row {background-color: #323232}
|
||||
.expression-language {background-color: #232525}
|
||||
.ST0 {color: #628fb5}
|
||||
.ST2 {color: #287bde}
|
||||
.ST6 {color: #6a8759; background-color: #232525}
|
||||
.ST5 {color: #a5c261}
|
||||
.ST3 {color: #e8bf6a}
|
||||
.ST1 {color: #505050}
|
||||
.ST4 {color: #bababa}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<table width="100%"><tr><td align="center">/home/caleb/ASDV-Java/Semester 3/Assignments/MP2_Navigation_CalebFontenot/src/main/webapp/b.xhtml</td></tr></table>
|
||||
<pre>
|
||||
<span class="highlight-caret-row"><?xml version='1.0' encoding='UTF-8' ?></span>
|
||||
<span class="ST0"><!DOCTYPE</span> <span class="ST0">html</span> <span class="ST0">PUBLIC</span> <span class="ST0">"-//W3C//DTD</span> <span class="ST0">XHTML</span> <span class="ST0">1.0</span> <span class="ST0">Transitional//EN"</span> <span class="ST0">"</span><span class="ST2">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</span><span class="ST0">"</span><span class="ST0">></span>
|
||||
<span class="ST3"><</span><span class="ST3">html</span> <span class="ST4">xmlns</span><span class="ST4">=</span><span class="ST5">"</span><span class="ST2">http://www.w3.org/1999/xhtml</span><span class="ST5">"</span>
|
||||
<span class="ST4">xmlns:h</span><span class="ST4">=</span><span class="ST5">"</span><span class="ST2">http://xmlns.jcp.org/jsf/html</span><span class="ST5">"</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:head</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">title</span><span class="ST3">></span>b<span class="ST3"></</span><span class="ST3">title</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">h:head</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:body</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h1</span><span class="ST3">></span>Success! You are on B!<span class="ST3"></</span><span class="ST3">h1</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:form</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:commandLink</span> <span class="ST4">value</span><span class="ST4">=</span><span class="ST5">"try to go to c"</span> <span class="ST4">action</span><span class="ST4">=</span><span class="ST5">'</span><span class="expression-language">#{</span><span class="expression-language">Navigator</span><span class="expression-language">.</span><span class="expression-language">determine</span><span class="expression-language">(</span><span class="ST6">"b"</span><span class="expression-language">)</span><span class="expression-language">}</span><span class="ST5">'</span><span class="ST3">/</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">h:form</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">h:body</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">html</span><span class="ST3">></span>
|
||||
|
||||
</pre></body>
|
||||
</html>
|
@@ -0,0 +1,42 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>c.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; font-weight: bold}
|
||||
pre {color: #a9b7c6; background-color: #2b2b2b; font-family: monospace; font-weight: bold}
|
||||
table {color: #888888; background-color: #313335; font-family: monospace; font-weight: bold}
|
||||
.highlight-caret-row {background-color: #323232}
|
||||
.expression-language {background-color: #232525}
|
||||
.ST0 {color: #628fb5}
|
||||
.ST2 {color: #287bde}
|
||||
.ST6 {color: #6a8759; background-color: #232525}
|
||||
.ST5 {color: #a5c261}
|
||||
.ST3 {color: #e8bf6a}
|
||||
.ST1 {color: #505050}
|
||||
.ST4 {color: #bababa}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<table width="100%"><tr><td align="center">/home/caleb/ASDV-Java/Semester 3/Assignments/MP2_Navigation_CalebFontenot/src/main/webapp/c.xhtml</td></tr></table>
|
||||
<pre>
|
||||
<span class="highlight-caret-row"><?xml version='1.0' encoding='UTF-8' ?></span>
|
||||
<span class="ST0"><!DOCTYPE</span> <span class="ST0">html</span> <span class="ST0">PUBLIC</span> <span class="ST0">"-//W3C//DTD</span> <span class="ST0">XHTML</span> <span class="ST0">1.0</span> <span class="ST0">Transitional//EN"</span> <span class="ST0">"</span><span class="ST2">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</span><span class="ST0">"</span><span class="ST0">></span>
|
||||
<span class="ST3"><</span><span class="ST3">html</span> <span class="ST4">xmlns</span><span class="ST4">=</span><span class="ST5">"</span><span class="ST2">http://www.w3.org/1999/xhtml</span><span class="ST5">"</span>
|
||||
<span class="ST4">xmlns:h</span><span class="ST4">=</span><span class="ST5">"</span><span class="ST2">http://xmlns.jcp.org/jsf/html</span><span class="ST5">"</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:head</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">title</span><span class="ST3">></span>c<span class="ST3"></</span><span class="ST3">title</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">h:head</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:body</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h1</span><span class="ST3">></span>Success! You are on C!<span class="ST3"></</span><span class="ST3">h1</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:form</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:commandLink</span> <span class="ST4">value</span><span class="ST4">=</span><span class="ST5">"try to go to vitory"</span> <span class="ST4">action</span><span class="ST4">=</span><span class="ST5">'</span><span class="expression-language">#{</span><span class="expression-language">Navigator</span><span class="expression-language">.</span><span class="expression-language">determine</span><span class="expression-language">(</span><span class="ST6">"c"</span><span class="expression-language">)</span><span class="expression-language">}</span><span class="ST5">'</span><span class="ST3">/</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">h:form</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">h:body</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">html</span><span class="ST3">></span>
|
||||
|
||||
</pre></body>
|
||||
</html>
|
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>defeat.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; font-weight: bold}
|
||||
pre {color: #a9b7c6; background-color: #2b2b2b; font-family: monospace; font-weight: bold}
|
||||
table {color: #888888; background-color: #313335; font-family: monospace; font-weight: bold}
|
||||
.highlight-caret-row {background-color: #323232}
|
||||
.ST0 {color: #628fb5}
|
||||
.ST2 {color: #287bde}
|
||||
.ST5 {color: #a5c261}
|
||||
.ST3 {color: #e8bf6a}
|
||||
.ST1 {color: #505050}
|
||||
.ST4 {color: #bababa}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<table width="100%"><tr><td align="center">/home/caleb/ASDV-Java/Semester 3/Assignments/MP2_Navigation_CalebFontenot/src/main/webapp/defeat.xhtml</td></tr></table>
|
||||
<pre>
|
||||
<span class="highlight-caret-row"><?xml version='1.0' encoding='UTF-8' ?></span>
|
||||
<span class="ST0"><!DOCTYPE</span> <span class="ST0">html</span> <span class="ST0">PUBLIC</span> <span class="ST0">"-//W3C//DTD</span> <span class="ST0">XHTML</span> <span class="ST0">1.0</span> <span class="ST0">Transitional//EN"</span> <span class="ST0">"</span><span class="ST2">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</span><span class="ST0">"</span><span class="ST0">></span>
|
||||
<span class="ST3"><</span><span class="ST3">html</span> <span class="ST4">xmlns</span><span class="ST4">=</span><span class="ST5">"</span><span class="ST2">http://www.w3.org/1999/xhtml</span><span class="ST5">"</span>
|
||||
<span class="ST4">xmlns:h</span><span class="ST4">=</span><span class="ST5">"</span><span class="ST2">http://xmlns.jcp.org/jsf/html</span><span class="ST5">"</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:head</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">title</span><span class="ST3">></span>Defeat<span class="ST3"></</span><span class="ST3">title</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">h:head</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:body</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h1</span><span class="ST3">></span>Aww, sorry, you loose 😢<span class="ST3"></</span><span class="ST3">h1</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:form</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:commandLink</span> <span class="ST4">value</span><span class="ST4">=</span><span class="ST5">"Try again?"</span> <span class="ST4">action</span><span class="ST4">=</span><span class="ST5">"a.xhtml"</span><span class="ST3">/</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">h:form</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">h:body</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">html</span><span class="ST3">></span>
|
||||
|
||||
</pre></body>
|
||||
</html>
|
@@ -0,0 +1,39 @@
|
||||
<!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; font-weight: bold}
|
||||
pre {color: #a9b7c6; background-color: #2b2b2b; font-family: monospace; font-weight: bold}
|
||||
table {color: #888888; background-color: #313335; font-family: monospace; font-weight: bold}
|
||||
.highlight-caret-row {background-color: #323232}
|
||||
.ST0 {color: #628fb5}
|
||||
.ST2 {color: #287bde}
|
||||
.ST5 {color: #a5c261}
|
||||
.ST3 {color: #e8bf6a}
|
||||
.ST1 {color: #505050}
|
||||
.ST4 {color: #bababa}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<table width="100%"><tr><td align="center">/home/caleb/ASDV-Java/Semester 3/Assignments/MP2_Navigation_CalebFontenot/src/main/webapp/index.xhtml</td></tr></table>
|
||||
<pre>
|
||||
<span class="highlight-caret-row"><?xml version='1.0' encoding='UTF-8' ?></span>
|
||||
<span class="ST0"><!DOCTYPE</span> <span class="ST0">html</span> <span class="ST0">PUBLIC</span> <span class="ST0">"-//W3C//DTD</span> <span class="ST0">XHTML</span> <span class="ST0">1.0</span> <span class="ST0">Transitional//EN"</span> <span class="ST0">"</span><span class="ST2">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</span><span class="ST0">"</span><span class="ST0">></span>
|
||||
<span class="ST3"><</span><span class="ST3">html</span> <span class="ST4">xmlns</span><span class="ST4">=</span><span class="ST5">"</span><span class="ST2">http://www.w3.org/1999/xhtml</span><span class="ST5">"</span>
|
||||
<span class="ST4">xmlns:h</span><span class="ST4">=</span><span class="ST5">"</span><span class="ST2">http://xmlns.jcp.org/jsf/html</span><span class="ST5">"</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:head</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">title</span><span class="ST3">></span>Facelet Title<span class="ST3"></</span><span class="ST3">title</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">h:head</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:body</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:form</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:commandLink</span> <span class="ST4">value</span><span class="ST4">=</span><span class="ST5">"Go to a"</span> <span class="ST4">action</span><span class="ST4">=</span><span class="ST5">"a.xhtml"</span><span class="ST3">/</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">h:form</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">h:body</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">html</span><span class="ST3">></span>
|
||||
|
||||
</pre></body>
|
||||
</html>
|
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>victory.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; font-weight: bold}
|
||||
pre {color: #a9b7c6; background-color: #2b2b2b; font-family: monospace; font-weight: bold}
|
||||
table {color: #888888; background-color: #313335; font-family: monospace; font-weight: bold}
|
||||
.highlight-caret-row {background-color: #323232}
|
||||
.ST0 {color: #628fb5}
|
||||
.ST2 {color: #287bde}
|
||||
.ST5 {color: #a5c261}
|
||||
.ST3 {color: #e8bf6a}
|
||||
.ST1 {color: #505050}
|
||||
.ST4 {color: #bababa}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<table width="100%"><tr><td align="center">/home/caleb/ASDV-Java/Semester 3/Assignments/MP2_Navigation_CalebFontenot/src/main/webapp/victory.xhtml</td></tr></table>
|
||||
<pre>
|
||||
<span class="highlight-caret-row"><?xml version='1.0' encoding='UTF-8' ?></span>
|
||||
<span class="ST0"><!DOCTYPE</span> <span class="ST0">html</span> <span class="ST0">PUBLIC</span> <span class="ST0">"-//W3C//DTD</span> <span class="ST0">XHTML</span> <span class="ST0">1.0</span> <span class="ST0">Transitional//EN"</span> <span class="ST0">"</span><span class="ST2">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</span><span class="ST0">"</span><span class="ST0">></span>
|
||||
<span class="ST3"><</span><span class="ST3">html</span> <span class="ST4">xmlns</span><span class="ST4">=</span><span class="ST5">"</span><span class="ST2">http://www.w3.org/1999/xhtml</span><span class="ST5">"</span>
|
||||
<span class="ST4">xmlns:h</span><span class="ST4">=</span><span class="ST5">"</span><span class="ST2">http://xmlns.jcp.org/jsf/html</span><span class="ST5">"</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:head</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">title</span><span class="ST3">></span>Victory<span class="ST3"></</span><span class="ST3">title</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">h:head</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:body</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h1</span><span class="ST3">></span>Victory! 🎉<span class="ST3"></</span><span class="ST3">h1</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:form</span><span class="ST3">></span>
|
||||
<span class="ST3"><</span><span class="ST3">h:commandLink</span> <span class="ST4">value</span><span class="ST4">=</span><span class="ST5">"Try again?"</span> <span class="ST4">action</span><span class="ST4">=</span><span class="ST5">"a.xhtml"</span><span class="ST3">/</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">h:form</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">h:body</span><span class="ST3">></span>
|
||||
<span class="ST3"></</span><span class="ST3">html</span><span class="ST3">></span>
|
||||
|
||||
</pre></body>
|
||||
</html>
|
@@ -0,0 +1,20 @@
|
||||
<?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>JSP</org-netbeans-modules-projectapi.jsf_2e_language>
|
||||
</properties>
|
||||
</project-shared-configuration>
|
77
Semester 2/Assignments/MP2_Navigation_CalebFontenot/pom.xml
Normal file
77
Semester 2/Assignments/MP2_Navigation_CalebFontenot/pom.xml
Normal 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>com.calebfontenot</groupId>
|
||||
<artifactId>MP2_Navigation_CalebFontenot</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<packaging>war</packaging>
|
||||
<name>MP2_Navigation_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>
|
@@ -0,0 +1,13 @@
|
||||
package com.calebfontenot.mp2_navigation_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 {
|
||||
|
||||
}
|
@@ -0,0 +1,20 @@
|
||||
package com.calebfontenot.mp2_navigation_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();
|
||||
}
|
||||
}
|
@@ -0,0 +1,55 @@
|
||||
package edu.slcc.asdv.pojo;
|
||||
|
||||
/*
|
||||
* 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
|
||||
*/
|
||||
|
||||
import jakarta.inject.Named;
|
||||
import jakarta.enterprise.context.RequestScoped;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
*/
|
||||
@Named(value = "Navigator")
|
||||
@RequestScoped
|
||||
public class Navigator {
|
||||
|
||||
/**
|
||||
* Creates a new instance of Navigator
|
||||
*/
|
||||
public Navigator() {
|
||||
}
|
||||
|
||||
public String determine(String origin) {
|
||||
int rand = (int) (Math.random() * 2);
|
||||
System.out.println(rand);
|
||||
String returnValue = "";
|
||||
switch (origin) {
|
||||
case "a":
|
||||
if (rand == 0) {
|
||||
returnValue = "b.xhtml";
|
||||
} else {
|
||||
returnValue = "defeat.xhtml";
|
||||
}
|
||||
break;
|
||||
case "b":
|
||||
if (rand == 0) {
|
||||
returnValue = "c.xhtml";
|
||||
} else {
|
||||
returnValue = "defeat.xhtml";
|
||||
}
|
||||
break;
|
||||
case "c":
|
||||
if (rand == 0) {
|
||||
returnValue = "victory.xhtml";
|
||||
} else {
|
||||
returnValue = "defeat.xhtml";
|
||||
}
|
||||
break;
|
||||
}
|
||||
System.out.println("Return value: " + returnValue);
|
||||
return returnValue;
|
||||
}
|
||||
}
|
@@ -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>
|
@@ -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>
|
@@ -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>
|
@@ -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>
|
@@ -0,0 +1,14 @@
|
||||
<?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>a</title>
|
||||
</h:head>
|
||||
<h:body>
|
||||
<h1>You are on A.</h1>
|
||||
<h:form>
|
||||
<h:commandLink value="try to go to b" action='#{Navigator.determine("a")}'/>
|
||||
</h:form>
|
||||
</h:body>
|
||||
</html>
|
@@ -0,0 +1,14 @@
|
||||
<?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>b</title>
|
||||
</h:head>
|
||||
<h:body>
|
||||
<h1>Success! You are on B!</h1>
|
||||
<h:form>
|
||||
<h:commandLink value="try to go to c" action='#{Navigator.determine("b")}'/>
|
||||
</h:form>
|
||||
</h:body>
|
||||
</html>
|
@@ -0,0 +1,14 @@
|
||||
<?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>c</title>
|
||||
</h:head>
|
||||
<h:body>
|
||||
<h1>Success! You are on C!</h1>
|
||||
<h:form>
|
||||
<h:commandLink value="try to go to vitory" action='#{Navigator.determine("c")}'/>
|
||||
</h:form>
|
||||
</h:body>
|
||||
</html>
|
@@ -0,0 +1,14 @@
|
||||
<?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>Defeat</title>
|
||||
</h:head>
|
||||
<h:body>
|
||||
<h1>Aww, sorry, you loose 😢</h1>
|
||||
<h:form>
|
||||
<h:commandLink value="Try again?" action="a.xhtml"/>
|
||||
</h:form>
|
||||
</h:body>
|
||||
</html>
|
@@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Start Page</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Hello World!</h1>
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,13 @@
|
||||
<?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>Facelet Title</title>
|
||||
</h:head>
|
||||
<h:body>
|
||||
<h:form>
|
||||
<h:commandLink value="Go to a" action="a.xhtml"/>
|
||||
</h:form>
|
||||
</h:body>
|
||||
</html>
|
@@ -0,0 +1,14 @@
|
||||
<?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>Victory</title>
|
||||
</h:head>
|
||||
<h:body>
|
||||
<h1>Victory! 🎉</h1>
|
||||
<h:form>
|
||||
<h:commandLink value="Try again?" action="a.xhtml"/>
|
||||
</h:form>
|
||||
</h:body>
|
||||
</html>
|
Reference in New Issue
Block a user