Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
6202fe9
testing
Claire-Zheng May 13, 2019
46cfafe
Test of commit
enoreyes May 13, 2019
2094da8
Test of Commit
enoreyes May 13, 2019
5e83c4e
Test
enoreyes May 13, 2019
a498183
hello
May 14, 2019
3b0b222
hello, changed the readme
May 14, 2019
04237ba
hello
May 14, 2019
23f1d92
completed base implementation of STOCK class
May 14, 2019
49f0f58
to do
May 14, 2019
05fc801
converts strings into dates in the PRICES map and sorts PRICES by date
May 14, 2019
a18282a
all of the setup files
May 15, 2019
60b0ff5
Added updated Company model
enoreyes May 15, 2019
82c3e38
added an EQUALS method for STOCK objects
May 15, 2019
f4809a1
Merge pull request #1 from enoreyes/eno
enoreyes May 15, 2019
4a7dc08
added date filter methods for between two dates, from a start date, a…
May 15, 2019
560c233
stock class should be done
May 15, 2019
4bf52ba
Merge branch 'master' into lisa
enoreyes May 15, 2019
cf390e6
Merge pull request #2 from enoreyes/lisa
enoreyes May 15, 2019
5e43b26
Updates
enoreyes May 15, 2019
627d94c
Merge branch 'master' of https://github.com/enoreyes/EngineeringEssen…
enoreyes May 15, 2019
42e4ff4
Updated CompanyResource
enoreyes May 15, 2019
67a36f8
Updated Company + Company Resource
enoreyes May 15, 2019
e7045dc
Merge pull request #3 from enoreyes/eno
enoreyes May 15, 2019
f411045
parsed all company data
Claire-Zheng May 15, 2019
c2ab2a8
Update Stock.java
juyoungkim-lisa May 15, 2019
15f6f0f
Update StockResource.java
juyoungkim-lisa May 15, 2019
ea6e8e5
Update CompanyResource.java
juyoungkim-lisa May 15, 2019
c2c4601
Merge branch 'master' into Claire
enoreyes May 15, 2019
89bdf82
Update Company.java
juyoungkim-lisa May 15, 2019
598e7b4
Update README.md
enoreyes May 15, 2019
7abf55f
Merge branch 'master' into Claire
enoreyes May 15, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

137 changes: 137 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Debug (Launch) - Current File",
"request": "launch",
"mainClass": "${file}"
}
]
}
17 changes: 0 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +0,0 @@
# Pull Requests

There is no contribution agreement in place, so we are not accepting external pull requests at this time.

# Engineering Essentials

Goldman Sachs Engineering Essentials is a four day program designed to help current college sophomores develop the essential skills and tools to prepare for a successful career as a software engineer.

Read more at http://www.goldmansachs.com/careers/students/programs/americas/engineering-essentials.html

## Technical Curriculum

As part of the technical curriculum, you will learn how to model a system, build RESTful services and create a user interface for your application.

## Case Study - Stock Visualization Application

Apply the knowledge that you have learned from the modelling, services and UI learning sessions to build a stock visualization application
9 changes: 9 additions & 0 deletions caseStudy/.classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="src" path="services/src/main/java"/>
<classpathentry kind="src" path="services/src/test/java"/>
<classpathentry kind="lib" path="C:/Users/clair/Downloads/json-20180813-javadoc.jar"/>
<classpathentry kind="lib" path="C:/Users/clair/Downloads/json-simple-1.1.1.jar/json-simple-1.1.1.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
1 change: 1 addition & 0 deletions caseStudy/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/bin/
17 changes: 17 additions & 0 deletions caseStudy/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>caseStudy</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
49 changes: 49 additions & 0 deletions caseStudy/services/.classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="target/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="target/generated-sources/annotations">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="ignore_optional_problems" value="true"/>
<attribute name="m2e-apt" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="target/generated-test-sources/test-annotations">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="ignore_optional_problems" value="true"/>
<attribute name="m2e-apt" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
1 change: 1 addition & 0 deletions caseStudy/services/.idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions caseStudy/services/.idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions caseStudy/services/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions caseStudy/services/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading