Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
16 changes: 16 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry exported="true" kind="lib" path="libs/commons-codec-1.4.jar">
<attributes>
<attribute name="javadoc_location" value="http://commons.apache.org/codec/apidocs/"/>
</attributes>
</classpathentry>
<classpathentry exported="true" kind="lib" path="libs/gson-2.2.1.jar">
<attributes>
<attribute name="javadoc_location" value="http://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/"/>
</attributes>
</classpathentry>
<classpathentry exported="true" kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="bin"/>
</classpath>
23 changes: 16 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
#don't commit the properties file for tests
test.properties
# Build & Release Folders.
bin/
doc/

*.class
# Package Files
.war
.ear
.swp

# Package Files #
*.war
*.ear
*.swp
# Compiled Java files.
.class

# Experimental Bits
# The output from an XML Doclet.
jel/

# Properties File for Tests
test.properties
17 changes: 17 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>java_telesign</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>
7 changes: 7 additions & 0 deletions ant.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
bin-dir=bin
doc-dir=doc
jel-dir=jel
lib-dir=libs
src-dir=src
test-dir=test
javadoc-access=public
21 changes: 21 additions & 0 deletions bin/com/telesign/phoneid/package.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<body>
<p>
Contains the PhoneId class, which abstracts calls to the TeleSign PhoneID Web Service.
</p>
<p>
The PhoneID web service retrieves information about a specified phone number. This includes the it's:
</p>
<ul>
<li>Type,</li>
<li>Numbering Structure,</li>
<li>Cleansing Details, and</li>
<li>Location.</li>
</ul>
<p>
Using this service, you can decide what types of phone numbers to accept from users,
or determine whether the numbers that users submit coincide with the address information provided.
</p>
</body>
</html>
8 changes: 8 additions & 0 deletions bin/com/telesign/phoneid/response/package.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<!DOCTYPE html>
<html>
<body>
<p>
Contains a set of classes that represent TeleSign server response objects�one for each of the PhoneID web services.
</p>
</body>
</html>
8 changes: 8 additions & 0 deletions bin/com/telesign/util/package.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<!DOCTYPE html>
<html>
<body>
<p>
Contains a class for normalizing a phone number, and a class that represents a TeleSign service request object.
</p>
</body>
</html>
13 changes: 13 additions & 0 deletions bin/com/telesign/verify/package.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<body>
<p>
Contains the Verify class, which abstracts calls to the TeleSign Verify Web Service.
</p>
<p>
The Phone Verify web service provides an identity verification solution that uses the telephone to deliver a one-time validation code to your end users.
Upon receiving this code, your users just type it into their computer and send it back to you (or to us if they dial it into their phone).
The validity of their identity is then determined by simply comparing the codes they return to the ones we send them�and a match is considered positive identification.
</p>
</body>
</html>
8 changes: 8 additions & 0 deletions bin/com/telesign/verify/response/package.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<!DOCTYPE html>
<html>
<body>
<p>
Contains a class that represents the TeleSign server response object for the Phone Verify web service.
</p>
</body>
</html>
33 changes: 33 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project name="TeleSign Java SDK" default="HTML Docs" basedir=".">
<property name="javadoc.header" value="&lt;strong&gt;TeleSign Java SDK&lt;/strong&gt;&#09;v1.0" />
<property name="javadoc.footer" value="&lt;strong&gt;DocBuild:&lt;/strong&gt;&#09;&lt;script&gt; var tStamp=new Date(); document.write(tStamp.toUTCString()); &lt;/script&gt;" />
<property name="javadoc.bottom" value='Copyright &amp;copy; &lt;script&gt; var currYear=new Date(); document.write(currYear.getFullYear()); &lt;/script&gt;, TeleSign Corp., All rights reserved.' />
<target name="HTML Docs">
<javadoc access="private"
additionalparam=" -noqualifier java.lang:java.io "
author="true"
classpath="libs/commons-codec-1.4.jar;libs/gson-2.2.1.jar"
destdir="${basedir}/doc"
doctitle="TeleSign Java SDK Documentation"
nodeprecated="true"
nodeprecatedlist="true"
noindex="false"
nonavbar="false"
notree="false"
overview="C:\Users\Chris\src\java_telesign\overview.html"
packagenames="com.telesign.verify,com.telesign.util,com.telesign.verify.response,com.telesign.phoneid,com.telesign.phoneid.response"
source="1.7.0"
sourcepath="${basedir}/src"
splitindex="true"
use="true"
version="true">
<link href="file:/C:/Users/Chris/src/java_telesign/doc/"/>
<link href="http://download.oracle.com/javase/7/docs/api/"/>
<link href="http://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/"/>
<header><![CDATA[${javadoc.header}]]></header>
<footer><![CDATA[${javadoc.footer}]]></footer>
<bottom><![CDATA[${javadoc.bottom}]]></bottom>
</javadoc>
</target>
</project>
72 changes: 0 additions & 72 deletions doc/allclasses-frame.html

This file was deleted.

Loading