-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into version_4.5.4
Signed-off-by: Yuriy Movchan <[email protected]>
- Loading branch information
Showing
33 changed files
with
560 additions
and
264 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
@OpenAPIDefinition ( | ||
info = @Info ( | ||
title = "oxTrust API", | ||
version = "4.5.3", | ||
version = "4.5.4", | ||
description = "This is an API for Gluu Server's oxTrust administrative interface. Go to https://gluu.org for more information", | ||
termsOfService = "https://gluu.org/gluu-terms-and-conditions/", | ||
contact = @Contact(url="https://support.gluu.org/",name="Gluu Support",email="[email protected]"), | ||
|
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
21 changes: 0 additions & 21 deletions
21
configuration/src/main/resources/META-INF/shibboleth3/idp/mdq-metadata.xml.vm
This file was deleted.
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
62 changes: 62 additions & 0 deletions
62
model/src/main/java/org/gluu/oxtrust/model/AuditConfigLogDetails.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,62 @@ | ||
package org.gluu.oxtrust.model; | ||
|
||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | ||
|
||
@JsonIgnoreProperties(ignoreUnknown = true) | ||
public class AuditConfigLogDetails { | ||
|
||
private String user; | ||
private String objectName; | ||
private String property; | ||
private String oldValue; | ||
private String newValue; | ||
|
||
|
||
public AuditConfigLogDetails(String user, String objectName, String property, String oldValue, | ||
String newValue) { | ||
super(); | ||
this.user = user; | ||
this.objectName = objectName; | ||
this.property = property; | ||
this.oldValue = oldValue; | ||
this.newValue = newValue; | ||
} | ||
public String getUser() { | ||
return user; | ||
} | ||
public void setUser(String user) { | ||
this.user = user; | ||
} | ||
public String getProperty() { | ||
return property; | ||
} | ||
public void setProperty(String property) { | ||
this.property = property; | ||
} | ||
public String getOldValue() { | ||
return oldValue; | ||
} | ||
public void setOldValue(String oldValue) { | ||
this.oldValue = oldValue; | ||
} | ||
public String getNewValue() { | ||
return newValue; | ||
} | ||
public void setNewValue(String newValue) { | ||
this.newValue = newValue; | ||
} | ||
public String getObjectName() { | ||
return objectName; | ||
} | ||
public void setObjectName(String objectName) { | ||
this.objectName = objectName; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "AuditConfigLogDetails [user=" + user + ", objectName=" + objectName | ||
+ ", property=" + property + ", oldValue=" + oldValue + ", newValue=" + newValue + "]"; | ||
} | ||
|
||
|
||
} |
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
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
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.