Uses of Class
com.saperion.common.lang.encapsulation.Pair
-
Packages that use Pair Package Description com.saperion.common.config.manager com.saperion.common.crypto com.saperion.common.lang.encapsulation com.saperion.util This package contains the utility classes for the LARIX RMI Server. -
-
Uses of Pair in com.saperion.common.config.manager
Methods in com.saperion.common.config.manager that return Pair Modifier and Type Method Description Pair<java.security.Key,java.security.Key>
DbConfigurationManagerConstructorParameters. getEncryptionKeys()
Returns aPair
ofKey
s that should be used to encrypt/decrypt the configuration values.Methods in com.saperion.common.config.manager with parameters of type Pair Modifier and Type Method Description DbConfigurationManagerConstructorParameters<CommonAccessException>
DbConfigurationManagerConstructorParameters. setEncryptionKeys(Cipher cipher, Pair<java.security.Key,java.security.Key> pairEncryptionKeys)
-
Uses of Pair in com.saperion.common.crypto
Methods in com.saperion.common.crypto that return Pair Modifier and Type Method Description Pair<java.security.Key,java.security.Key>
Cipher. newKeys()
Creates aPair
of new keys.Methods in com.saperion.common.crypto with parameters of type Pair Modifier and Type Method Description static java.security.cert.X509Certificate
CryptoUtils. newCertificate(java.lang.String dn, Pair<java.security.Key,java.security.Key> pairKeys, int days, java.lang.String algorithm)
Creates a new self-signed X.509 Certificate. -
Uses of Pair in com.saperion.common.lang.encapsulation
Methods in com.saperion.common.lang.encapsulation that return Pair Modifier and Type Method Description static <T1,T2>
Pair<T1,T2>Pair. newInstance(T1 first, T2 second)
Convenience factory method for letting the compiler do the type inference. -
Uses of Pair in com.saperion.util
Methods in com.saperion.util that return Pair Modifier and Type Method Description Pair<Type1,Type2>
ParallelIterator. next()
The result will hold the result of theIterator.next()
call of the first iterator first, then the one of the second iterator.Methods in com.saperion.util that return types with arguments of type Pair Modifier and Type Method Description static <Type1,Type2>
java.lang.Iterable<Pair<Type1,Type2>>ParallelIterator. parallel(java.lang.Iterable<Type1> iterable1, java.lang.Iterable<Type2> iterable2)
-