Examples of PictureUrlFactory


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
Copyright © 2018 www.massapi.com. 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.