001package com.pingidentity.developer.pingid; 002 003public class Application { 004 private String name; 005 private String logoUrl; 006 private String spAlias; 007 008 public Application(String name) { 009 this.name = name; 010 this.spAlias = "web"; 011 } 012 013 String getName() { return this.name; } 014 String getLogoUrl() { return this.logoUrl; } 015 String getSpAlias() { return this.spAlias; } 016}