[java-xmltooling COMMIT] in /branches/REL_1/src: main/java/org/opensaml/xml/security/x509/CertPathPKIXTrustEvaluator....
noreply at shibboleth.net
noreply at shibboleth.net
Sun Feb 26 12:20:41 GMT 2012
Author: lajoie
Date: Sun Feb 26 12:20:41 2012
New Revision: 753
URL: http://svn.shibboleth.net/view/java-xmltooling?rev=753&view=rev
Log:
Fix broken {@link}s in javadoc
Modified:
branches/REL_1/src/main/java/org/opensaml/xml/security/x509/CertPathPKIXTrustEvaluator.java
branches/REL_1/src/test/java/org/opensaml/xml/ElementProxyTest.java
branches/REL_1/src/test/java/org/opensaml/xml/schema/XSURITest.java
Modified: branches/REL_1/src/main/java/org/opensaml/xml/security/x509/CertPathPKIXTrustEvaluator.java
URL: http://svn.shibboleth.net/view/java-xmltooling/branches/REL_1/src/main/java/org/opensaml/xml/security/x509/CertPathPKIXTrustEvaluator.java?rev=753&r1=752&r2=753&view=diff
==============================================================================
--- branches/REL_1/src/main/java/org/opensaml/xml/security/x509/CertPathPKIXTrustEvaluator.java (original)
+++ branches/REL_1/src/main/java/org/opensaml/xml/security/x509/CertPathPKIXTrustEvaluator.java Sun Feb 26 12:20:41 2012
@@ -50,7 +50,10 @@
/** Class logger. */
private final Logger log = LoggerFactory.getLogger(CertPathPKIXTrustEvaluator.class);
- /** Responsible for parsing and serializing X.500 names to/from {@link X500Principal} instances. */
+ /**
+ * Responsible for parsing and serializing X.500 names to/from {@link javax.security.auth.x500.X500Principal}
+ * instances.
+ */
private X500DNHandler x500DNHandler;
/** Options influencing processing behavior. */
Modified: branches/REL_1/src/test/java/org/opensaml/xml/ElementProxyTest.java
URL: http://svn.shibboleth.net/view/java-xmltooling/branches/REL_1/src/test/java/org/opensaml/xml/ElementProxyTest.java?rev=753&r1=752&r2=753&view=diff
==============================================================================
--- branches/REL_1/src/test/java/org/opensaml/xml/ElementProxyTest.java (original)
+++ branches/REL_1/src/test/java/org/opensaml/xml/ElementProxyTest.java Sun Feb 26 12:20:41 2012
@@ -22,21 +22,19 @@
import org.opensaml.xml.parse.XMLParserException;
import org.w3c.dom.Document;
-/**
- * Tests the {@link org.opensaml.xml.ElementProxy} class.
- */
+/** Test unmarshalling content for which no specific object providers were registered. */
public class ElementProxyTest extends XMLObjectBaseTestCase {
/**
* Tests unmarshalling unknown content into the element proxy.
*/
- public void testUnmarshallUnknownContent() throws XMLParserException, UnmarshallingException{
+ public void testUnmarshallUnknownContent() throws XMLParserException, UnmarshallingException {
String documentLocation = "/data/org/opensaml/xml/UnknownContent.xml";
Document document = parserPool.parse(UnmarshallingTest.class.getResourceAsStream(documentLocation));
Unmarshaller unmarshaller = unmarshallerFactory.getUnmarshaller(Configuration.getDefaultProviderQName());
XMLObject xmlobject = unmarshaller.unmarshall(document.getDocumentElement());
-
+
assertEquals("Unexpted root element name", "products", xmlobject.getElementQName().getLocalPart());
assertEquals("Unexpected number of children", 2, xmlobject.getOrderedChildren().size());
}
Modified: branches/REL_1/src/test/java/org/opensaml/xml/schema/XSURITest.java
URL: http://svn.shibboleth.net/view/java-xmltooling/branches/REL_1/src/test/java/org/opensaml/xml/schema/XSURITest.java?rev=753&r1=752&r2=753&view=diff
==============================================================================
--- branches/REL_1/src/test/java/org/opensaml/xml/schema/XSURITest.java (original)
+++ branches/REL_1/src/test/java/org/opensaml/xml/schema/XSURITest.java Sun Feb 26 12:20:41 2012
@@ -28,9 +28,7 @@
import org.opensaml.xml.schema.impl.XSURIBuilder;
import org.w3c.dom.Document;
-/**
- * Unit test for {@link XSURi}
- */
+/** Unit test for {@link XSURI}. */
public class XSURITest extends XMLObjectBaseTestCase {
private String testDocumentLocation;
More information about the commits
mailing list