Java 类org.springframework.security.authentication.dao.SaltSource 实例源码

项目:metaworks_framework    文件:AdminSecurityServiceImpl.java   
@Override
public SaltSource getSaltSource() {
    return saltSource;
}
项目:metaworks_framework    文件:AdminSecurityServiceImpl.java   
@Override
public void setSaltSource(SaltSource saltSource) {
    this.saltSource = saltSource;
}
项目:metaworks_framework    文件:CustomerServiceImpl.java   
@Override
public SaltSource getSaltSource() {
    return saltSource;
}
项目:metaworks_framework    文件:CustomerServiceImpl.java   
@Override
public void setSaltSource(SaltSource saltSource) {
    this.saltSource = saltSource;
}
项目:SparkCommerce    文件:AdminSecurityServiceImpl.java   
@Override
public SaltSource getSaltSource() {
    return saltSource;
}
项目:SparkCommerce    文件:AdminSecurityServiceImpl.java   
@Override
public void setSaltSource(SaltSource saltSource) {
    this.saltSource = saltSource;
}
项目:eMonocot    文件:UserServiceImpl.java   
/**
 *
 * @param saltSource Set the salt source
 */
@Autowired(required = false)
public final void setSaltSource(final SaltSource saltSource) {
    this.saltSource = saltSource;
}
项目:SparkCore    文件:CustomerServiceImpl.java   
@Override
public SaltSource getSaltSource() {
    return saltSource;
}
项目:SparkCore    文件:CustomerServiceImpl.java   
@Override
public void setSaltSource(SaltSource saltSource) {
    this.saltSource = saltSource;
}
项目:blcdemo    文件:AdminSecurityServiceImpl.java   
@Deprecated
@Override
public SaltSource getSaltSource() {
    return saltSource;
}
项目:blcdemo    文件:AdminSecurityServiceImpl.java   
@Deprecated
@Override
public void setSaltSource(SaltSource saltSource) {
    this.saltSource = saltSource;
}
项目:blcdemo    文件:CustomerServiceImpl.java   
@Deprecated
@Override
public SaltSource getSaltSource() {
    return saltSource;
}
项目:blcdemo    文件:CustomerServiceImpl.java   
@Deprecated
@Override
public void setSaltSource(SaltSource saltSource) {
    this.saltSource = saltSource;
}
项目:bluefairy    文件:SecurityContext.java   
protected SaltSource getSaltSource() {
    return saltSource;
}
项目:bluefairy    文件:UserService.java   
protected SaltSource getSaltSource() {
    return saltSource;
}
项目:madsonic-server-5.1    文件:SecurityService.java   
public void setSaltSource(SaltSource saltSource) {
    this.saltSource = saltSource;
}
项目:Opensheet    文件:MyDaoAuthenticationProvider.java   
protected SaltSource getSaltSource() {
    return saltSource;
}
项目:interview-preparation    文件:JPAAuthenticationProvider.java   
/**
 * Gets the salt source.
 *
 * @return the salt source
 */
protected SaltSource getSaltSource() {

    return saltSource;
}
项目:interview-preparation    文件:JPAAuthenticationProvider.java   
/**
 * Sets the salt source.
 *
 * @param saltSource
 *            the new salt source
 */
public void setSaltSource(final SaltSource saltSource) {

    this.saltSource = saltSource;
}
项目:interview-preparation    文件:HibernateAuthenticationProvider.java   
/**
 * Gets the salt source.
 *
 * @return the salt source
 */
protected SaltSource getSaltSource() {

    return saltSource;
}
项目:interview-preparation    文件:HibernateAuthenticationProvider.java   
/**
 * Sets the salt source.
 *
 * @param saltSource
 *            the new salt source
 */
public void setSaltSource(final SaltSource saltSource) {

    this.saltSource = saltSource;
}
项目:metaworks_framework    文件:AdminSecurityService.java   
/**
 * Returns the {@link SaltSource} used with the blAdminPasswordEncoder to encrypt the user password. Usually configured in
 * applicationContext-admin-security.xml. This is not a required property and will return null if not configured
 */
public SaltSource getSaltSource();
项目:metaworks_framework    文件:AdminSecurityService.java   
/**
 * Sets the {@link SaltSource} used with blAdminPasswordencoder to encrypt the user password. Usually configured within
 * applicationContext-admin-security.xml
 * 
 * @param saltSource
 */
public void setSaltSource(SaltSource saltSource);
项目:metaworks_framework    文件:CustomerService.java   
/**
 * Returns the {@link SaltSource} used with the blPasswordEncoder to encrypt the user password. Usually configured in
 * applicationContext-security.xml. This is not a required property and will return null if not configured
 */
public SaltSource getSaltSource();
项目:metaworks_framework    文件:CustomerService.java   
/**
 * Sets the {@link SaltSource} used with blPasswordencoder to encrypt the user password. Usually configured within
 * applicationContext-security.xml
 * 
 * @param saltSource
 */
public void setSaltSource(SaltSource saltSource);
项目:SparkCommerce    文件:AdminSecurityService.java   
/**
 * Returns the {@link SaltSource} used with the blAdminPasswordEncoder to encrypt the user password. Usually configured in
 * applicationContext-admin-security.xml. This is not a required property and will return null if not configured
 */
public SaltSource getSaltSource();
项目:SparkCommerce    文件:AdminSecurityService.java   
/**
 * Sets the {@link SaltSource} used with blAdminPasswordencoder to encrypt the user password. Usually configured within
 * applicationContext-admin-security.xml
 * 
 * @param saltSource
 */
public void setSaltSource(SaltSource saltSource);
项目:SparkCore    文件:CustomerService.java   
/**
 * Returns the {@link SaltSource} used with the blPasswordEncoder to encrypt the user password. Usually configured in
 * applicationContext-security.xml. This is not a required property and will return null if not configured
 */
public SaltSource getSaltSource();
项目:SparkCore    文件:CustomerService.java   
/**
 * Sets the {@link SaltSource} used with blPasswordencoder to encrypt the user password. Usually configured within
 * applicationContext-security.xml
 * 
 * @param saltSource
 */
public void setSaltSource(SaltSource saltSource);
项目:blcdemo    文件:AdminSecurityService.java   
/**
 * Returns the {@link SaltSource} used with the blAdminPasswordEncoder to encrypt the user password. Usually configured in
 * applicationContext-admin-security.xml. This is not a required property and will return null if not configured
 *
 * @deprecated the new {@link org.springframework.security.crypto.password.PasswordEncoder PasswordEncoder} handles salting internally, this will be removed in 4.2
 *
 * @return the currently used {@link SaltSource}
 */
@Deprecated
public SaltSource getSaltSource();
项目:blcdemo    文件:AdminSecurityService.java   
/**
 * Sets the {@link SaltSource} used with blAdminPasswordEncoder to encrypt the user password. Usually configured within
 * applicationContext-admin-security.xml
 *
 * @deprecated the new {@link org.springframework.security.crypto.password.PasswordEncoder PasswordEncoder} handles salting internally, this will be removed in 4.2
 * 
 * @param saltSource the new {@link SaltSource} to use
 */
@Deprecated
public void setSaltSource(SaltSource saltSource);
项目:blcdemo    文件:CustomerService.java   
/**
 * Returns the {@link SaltSource} used with the blPasswordEncoder to encrypt the user password. Usually configured in
 * applicationContext-security.xml. This is not a required property and will return null if not configured
 *
 * @deprecated the new {@link org.springframework.security.crypto.password.PasswordEncoder PasswordEncoder} handles salting internally, this will be removed in 4.2
 *
 * @return the currently used {@link SaltSource}
 */
@Deprecated
public SaltSource getSaltSource();
项目:blcdemo    文件:CustomerService.java   
/**
 * Sets the {@link SaltSource} used with blPasswordEncoder to encrypt the user password. Usually configured within
 * applicationContext-security.xml
 *
 * @deprecated the new {@link org.springframework.security.crypto.password.PasswordEncoder PasswordEncoder} handles salting internally, this will be removed in 4.2
 *
 * @param saltSource the new {@link SaltSource} to use
 */
@Deprecated
public void setSaltSource(SaltSource saltSource);
项目:Opensheet    文件:MyDaoAuthenticationProvider.java   
/**
 * The source of salts to use when decoding passwords. <code>null</code>
 * is a valid value, meaning the <code>DaoAuthenticationProvider</code>
 * will present <code>null</code> to the relevant <code>PasswordEncoder</code>.
 *
 * @param saltSource to use when attempting to decode passwords via the <code>PasswordEncoder</code>
 */
public void setSaltSource(SaltSource saltSource) {
    this.saltSource = saltSource;
}