Skip to content

Commit

Permalink
changes to j2me code for new error framework and PAM
Browse files Browse the repository at this point in the history
  • Loading branch information
Devendra committed Jul 9, 2013
1 parent e13fa9d commit 8b1f98a
Show file tree
Hide file tree
Showing 34 changed files with 247 additions and 148 deletions.
Binary file modified android/Pubnub-Android-3.5.2.jar
Binary file not shown.
Binary file modified android/examples/PubnubExample/libs/Pubnub-Android-3.5.2.jar
Binary file not shown.
Binary file modified android/examples/SubscribeAtBoot/libs/Pubnub-Android-3.5.2.jar
Binary file not shown.
Binary file modified blackberry/Pubnub-BlackBerry-3.5.2.jar
Binary file not shown.
Binary file modified codenameone/pubnub-codenameone-3.5.2.cn1lib
Binary file not shown.
Binary file modified j2me/Pubnub-MicroEdition-3.5.2.jar
Binary file not shown.
37 changes: 35 additions & 2 deletions j2me/src1/com/pubnub/api/HttpClientCore.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@

import com.tinyline.util.GZIPInputStream;

import org.json.me.*;

public class HttpClientCore extends HttpClient {
private int requestTimeout = 310000;
private int connectionTimeout = 5000;
Expand Down Expand Up @@ -89,11 +91,11 @@ public boolean checkResponse(int rc) {
return (rc == HttpConnection.HTTP_OK || isRedirect(rc));
}

public HttpResponse fetch(String url) throws IOException {
public HttpResponse fetch(String url) throws PubnubException, IOException {
return fetch(url, null);
}

public HttpResponse fetch(String url, Hashtable headers) throws IOException {
public HttpResponse fetch(String url, Hashtable headers) throws PubnubException, IOException {
if (url == null)
throw new IOException("Invalid Url");

Expand Down Expand Up @@ -159,6 +161,37 @@ public HttpResponse fetch(String url, Hashtable headers) throws IOException {
}

response = readResponse(hc);
switch (rc) {
case HttpUtil.HTTP_FORBIDDEN:
throw new PubnubException(PubnubError.getErrorObject(PubnubError.PNERROBJ_FORBIDDEN, response));
case HttpUtil.HTTP_UNAUTHORIZED:
throw new PubnubException(PubnubError.getErrorObject(PubnubError.PNERROBJ_UNAUTHORIZED, response));
case HttpUtil.HTTP_BAD_REQUEST:
try {
JSONArray jsarr = new JSONArray(response);
String error = jsarr.get(1).toString();
throw new PubnubException(PubnubError.getErrorObject(PubnubError.PNERROBJ_BAD_REQUEST, 1, error));
} catch (JSONException e) {
JSONObject jso;
try {
jso = new JSONObject(response);
throw new PubnubException(PubnubError.getErrorObject(PubnubError.PNERROBJ_BAD_REQUEST, 2, jso.toString()));
} catch (JSONException e1) {
throw new PubnubException(PubnubError.getErrorObject(PubnubError.PNERROBJ_INVALID_JSON, 2));
}
}
case HttpUtil.HTTP_BAD_GATEWAY:
throw new PubnubException(PubnubError.getErrorObject(PubnubError.PNERROBJ_BAD_GATEWAY, url));
case HttpUtil.HTTP_CLIENT_TIMEOUT:
throw new PubnubException(PubnubError.getErrorObject(PubnubError.PNERROBJ_CLIENT_TIMEOUT, url));
case HttpUtil.HTTP_GATEWAY_TIMEOUT:
throw new PubnubException(PubnubError.getErrorObject(PubnubError.PNERROBJ_GATEWAY_TIMEOUT, url));
case HttpUtil.HTTP_INTERNAL_ERROR:
throw new PubnubException(PubnubError.getErrorObject(PubnubError.PNERROBJ_INTERNAL_ERROR, url));
default:
break;
}

hc.close();
return new HttpResponse(rc, response);
}
Expand Down
19 changes: 18 additions & 1 deletion j2me/src1/com/pubnub/api/SubscribeWorker.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

class SubscribeWorker extends AbstractSubscribeWorker {

private Exception excp = null;

SubscribeWorker(Vector _requestQueue, int connectionTimeout,
int requestTimeout, int maxRetries, int retryInterval, Hashtable headers) {
super(_requestQueue, connectionTimeout, requestTimeout,
Expand Down Expand Up @@ -33,7 +35,22 @@ void process(HttpRequest hreq) {
}
break;
} */catch (Exception e) {
}*/catch (PubnubException e) {
excp = e;
switch (e.getPubnubError().errorCode) {
case PubnubError.PNERR_FORBIDDEN:
case PubnubError.PNERR_UNAUTHORIZED:
log.verbose("Authentication Failure : " + e.toString());
currentRetryAttempt = maxRetries + 1;
break;
default:
log.verbose("Retry Attempt : " + ((currentRetryAttempt == maxRetries)?"last":String.valueOf(currentRetryAttempt))
+ " Exception in Fetch : " + e.toString());
currentRetryAttempt++;
break;
}

} catch (Exception e) {
log.verbose("Retry Attempt : " + ((currentRetryAttempt == maxRetries)?"last":String.valueOf(currentRetryAttempt))
+ " Exception in Fetch : " + e.toString());
currentRetryAttempt++;
Expand Down
Binary file modified java/Pubnub-StandardEdition-3.5.2.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion java/doc/allclasses-frame.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_37) on Tue Jul 09 10:04:57 IST 2013 -->
<!-- Generated by javadoc (build 1.6.0_37) on Tue Jul 09 15:10:08 IST 2013 -->
<TITLE>
All Classes
</TITLE>
Expand Down
2 changes: 1 addition & 1 deletion java/doc/allclasses-noframe.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_37) on Tue Jul 09 10:04:57 IST 2013 -->
<!-- Generated by javadoc (build 1.6.0_37) on Tue Jul 09 15:10:08 IST 2013 -->
<TITLE>
All Classes
</TITLE>
Expand Down
2 changes: 1 addition & 1 deletion java/doc/com/pubnub/api/Callback.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_37) on Tue Jul 09 10:04:56 IST 2013 -->
<!-- Generated by javadoc (build 1.6.0_37) on Tue Jul 09 15:10:06 IST 2013 -->
<TITLE>
Callback
</TITLE>
Expand Down
2 changes: 1 addition & 1 deletion java/doc/com/pubnub/api/HttpUtil.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_37) on Tue Jul 09 10:04:56 IST 2013 -->
<!-- Generated by javadoc (build 1.6.0_37) on Tue Jul 09 15:10:07 IST 2013 -->
<TITLE>
HttpUtil
</TITLE>
Expand Down
161 changes: 96 additions & 65 deletions java/doc/com/pubnub/api/Pubnub.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_37) on Tue Jul 09 10:04:56 IST 2013 -->
<!-- Generated by javadoc (build 1.6.0_37) on Tue Jul 09 15:10:07 IST 2013 -->
<TITLE>
Pubnub
</TITLE>
Expand Down Expand Up @@ -492,6 +492,68 @@ <H2>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../com/pubnub/api/Pubnub.html#pamAudit(com.pubnub.api.Callback)">pamAudit</A></B>(<A HREF="../../../com/pubnub/api/Callback.html" title="class in com.pubnub.api">Callback</A>&nbsp;callback)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ULS Audit</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../com/pubnub/api/Pubnub.html#pamAudit(java.lang.String, com.pubnub.api.Callback)">pamAudit</A></B>(java.lang.String&nbsp;channel,
<A HREF="../../../com/pubnub/api/Callback.html" title="class in com.pubnub.api">Callback</A>&nbsp;callback)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ULS audit by channel</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../com/pubnub/api/Pubnub.html#pamAudit(java.lang.String, java.lang.String, com.pubnub.api.Callback)">pamAudit</A></B>(java.lang.String&nbsp;channel,
java.lang.String&nbsp;auth_key,
<A HREF="../../../com/pubnub/api/Callback.html" title="class in com.pubnub.api">Callback</A>&nbsp;callback)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ULS audit by channel and auth key</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../com/pubnub/api/Pubnub.html#pamGrant(java.lang.String, java.lang.String, boolean, boolean, com.pubnub.api.Callback)">pamGrant</A></B>(java.lang.String&nbsp;channel,
java.lang.String&nbsp;auth_key,
boolean&nbsp;read,
boolean&nbsp;write,
<A HREF="../../../com/pubnub/api/Callback.html" title="class in com.pubnub.api">Callback</A>&nbsp;callback)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Grant r/w access based on channel and auth key</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../com/pubnub/api/Pubnub.html#pamGrant(java.lang.String, java.lang.String, boolean, boolean, int, com.pubnub.api.Callback)">pamGrant</A></B>(java.lang.String&nbsp;channel,
java.lang.String&nbsp;auth_key,
boolean&nbsp;read,
boolean&nbsp;write,
int&nbsp;ttl,
<A HREF="../../../com/pubnub/api/Callback.html" title="class in com.pubnub.api">Callback</A>&nbsp;callback)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Grant r/w access based on channel and auth key</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../com/pubnub/api/Pubnub.html#pamRevoke(java.lang.String, java.lang.String, com.pubnub.api.Callback)">pamRevoke</A></B>(java.lang.String&nbsp;channel,
java.lang.String&nbsp;auth_key,
<A HREF="../../../com/pubnub/api/Callback.html" title="class in com.pubnub.api">Callback</A>&nbsp;callback)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ULS revoke by channel and auth key</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../com/pubnub/api/Pubnub.html#presence(java.lang.String, com.pubnub.api.Callback)">presence</A></B>(java.lang.String&nbsp;channel,
<A HREF="../../../com/pubnub/api/Callback.html" title="class in com.pubnub.api">Callback</A>&nbsp;callback)</CODE>

Expand Down Expand Up @@ -752,55 +814,6 @@ <H2>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../com/pubnub/api/Pubnub.html#ulsAudit(com.pubnub.api.Callback)">ulsAudit</A></B>(<A HREF="../../../com/pubnub/api/Callback.html" title="class in com.pubnub.api">Callback</A>&nbsp;callback)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ULS Audit</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../com/pubnub/api/Pubnub.html#ulsAudit(java.lang.String, com.pubnub.api.Callback)">ulsAudit</A></B>(java.lang.String&nbsp;channel,
<A HREF="../../../com/pubnub/api/Callback.html" title="class in com.pubnub.api">Callback</A>&nbsp;callback)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ULS audit by channel</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../com/pubnub/api/Pubnub.html#ulsAudit(java.lang.String, java.lang.String, com.pubnub.api.Callback)">ulsAudit</A></B>(java.lang.String&nbsp;channel,
java.lang.String&nbsp;auth_key,
<A HREF="../../../com/pubnub/api/Callback.html" title="class in com.pubnub.api">Callback</A>&nbsp;callback)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ULS audit by channel and auth key</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../com/pubnub/api/Pubnub.html#ulsGrant(java.lang.String, java.lang.String, boolean, boolean, com.pubnub.api.Callback)">ulsGrant</A></B>(java.lang.String&nbsp;channel,
java.lang.String&nbsp;auth_key,
boolean&nbsp;read,
boolean&nbsp;write,
<A HREF="../../../com/pubnub/api/Callback.html" title="class in com.pubnub.api">Callback</A>&nbsp;callback)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Grant r/w access based on channel and auth key</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../com/pubnub/api/Pubnub.html#ulsRevoke(java.lang.String, java.lang.String, com.pubnub.api.Callback)">ulsRevoke</A></B>(java.lang.String&nbsp;channel,
java.lang.String&nbsp;auth_key,
<A HREF="../../../com/pubnub/api/Callback.html" title="class in com.pubnub.api">Callback</A>&nbsp;callback)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ULS revoke by channel and auth key</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../com/pubnub/api/Pubnub.html#unsetAuthKey()">unsetAuthKey</A></B>()</CODE>

<BR>
Expand Down Expand Up @@ -1421,13 +1434,31 @@ <H2>
</DL>
<HR>

<A NAME="ulsGrant(java.lang.String, java.lang.String, boolean, boolean, com.pubnub.api.Callback)"><!-- --></A><H3>
ulsGrant</H3>
<A NAME="pamGrant(java.lang.String, java.lang.String, boolean, boolean, com.pubnub.api.Callback)"><!-- --></A><H3>
pamGrant</H3>
<PRE>
public void <B>pamGrant</B>(java.lang.String&nbsp;channel,
java.lang.String&nbsp;auth_key,
boolean&nbsp;read,
boolean&nbsp;write,
<A HREF="../../../com/pubnub/api/Callback.html" title="class in com.pubnub.api">Callback</A>&nbsp;callback)</PRE>
<DL>
<DD>Grant r/w access based on channel and auth key
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>channel</CODE> - <DD><CODE>auth_key</CODE> - <DD><CODE>read</CODE> - <DD><CODE>write</CODE> - <DD><CODE>callback</CODE> - </DL>
</DD>
</DL>
<HR>

<A NAME="pamGrant(java.lang.String, java.lang.String, boolean, boolean, int, com.pubnub.api.Callback)"><!-- --></A><H3>
pamGrant</H3>
<PRE>
public void <B>ulsGrant</B>(java.lang.String&nbsp;channel,
public void <B>pamGrant</B>(java.lang.String&nbsp;channel,
java.lang.String&nbsp;auth_key,
boolean&nbsp;read,
boolean&nbsp;write,
int&nbsp;ttl,
<A HREF="../../../com/pubnub/api/Callback.html" title="class in com.pubnub.api">Callback</A>&nbsp;callback)</PRE>
<DL>
<DD>Grant r/w access based on channel and auth key
Expand All @@ -1438,10 +1469,10 @@ <H2>
</DL>
<HR>

<A NAME="ulsAudit(com.pubnub.api.Callback)"><!-- --></A><H3>
ulsAudit</H3>
<A NAME="pamAudit(com.pubnub.api.Callback)"><!-- --></A><H3>
pamAudit</H3>
<PRE>
public void <B>ulsAudit</B>(<A HREF="../../../com/pubnub/api/Callback.html" title="class in com.pubnub.api">Callback</A>&nbsp;callback)</PRE>
public void <B>pamAudit</B>(<A HREF="../../../com/pubnub/api/Callback.html" title="class in com.pubnub.api">Callback</A>&nbsp;callback)</PRE>
<DL>
<DD>ULS Audit
<P>
Expand All @@ -1451,10 +1482,10 @@ <H2>
</DL>
<HR>

<A NAME="ulsAudit(java.lang.String, com.pubnub.api.Callback)"><!-- --></A><H3>
ulsAudit</H3>
<A NAME="pamAudit(java.lang.String, com.pubnub.api.Callback)"><!-- --></A><H3>
pamAudit</H3>
<PRE>
public void <B>ulsAudit</B>(java.lang.String&nbsp;channel,
public void <B>pamAudit</B>(java.lang.String&nbsp;channel,
<A HREF="../../../com/pubnub/api/Callback.html" title="class in com.pubnub.api">Callback</A>&nbsp;callback)</PRE>
<DL>
<DD>ULS audit by channel
Expand All @@ -1465,10 +1496,10 @@ <H2>
</DL>
<HR>

<A NAME="ulsAudit(java.lang.String, java.lang.String, com.pubnub.api.Callback)"><!-- --></A><H3>
ulsAudit</H3>
<A NAME="pamAudit(java.lang.String, java.lang.String, com.pubnub.api.Callback)"><!-- --></A><H3>
pamAudit</H3>
<PRE>
public void <B>ulsAudit</B>(java.lang.String&nbsp;channel,
public void <B>pamAudit</B>(java.lang.String&nbsp;channel,
java.lang.String&nbsp;auth_key,
<A HREF="../../../com/pubnub/api/Callback.html" title="class in com.pubnub.api">Callback</A>&nbsp;callback)</PRE>
<DL>
Expand All @@ -1480,10 +1511,10 @@ <H2>
</DL>
<HR>

<A NAME="ulsRevoke(java.lang.String, java.lang.String, com.pubnub.api.Callback)"><!-- --></A><H3>
ulsRevoke</H3>
<A NAME="pamRevoke(java.lang.String, java.lang.String, com.pubnub.api.Callback)"><!-- --></A><H3>
pamRevoke</H3>
<PRE>
public void <B>ulsRevoke</B>(java.lang.String&nbsp;channel,
public void <B>pamRevoke</B>(java.lang.String&nbsp;channel,
java.lang.String&nbsp;auth_key,
<A HREF="../../../com/pubnub/api/Callback.html" title="class in com.pubnub.api">Callback</A>&nbsp;callback)</PRE>
<DL>
Expand Down
2 changes: 1 addition & 1 deletion java/doc/com/pubnub/api/PubnubError.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_37) on Tue Jul 09 10:04:56 IST 2013 -->
<!-- Generated by javadoc (build 1.6.0_37) on Tue Jul 09 15:10:07 IST 2013 -->
<TITLE>
PubnubError
</TITLE>
Expand Down
2 changes: 1 addition & 1 deletion java/doc/com/pubnub/api/PubnubException.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_37) on Tue Jul 09 10:04:56 IST 2013 -->
<!-- Generated by javadoc (build 1.6.0_37) on Tue Jul 09 15:10:08 IST 2013 -->
<TITLE>
PubnubException
</TITLE>
Expand Down
2 changes: 1 addition & 1 deletion java/doc/com/pubnub/api/PubnubUtil.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_37) on Tue Jul 09 10:04:56 IST 2013 -->
<!-- Generated by javadoc (build 1.6.0_37) on Tue Jul 09 15:10:08 IST 2013 -->
<TITLE>
PubnubUtil
</TITLE>
Expand Down
2 changes: 1 addition & 1 deletion java/doc/com/pubnub/api/package-frame.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_37) on Tue Jul 09 10:04:56 IST 2013 -->
<!-- Generated by javadoc (build 1.6.0_37) on Tue Jul 09 15:10:08 IST 2013 -->
<TITLE>
com.pubnub.api
</TITLE>
Expand Down
2 changes: 1 addition & 1 deletion java/doc/com/pubnub/api/package-summary.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_37) on Tue Jul 09 10:04:56 IST 2013 -->
<!-- Generated by javadoc (build 1.6.0_37) on Tue Jul 09 15:10:08 IST 2013 -->
<TITLE>
com.pubnub.api
</TITLE>
Expand Down
Loading

0 comments on commit 8b1f98a

Please sign in to comment.