-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWithinOctane.java
More file actions
34 lines (28 loc) · 1.08 KB
/
WithinOctane.java
File metadata and controls
34 lines (28 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package withinoctane;
import java.io.IOException;
import java.text.ParseException;
/**
*
* @author bruijsez
*/
public class WithinOctane {
public WithinOctane() throws ParseException, IOException, org.json.simple.parser.ParseException {
Authentication authentication = new Authentication();
GetChanged getchanged = new GetChanged(authentication);
System.out.println("GetChanged " + getchanged.story()+"end of getchanged");
PostStory poststory = new PostStory(authentication);
System.out.println("PostStory " + poststory.PostStory());
}
/**
* @param args the command line arguments
* @throws java.text.ParseException
*/
public static void main(String[] args) throws ParseException, IOException, org.json.simple.parser.ParseException {
WithinOctane withinOctane = new WithinOctane();
}
}