View Javadoc
1   package org.springframework.security.oauth.common.signature;
2   
3   /**
4    * Marker interface for indicating that a consumer secret has some salt.
5    *
6    * @author Ryan Heaton
7    */
8   public interface SaltedConsumerSecret {
9   
10    /**
11     * Returns the salt to use for this consumer secret.
12     *
13     * @return the salt to use for this consumer secret.
14     */
15    Object getSalt();
16  }