com.microsoft.sqlserver.jdbc.dataclassification.SensitivityProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mssql-jdbc Show documentation
Show all versions of mssql-jdbc Show documentation
Microsoft JDBC Driver for SQL Server.
/*
* Microsoft JDBC Driver for SQL Server Copyright(c) Microsoft Corporation All rights reserved. This program is made
* available under the terms of the MIT License. See the LICENSE file in the project root for more information.
*/
package com.microsoft.sqlserver.jdbc.dataclassification;
/**
* Represents the Data Classification Sensitivity Property as received from SQL Server for the active resultSet
*/
public class SensitivityProperty {
private Label label;
private InformationType informationType;
/**
* Constructs a SensitivityProperty
*
* @param label
* Label as received from SQL Server for this SensitivityProperty
* @param informationType
* InformationType as received from SQL Server for this SensitivityProperty
*/
public SensitivityProperty(Label label, InformationType informationType) {
this.label = label;
this.informationType = informationType;
}
/**
* Returns the label data for this SensitivityProperty
Object
*
* @return label
*/
public Label getLabel() {
return label;
}
/**
* Returns the information type data for this SensitivityProperty
Object
*
* @return informationType
*/
public InformationType getInformationType() {
return informationType;
}
}