Skip to content

Commit 706d9fa

Browse files
committed
Releasing 4.1.0 - Includes support for user-customizable exception handling in the WriteApi.
1 parent 765bd3a commit 706d9fa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1462
-197
lines changed

README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,29 @@ New - [JavaDocs](http://brightcoveos.github.com/Java-MAPI-Wrapper/javadoc/)
1313
Downloads
1414
=========
1515

16+
**Version 4.1.0**:
17+
18+
This version adds adds two major new features:
19+
20+
- Use the new 4.1.0 commons library to allow video serialization to/from XML
21+
- Allow the WriteApi to specify an "ExceptionHandler" object (ReadApi support coming soon)
22+
23+
The ExceptionHandler object basically allows a user's custom code determine
24+
whether or not a command should be retried if an exception is thrown.
25+
26+
Full Download - including all Brightcove Commons libraries:
27+
28+
- [BC Java MAPI Wrapper v4.1.0 with dependencies](https://github.com/downloads/BrightcoveOS/Java-MAPI-Wrapper/bc-java-mapi-wrapper-4.1.0.zip)
29+
30+
Minimal Download - including only necessary Brightcove Commons libraries:
31+
32+
- [BC Java MAPI Wrapper v4.1.0 with minimal dependencies](https://github.com/downloads/BrightcoveOS/Java-MAPI-Wrapper/bc-java-mapi-wrapper-minimal-4.1.0.zip)
33+
34+
Library Only:
35+
36+
- [BC Java MAPI Wrapper v4.1.0](https://github.com/downloads/BrightcoveOS/Java-MAPI-Wrapper/bc-java-mapi-wrapper-4.1.0.jar)
37+
38+
1639
**Version 4.0.3**:
1740

1841
This version uses the new major release of the Brightcove Commons libraries.

java-mapi-wrapper/build.xml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
<?xml version="1.0" ?>
22
<project default="main">
33
<property name="release-package-name" value="bc-java-mapi-wrapper"/>
4-
<property name="release-package-version" value="4.0.3"/>
5-
<property name="commons-version" value="4.0.3"/>
4+
<property name="release-package-version" value="4.1.0"/>
5+
<property name="commons-version" value="4.1.0"/>
66
<property name="commons-lib" value="lib/bc-commons-with-dep-${commons-version}"/>
77

8+
<property name="ext-project-commons-release-dir" value="../../../java-commons/Java-Commons/release-build/release/bc-commons-with-dep"/>
9+
810
<property name="apache-mime-jar" value="${commons-lib}/apache-mime4j-0.6.1.jar"/>
911
<property name="bc-commons-catalog-objects-jar" value="${commons-lib}/bc-commons-catalog-objects-${commons-version}.jar"/>
1012
<property name="bc-commons-collection-utils-jar" value="${commons-lib}/bc-commons-collection-utils-${commons-version}.jar"/>
@@ -40,6 +42,16 @@
4042
<target name="prepare" description="Prepare target">
4143
<echo>Preparing project:</echo>
4244
<mkdir dir="bin"/>
45+
46+
<echo>Copying commons library from external project</echo>
47+
<delete dir="lib/bc-commons-with-dep-${commons-version}" failonerror="false" verbose="false"/>
48+
<delete file="lib/bc-commons-with-dep-${commons-version}.zip" failonerror="false" verbose="false"/>
49+
<copy todir="lib">
50+
<fileset dir="${ext-project-commons-release-dir}">
51+
<include name="bc-commons-with-dep-${commons-version}.zip*"/>
52+
</fileset>
53+
</copy>
54+
<unzip src="lib/bc-commons-with-dep-${commons-version}.zip" dest="lib"/>
4355
</target>
4456

4557
<target name="clean" description="Clean target">

java-mapi-wrapper/javadoc/allclasses-frame.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22
<!--NewPage-->
33
<HTML>
44
<HEAD>
5-
<!-- Generated by javadoc (build 1.5.0_22) on Wed Nov 09 21:48:34 EST 2011 -->
5+
<!-- Generated by javadoc (build 1.6.0_21) on Wed Dec 07 22:11:59 EST 2011 -->
66
<TITLE>
7-
All Classes (bc-java-mapi-wrapper - v4.0.3)
7+
All Classes (bc-java-mapi-wrapper - v4.1.0)
88
</TITLE>
99

10+
<META NAME="date" CONTENT="2011-12-07">
1011

1112
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
1213

@@ -22,6 +23,8 @@
2223
<TR>
2324
<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="com/brightcove/mediaapi/exceptions/BrightcoveException.html" title="class in com.brightcove.mediaapi.exceptions" target="classFrame">BrightcoveException</A>
2425
<BR>
26+
<A HREF="com/brightcove/mediaapi/exceptions/BrightcoveExceptionHandler.html" title="interface in com.brightcove.mediaapi.exceptions" target="classFrame"><I>BrightcoveExceptionHandler</I></A>
27+
<BR>
2528
<A HREF="com/brightcove/mediaapi/exceptions/ExceptionType.html" title="enum in com.brightcove.mediaapi.exceptions" target="classFrame">ExceptionType</A>
2629
<BR>
2730
<A HREF="com/brightcove/mediaapi/exceptions/MediaApiException.html" title="class in com.brightcove.mediaapi.exceptions" target="classFrame">MediaApiException</A>

java-mapi-wrapper/javadoc/allclasses-noframe.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22
<!--NewPage-->
33
<HTML>
44
<HEAD>
5-
<!-- Generated by javadoc (build 1.5.0_22) on Wed Nov 09 21:48:34 EST 2011 -->
5+
<!-- Generated by javadoc (build 1.6.0_21) on Wed Dec 07 22:11:59 EST 2011 -->
66
<TITLE>
7-
All Classes (bc-java-mapi-wrapper - v4.0.3)
7+
All Classes (bc-java-mapi-wrapper - v4.1.0)
88
</TITLE>
99

10+
<META NAME="date" CONTENT="2011-12-07">
1011

1112
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
1213

@@ -22,6 +23,8 @@
2223
<TR>
2324
<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="com/brightcove/mediaapi/exceptions/BrightcoveException.html" title="class in com.brightcove.mediaapi.exceptions">BrightcoveException</A>
2425
<BR>
26+
<A HREF="com/brightcove/mediaapi/exceptions/BrightcoveExceptionHandler.html" title="interface in com.brightcove.mediaapi.exceptions"><I>BrightcoveExceptionHandler</I></A>
27+
<BR>
2528
<A HREF="com/brightcove/mediaapi/exceptions/ExceptionType.html" title="enum in com.brightcove.mediaapi.exceptions">ExceptionType</A>
2629
<BR>
2730
<A HREF="com/brightcove/mediaapi/exceptions/MediaApiException.html" title="class in com.brightcove.mediaapi.exceptions">MediaApiException</A>

java-mapi-wrapper/javadoc/com/brightcove/mediaapi/exceptions/BrightcoveException.html

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,21 @@
22
<!--NewPage-->
33
<HTML>
44
<HEAD>
5-
<!-- Generated by javadoc (build 1.5.0_22) on Wed Nov 09 21:48:32 EST 2011 -->
5+
<!-- Generated by javadoc (build 1.6.0_21) on Wed Dec 07 22:11:56 EST 2011 -->
66
<TITLE>
7-
BrightcoveException (bc-java-mapi-wrapper - v4.0.3)
7+
BrightcoveException (bc-java-mapi-wrapper - v4.1.0)
88
</TITLE>
99

10-
<META NAME="keywords" CONTENT="com.brightcove.mediaapi.exceptions.BrightcoveException class">
10+
<META NAME="date" CONTENT="2011-12-07">
1111

1212
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
1313

1414
<SCRIPT type="text/javascript">
1515
function windowTitle()
1616
{
17-
parent.document.title="BrightcoveException (bc-java-mapi-wrapper - v4.0.3)";
17+
if (location.href.indexOf('is-external=true') == -1) {
18+
parent.document.title="BrightcoveException (bc-java-mapi-wrapper - v4.1.0)";
19+
}
1820
}
1921
</SCRIPT>
2022
<NOSCRIPT>
@@ -23,6 +25,7 @@
2325
</HEAD>
2426

2527
<BODY BGCOLOR="white" onload="windowTitle();">
28+
<HR>
2629

2730

2831
<!-- ========= START OF TOP NAVBAR ======= -->
@@ -53,7 +56,7 @@
5356
<TR>
5457
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
5558
&nbsp;PREV CLASS&nbsp;
56-
&nbsp;<A HREF="../../../../com/brightcove/mediaapi/exceptions/ExceptionType.html" title="enum in com.brightcove.mediaapi.exceptions"><B>NEXT CLASS</B></A></FONT></TD>
59+
&nbsp;<A HREF="../../../../com/brightcove/mediaapi/exceptions/BrightcoveExceptionHandler.html" title="interface in com.brightcove.mediaapi.exceptions"><B>NEXT CLASS</B></A></FONT></TD>
5760
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
5861
<A HREF="../../../../index.html?com/brightcove/mediaapi/exceptions/BrightcoveException.html" target="_top"><B>FRAMES</B></A> &nbsp;
5962
&nbsp;<A HREF="BrightcoveException.html" target="_top"><B>NO FRAMES</B></A> &nbsp;
@@ -358,7 +361,7 @@ <H2>
358361
<TR>
359362
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
360363
&nbsp;PREV CLASS&nbsp;
361-
&nbsp;<A HREF="../../../../com/brightcove/mediaapi/exceptions/ExceptionType.html" title="enum in com.brightcove.mediaapi.exceptions"><B>NEXT CLASS</B></A></FONT></TD>
364+
&nbsp;<A HREF="../../../../com/brightcove/mediaapi/exceptions/BrightcoveExceptionHandler.html" title="interface in com.brightcove.mediaapi.exceptions"><B>NEXT CLASS</B></A></FONT></TD>
362365
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
363366
<A HREF="../../../../index.html?com/brightcove/mediaapi/exceptions/BrightcoveException.html" target="_top"><B>FRAMES</B></A> &nbsp;
364367
&nbsp;<A HREF="BrightcoveException.html" target="_top"><B>NO FRAMES</B></A> &nbsp;
Lines changed: 228 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,228 @@
1+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2+
<!--NewPage-->
3+
<HTML>
4+
<HEAD>
5+
<!-- Generated by javadoc (build 1.6.0_21) on Wed Dec 07 22:11:56 EST 2011 -->
6+
<TITLE>
7+
BrightcoveExceptionHandler (bc-java-mapi-wrapper - v4.1.0)
8+
</TITLE>
9+
10+
<META NAME="date" CONTENT="2011-12-07">
11+
12+
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
13+
14+
<SCRIPT type="text/javascript">
15+
function windowTitle()
16+
{
17+
if (location.href.indexOf('is-external=true') == -1) {
18+
parent.document.title="BrightcoveExceptionHandler (bc-java-mapi-wrapper - v4.1.0)";
19+
}
20+
}
21+
</SCRIPT>
22+
<NOSCRIPT>
23+
</NOSCRIPT>
24+
25+
</HEAD>
26+
27+
<BODY BGCOLOR="white" onload="windowTitle();">
28+
<HR>
29+
30+
31+
<!-- ========= START OF TOP NAVBAR ======= -->
32+
<A NAME="navbar_top"><!-- --></A>
33+
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
34+
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
35+
<TR>
36+
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
37+
<A NAME="navbar_top_firstrow"><!-- --></A>
38+
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
39+
<TR ALIGN="center" VALIGN="top">
40+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
41+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
42+
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
43+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BrightcoveExceptionHandler.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>
44+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
45+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
46+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
47+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
48+
</TR>
49+
</TABLE>
50+
</TD>
51+
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
52+
</EM>
53+
</TD>
54+
</TR>
55+
56+
<TR>
57+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
58+
&nbsp;<A HREF="../../../../com/brightcove/mediaapi/exceptions/BrightcoveException.html" title="class in com.brightcove.mediaapi.exceptions"><B>PREV CLASS</B></A>&nbsp;
59+
&nbsp;<A HREF="../../../../com/brightcove/mediaapi/exceptions/ExceptionType.html" title="enum in com.brightcove.mediaapi.exceptions"><B>NEXT CLASS</B></A></FONT></TD>
60+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
61+
<A HREF="../../../../index.html?com/brightcove/mediaapi/exceptions/BrightcoveExceptionHandler.html" target="_top"><B>FRAMES</B></A> &nbsp;
62+
&nbsp;<A HREF="BrightcoveExceptionHandler.html" target="_top"><B>NO FRAMES</B></A> &nbsp;
63+
&nbsp;<SCRIPT type="text/javascript">
64+
<!--
65+
if(window==top) {
66+
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
67+
}
68+
//-->
69+
</SCRIPT>
70+
<NOSCRIPT>
71+
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
72+
</NOSCRIPT>
73+
74+
75+
</FONT></TD>
76+
</TR>
77+
<TR>
78+
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
79+
SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
80+
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
81+
DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
82+
</TR>
83+
</TABLE>
84+
<A NAME="skip-navbar_top"></A>
85+
<!-- ========= END OF TOP NAVBAR ========= -->
86+
87+
<HR>
88+
<!-- ======== START OF CLASS DATA ======== -->
89+
<H2>
90+
<FONT SIZE="-1">
91+
com.brightcove.mediaapi.exceptions</FONT>
92+
<BR>
93+
Interface BrightcoveExceptionHandler</H2>
94+
<HR>
95+
<DL>
96+
<DT><PRE>public interface <B>BrightcoveExceptionHandler</B></DL>
97+
</PRE>
98+
99+
<P>
100+
<p>
101+
Allows users to specify their own logic on what to do when an exception
102+
is thrown by the Media API or the Java wraper.
103+
</p>
104+
<P>
105+
106+
<P>
107+
<DL>
108+
<DT><B>Author:</B></DT>
109+
<DD><a href="https://github.com/three4clavin">three4clavin</a></DD>
110+
</DL>
111+
<HR>
112+
113+
<P>
114+
115+
<!-- ========== METHOD SUMMARY =========== -->
116+
117+
<A NAME="method_summary"><!-- --></A>
118+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
119+
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
120+
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
121+
<B>Method Summary</B></FONT></TH>
122+
</TR>
123+
<TR BGCOLOR="white" CLASS="TableRowColor">
124+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
125+
<CODE>&nbsp;java.lang.Boolean</CODE></FONT></TD>
126+
<TD><CODE><B><A HREF="../../../../com/brightcove/mediaapi/exceptions/BrightcoveExceptionHandler.html#handleException(com.brightcove.mediaapi.exceptions.BrightcoveException, java.lang.String)">handleException</A></B>(<A HREF="../../../../com/brightcove/mediaapi/exceptions/BrightcoveException.html" title="class in com.brightcove.mediaapi.exceptions">BrightcoveException</A>&nbsp;be,
127+
java.lang.String&nbsp;methodName)</CODE>
128+
129+
<BR>
130+
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
131+
Called whenever the Media API wrapper encounters an exception</TD>
132+
</TR>
133+
</TABLE>
134+
&nbsp;
135+
<P>
136+
137+
<!-- ============ METHOD DETAIL ========== -->
138+
139+
<A NAME="method_detail"><!-- --></A>
140+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
141+
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
142+
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
143+
<B>Method Detail</B></FONT></TH>
144+
</TR>
145+
</TABLE>
146+
147+
<A NAME="handleException(com.brightcove.mediaapi.exceptions.BrightcoveException, java.lang.String)"><!-- --></A><H3>
148+
handleException</H3>
149+
<PRE>
150+
java.lang.Boolean <B>handleException</B>(<A HREF="../../../../com/brightcove/mediaapi/exceptions/BrightcoveException.html" title="class in com.brightcove.mediaapi.exceptions">BrightcoveException</A>&nbsp;be,
151+
java.lang.String&nbsp;methodName)
152+
throws <A HREF="../../../../com/brightcove/mediaapi/exceptions/BrightcoveException.html" title="class in com.brightcove.mediaapi.exceptions">BrightcoveException</A></PRE>
153+
<DL>
154+
<DD><p>
155+
Called whenever the Media API wrapper encounters an exception
156+
</p>
157+
<P>
158+
<DD><DL>
159+
<DT><B>Parameters:</B><DD><CODE>be</CODE> - Exception thrown by the Media API or the Java wrapper
160+
<DT><B>Returns:</B><DD>True if the wrapper method should be retries, False if the exception should be re-thrown
161+
<DT><B>Throws:</B>
162+
<DD><CODE><A HREF="../../../../com/brightcove/mediaapi/exceptions/BrightcoveException.html" title="class in com.brightcove.mediaapi.exceptions">BrightcoveException</A></CODE> - If query shouldn't be retried</DL>
163+
</DD>
164+
</DL>
165+
<!-- ========= END OF CLASS DATA ========= -->
166+
<HR>
167+
168+
169+
<!-- ======= START OF BOTTOM NAVBAR ====== -->
170+
<A NAME="navbar_bottom"><!-- --></A>
171+
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
172+
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
173+
<TR>
174+
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
175+
<A NAME="navbar_bottom_firstrow"><!-- --></A>
176+
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
177+
<TR ALIGN="center" VALIGN="top">
178+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
179+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
180+
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
181+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BrightcoveExceptionHandler.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>
182+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
183+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
184+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
185+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
186+
</TR>
187+
</TABLE>
188+
</TD>
189+
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
190+
</EM>
191+
</TD>
192+
</TR>
193+
194+
<TR>
195+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
196+
&nbsp;<A HREF="../../../../com/brightcove/mediaapi/exceptions/BrightcoveException.html" title="class in com.brightcove.mediaapi.exceptions"><B>PREV CLASS</B></A>&nbsp;
197+
&nbsp;<A HREF="../../../../com/brightcove/mediaapi/exceptions/ExceptionType.html" title="enum in com.brightcove.mediaapi.exceptions"><B>NEXT CLASS</B></A></FONT></TD>
198+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
199+
<A HREF="../../../../index.html?com/brightcove/mediaapi/exceptions/BrightcoveExceptionHandler.html" target="_top"><B>FRAMES</B></A> &nbsp;
200+
&nbsp;<A HREF="BrightcoveExceptionHandler.html" target="_top"><B>NO FRAMES</B></A> &nbsp;
201+
&nbsp;<SCRIPT type="text/javascript">
202+
<!--
203+
if(window==top) {
204+
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
205+
}
206+
//-->
207+
</SCRIPT>
208+
<NOSCRIPT>
209+
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
210+
</NOSCRIPT>
211+
212+
213+
</FONT></TD>
214+
</TR>
215+
<TR>
216+
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
217+
SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
218+
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
219+
DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
220+
</TR>
221+
</TABLE>
222+
<A NAME="skip-navbar_bottom"></A>
223+
<!-- ======== END OF BOTTOM NAVBAR ======= -->
224+
225+
<HR>
226+
<i>http://opensource.brightcove.com/.</i>
227+
</BODY>
228+
</HTML>

0 commit comments

Comments
 (0)