-
Notifications
You must be signed in to change notification settings - Fork 828
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
89 changed files
with
2,501 additions
and
1,027 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
version=3.0.0 | ||
version=3.0.1 |
70 changes: 70 additions & 0 deletions
70
model/src/main/java/org/cloudfoundry/identity/uaa/client/ClientMetadata.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
package org.cloudfoundry.identity.uaa.client; | ||
|
||
import com.fasterxml.jackson.annotation.JsonIgnore; | ||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
|
||
import java.net.URL; | ||
|
||
/******************************************************************************* | ||
* Cloud Foundry | ||
* Copyright (c) [2009-2015] Pivotal Software, Inc. All Rights Reserved. | ||
* <p> | ||
* This product is licensed to you under the Apache License, Version 2.0 (the "License"). | ||
* You may not use this product except in compliance with the License. | ||
* <p> | ||
* This product includes a number of subcomponents with | ||
* separate copyright notices and license terms. Your use of these | ||
* subcomponents is subject to the terms and conditions of the | ||
* subcomponent's license, as noted in the LICENSE file. | ||
*******************************************************************************/ | ||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
public class ClientMetadata { | ||
|
||
private String clientId; | ||
private String identityZoneId; | ||
private boolean showOnHomePage; | ||
private URL appLaunchUrl; | ||
private String appIcon; | ||
|
||
public String getClientId() { | ||
return clientId; | ||
} | ||
|
||
public void setClientId(String clientId) { | ||
this.clientId = clientId; | ||
} | ||
|
||
@JsonIgnore | ||
public String getIdentityZoneId() { | ||
return identityZoneId; | ||
} | ||
|
||
@JsonIgnore | ||
public void setIdentityZoneId(String identityZoneId) { | ||
this.identityZoneId = identityZoneId; | ||
} | ||
|
||
public boolean isShowOnHomePage() { | ||
return showOnHomePage; | ||
} | ||
|
||
public void setShowOnHomePage(boolean showOnHomePage) { | ||
this.showOnHomePage = showOnHomePage; | ||
} | ||
|
||
public URL getAppLaunchUrl() { | ||
return appLaunchUrl; | ||
} | ||
|
||
public void setAppLaunchUrl(URL appLaunchUrl) { | ||
this.appLaunchUrl = appLaunchUrl; | ||
} | ||
|
||
public String getAppIcon() { | ||
return appIcon; | ||
} | ||
|
||
public void setAppIcon(String appIcon) { | ||
this.appIcon = appIcon; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.