Interface UserDataConstraint
-
- All Known Implementing Classes:
UserDataConstraintImpl
public interface UserDataConstraintI represent the information about how the web application's data should be protected.- Author:
- Danny Coward
-
-
Field Summary
Fields Modifier and Type Field Description static StringCLEARstatic StringCONFIDENTIAL_TRANSPORTstatic StringINTEGRAL_TRANSPORTstatic StringNONE_TRANSPORT
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()StringgetTransportGuarantee()String[]getUnacceptableTransportGuarantees()voidsetDescription(String description)voidsetTransportGuarantee(String transportGuarantee)
-
-
-
Field Detail
-
NONE_TRANSPORT
static final String NONE_TRANSPORT
- See Also:
- Constant Field Values
-
INTEGRAL_TRANSPORT
static final String INTEGRAL_TRANSPORT
- See Also:
- Constant Field Values
-
CONFIDENTIAL_TRANSPORT
static final String CONFIDENTIAL_TRANSPORT
- See Also:
- Constant Field Values
-
CLEAR
static final String CLEAR
- See Also:
- Constant Field Values
-
-
Method Detail
-
getDescription
String getDescription()
-
setDescription
void setDescription(String description)
-
getTransportGuarantee
String getTransportGuarantee()
-
getUnacceptableTransportGuarantees
String[] getUnacceptableTransportGuarantees()
-
setTransportGuarantee
void setTransportGuarantee(String transportGuarantee)
-
-