-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from chrismills/master
Issue #7 and Jersey lib fix (to track the jersey jars)
- Loading branch information
Showing
26 changed files
with
43 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#Override .gitignore at the root level and include JAR's in this folder. The whole DC's purpose is to be a collection of libraries so we want it tracked in source control | ||
!*.jar |
Binary file added
BIN
+313 KB
jaylin.com.au/z_jersey_lib/_comp/libraries/asm-all-repackaged-2.2.0-b14.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+25.7 KB
jaylin.com.au/z_jersey_lib/_comp/libraries/javax.annotation-api-1.2.jar
Binary file not shown.
Binary file added
BIN
+5.85 KB
jaylin.com.au/z_jersey_lib/_comp/libraries/javax.inject-2.2.0-b14.jar
Binary file not shown.
Binary file added
BIN
+83.4 KB
jaylin.com.au/z_jersey_lib/_comp/libraries/javax.servlet-api-3.0.1.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+51.6 KB
jaylin.com.au/z_jersey_lib/_comp/libraries/jersey-container-servlet-core.jar
Binary file not shown.
Binary file added
BIN
+15.7 KB
jaylin.com.au/z_jersey_lib/_comp/libraries/jersey-container-servlet.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+19.8 KB
jaylin.com.au/z_jersey_lib/_comp/libraries/osgi-resource-locator-1.0.1.jar
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+62.3 KB
jaylin.com.au/z_jersey_lib/_comp/libraries/validation-api-1.1.0.Final.jar
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
...au/zpi_ejb/_comp/ejbModule/au/com/jaylin/persistence/ejbs/ApplicationPropertiesLocal.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
package au.com.jaylin.persistence.ejbs; | ||
import java.util.Date; | ||
|
||
import javax.ejb.Local; | ||
|
||
@Local | ||
public interface ApplicationPropertiesLocal { | ||
public String getHostUrl(); | ||
public String getUsername(); | ||
public String getPassword(); | ||
public int getMessageMaxResults(); | ||
public Date getBaseDate(); | ||
public int getLogEntryMaxResults(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters