[java-opensaml COMMIT] in /trunk/opensaml-xmlsec-api/src/main/java/org/opensaml/xmlsec: DecryptionConfiguration.java ...
noreply at shibboleth.net
noreply at shibboleth.net
Fri Jun 14 15:57:27 EDT 2013
Author: putmanb
Date: Fri Jun 14 15:57:27 2013
New Revision: 3386
URL: http://svn.shibboleth.net/view/java-opensaml?rev=3386&view=rev
Log:
Fix typos, add missing public modifiers.
Modified:
trunk/opensaml-xmlsec-api/src/main/java/org/opensaml/xmlsec/DecryptionConfiguration.java
trunk/opensaml-xmlsec-api/src/main/java/org/opensaml/xmlsec/EncryptionConfiguration.java
trunk/opensaml-xmlsec-api/src/main/java/org/opensaml/xmlsec/SignatureSigningConfiguration.java
trunk/opensaml-xmlsec-api/src/main/java/org/opensaml/xmlsec/SignatureValidationConfiguration.java
Modified: trunk/opensaml-xmlsec-api/src/main/java/org/opensaml/xmlsec/DecryptionConfiguration.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-xmlsec-api/src/main/java/org/opensaml/xmlsec/DecryptionConfiguration.java?rev=3386&r1=3385&r2=3386&view=diff
==============================================================================
--- trunk/opensaml-xmlsec-api/src/main/java/org/opensaml/xmlsec/DecryptionConfiguration.java (original)
+++ trunk/opensaml-xmlsec-api/src/main/java/org/opensaml/xmlsec/DecryptionConfiguration.java Fri Jun 14 15:57:27 2013
@@ -34,21 +34,21 @@
*
* @return the list of algorithms
*/
- @Nullable List<String> getWhitelistedAlgorithmURIs();
+ @Nullable public List<String> getWhitelistedAlgorithmURIs();
/**
* Get the list of blacklisted algorithm URI's.
*
* @return the list of algorithms
*/
- @Nullable List<String> getBlacklistedAlgorithmsURIs();
+ @Nullable public List<String> getBlacklistedAlgorithmsURIs();
/**
* The KeyInfoCredentialResolver to use when processing the EncryptedData/KeyInfo.
*
* @return the KeyInfoCredentialResolver instance
*/
- @Nullable KeyInfoCredentialResolver getDataKeyInfoCredentialResolver();
+ @Nullable public KeyInfoCredentialResolver getDataKeyInfoCredentialResolver();
/**
* The KeyInfoCredentialResolver to use when processing the EncryptedKey/KeyInfo (the
@@ -56,13 +56,13 @@
*
* @return the KeyInfoCredentialResolver instance
*/
- @Nullable KeyInfoCredentialResolver getKEKKeyInfoCredentialResolver();
+ @Nullable public KeyInfoCredentialResolver getKEKKeyInfoCredentialResolver();
/**
* Get the EncryptedKeyResolver to use when resolving the EncryptedKey(s) to process.
*
* @return the EncryptedKeyResolver instance
*/
- @Nullable EncryptedKeyResolver geEncryptedKeyResolver();
+ @Nullable public EncryptedKeyResolver getEncryptedKeyResolver();
}
Modified: trunk/opensaml-xmlsec-api/src/main/java/org/opensaml/xmlsec/EncryptionConfiguration.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-xmlsec-api/src/main/java/org/opensaml/xmlsec/EncryptionConfiguration.java?rev=3386&r1=3385&r2=3386&view=diff
==============================================================================
--- trunk/opensaml-xmlsec-api/src/main/java/org/opensaml/xmlsec/EncryptionConfiguration.java (original)
+++ trunk/opensaml-xmlsec-api/src/main/java/org/opensaml/xmlsec/EncryptionConfiguration.java Fri Jun 14 15:57:27 2013
@@ -33,14 +33,14 @@
*
* @return the encryption credential
*/
- @Nullable Credential getDataEncryptionCredential();
+ @Nullable public Credential getDataEncryptionCredential();
/**
* Get the encryption credential to use when encrypting the EncryptedKey.
*
* @return the encryption credential
*/
- @Nullable Credential getKeyTransportEncryptionCredential();
+ @Nullable public Credential getKeyTransportEncryptionCredential();
/**
* Get the encryption algorithm URI to use when encrypting the EncryptedData.
Modified: trunk/opensaml-xmlsec-api/src/main/java/org/opensaml/xmlsec/SignatureSigningConfiguration.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-xmlsec-api/src/main/java/org/opensaml/xmlsec/SignatureSigningConfiguration.java?rev=3386&r1=3385&r2=3386&view=diff
==============================================================================
--- trunk/opensaml-xmlsec-api/src/main/java/org/opensaml/xmlsec/SignatureSigningConfiguration.java (original)
+++ trunk/opensaml-xmlsec-api/src/main/java/org/opensaml/xmlsec/SignatureSigningConfiguration.java Fri Jun 14 15:57:27 2013
@@ -35,7 +35,7 @@
*
* @return the signing credential
*/
- @Nullable Credential getSigningCredential();
+ @Nullable public Credential getSigningCredential();
/**
* Get the signature algorithm URI to use when signing.
Modified: trunk/opensaml-xmlsec-api/src/main/java/org/opensaml/xmlsec/SignatureValidationConfiguration.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-xmlsec-api/src/main/java/org/opensaml/xmlsec/SignatureValidationConfiguration.java?rev=3386&r1=3385&r2=3386&view=diff
==============================================================================
[... 27 lines stripped ...]
More information about the commits
mailing list