Package com.protegrity.ap.java


package com.protegrity.ap.java
Protegrity Application Protector Java API.

This package provides the core Java SDK for protecting and unprotecting sensitive data using Protegrity's Data Protection services. It includes classes for session management, authentication, and data transformation operations.

Main Classes

  • Protector - Main entry point for protection operations
  • SessionObject - Manages user sessions for protection operations
  • Authenticator - Handles authentication with Protegrity services

Usage Example


 Protector protector = Protector.getProtector();
 SessionObject session = protector.createSession("username");
 String[] protectedData = new String[data.length];
 protector.protect(session, "dataElement", data, protectedData);
 
Since:
1.0.1