javax.xml.crypto

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » xml » javax.xml.crypto 
javax.xml.crypto
Common classes for XML cryptography. This package includes common classes that are used to perform XML cryptographic operations, such as generating an XML signature or encrypting XML data.

Package Specification

Since:
1.6
Java Source File NameTypeComment
AlgorithmMethod.javaInterface An abstract representation of an algorithm defined in the XML Security specifications.
Data.javaInterface An abstract representation of the result of dereferencing a URIReference or the input/output of subsequent Transform s.
KeySelector.javaClass A selector that finds and returns a key using the data contained in a KeyInfo object.
KeySelectorException.javaClass Indicates an exceptional condition thrown by a KeySelector .

A KeySelectorException can contain a cause: another throwable that caused this KeySelectorException to get thrown.

KeySelectorResult.javaInterface The result returned by the KeySelector.select KeySelector.select method.

At a minimum, a KeySelectorResult contains the Key selected by the KeySelector.

MarshalException.javaClass Indicates an exceptional condition that occured during the XML marshalling or unmarshalling process.

A MarshalException can contain a cause: another throwable that caused this MarshalException to get thrown.

NodeSetData.javaInterface An abstract representation of a Data type containing a node-set.
NoSuchMechanismException.javaClass This exception is thrown when a particular XML mechanism is requested but is not available in the environment.

A NoSuchMechanismException can contain a cause: another throwable that caused this NoSuchMechanismException to get thrown.

OctetStreamData.javaClass A representation of a Data type containing an octet stream.
URIDereferencer.javaInterface A dereferencer of URIReference s.

The result of dereferencing a URIReference is either an instance of OctetStreamData or NodeSetData .

URIReference.javaInterface Identifies a data object via a URI-Reference, as specified by RFC 2396.

Note that some subclasses may not have a type attribute and for objects of those types, the URIReference.getType method always returns null.

URIReferenceException.javaClass Indicates an exceptional condition thrown while dereferencing a URIReference .

A URIReferenceException can contain a cause: another throwable that caused this URIReferenceException to get thrown.

XMLCryptoContext.javaInterface Contains common context information for XML cryptographic operations.

This interface contains methods for setting and retrieving properties that affect the processing of XML signatures or XML encrypted structures.

Note that XMLCryptoContext instances can contain information and state specific to the XML cryptographic structure it is used with. The results are unpredictable if an XMLCryptoContext is used with multiple structures (for example, you should not use the same javax.xml.crypto.dsig.XMLValidateContext instance to validate two different javax.xml.crypto.dsig.XMLSignature objects).

XMLStructure.javaInterface A representation of an XML structure from any namespace.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.