com.denimgroup.threadfix.data.entities.SAMLConfiguration Maven / Gradle / Ivy
////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2009-2015 Denim Group, Ltd.
//
// The contents of this file are subject to the Mozilla Public License
// Version 2.0 (the "License"); you may not use this file except in
// compliance with the License. You may obtain a copy of the License at
// http://www.mozilla.org/MPL/
//
// Software distributed under the License is distributed on an "AS IS"
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
// License for the specific language governing rights and limitations
// under the License.
//
// The Original Code is ThreadFix.
//
// The Initial Developer of the Original Code is Denim Group, Ltd.
// Portions created by Denim Group, Ltd. are Copyright (C)
// Denim Group, Ltd. All Rights Reserved.
//
// Contributor(s): Denim Group, Ltd.
//
////////////////////////////////////////////////////////////////////////
package com.denimgroup.threadfix.data.entities;
import com.denimgroup.threadfix.views.AllViews;
import com.fasterxml.jackson.annotation.JsonView;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
@Entity
@Table(name="SAMLConfiguration")
public class SAMLConfiguration extends AuditableEntity {
private static final long serialVersionUID = 2584623185996706729L;
private String idpUrl, displayField, displayFieldId, displayFieldDescription, displayFieldGroup;
@Column(length = 1024, nullable = true)
@JsonView(AllViews.FormInfo.class)
public String getIdpUrl() {
return idpUrl;
}
public void setIdpUrl(String idpUrl) {
this.idpUrl = idpUrl;
}
@Column(length = 1024, nullable = true)
@JsonView(AllViews.FormInfo.class)
public String getDisplayField() {
return displayField;
}
public void setDisplayField(String displayField) {
this.displayField = displayField;
}
@Column(length = 1024, nullable = true)
@JsonView(AllViews.FormInfo.class)
public String getDisplayFieldId() {
return displayFieldId;
}
public void setDisplayFieldId(String displayFieldId) {
this.displayFieldId = displayFieldId;
}
@Column(length = 1024, nullable = true)
@JsonView(AllViews.FormInfo.class)
public String getDisplayFieldDescription() {
return displayFieldDescription;
}
public void setDisplayFieldDescription(String displayFieldDescription) {
this.displayFieldDescription = displayFieldDescription;
}
@Column(length = 1024, nullable = true)
@JsonView(AllViews.FormInfo.class)
public String getDisplayFieldGroup() {
return displayFieldGroup;
}
public void setDisplayFieldGroup(String displayFieldGroup) {
this.displayFieldGroup = displayFieldGroup;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy