Package com.springsource.greenhouse.account

Examples of com.springsource.greenhouse.account.PictureUrlFactory


   * @param pictureStorage the place where profile pictures are stored; used to get a profile picture URL if the member's profile picture is set
   */
  @Inject
  public JdbcProfileRepository(JdbcTemplate jdbcTemplate, FileStorage pictureStorage) {
    this.jdbcTemplate = jdbcTemplate;
    this.pictureUrlFactory = new PictureUrlFactory(pictureStorage);
    profileMapper = new ProfileMapper();
  }
View Full Code Here

TOP

Related Classes of com.springsource.greenhouse.account.PictureUrlFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.