com.smartlogic.classificationserver.client.SuccessRecord Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Semaphore-CS-Client Show documentation
Show all versions of Semaphore-CS-Client Show documentation
Client for the Smartlogic Semaphore Classification Server
package com.smartlogic.classificationserver.client;
/**
* Container for a classification record that is actually a success record.
* @author Smartlogic Semaphore
*
*/
public class SuccessRecord extends ClassificationRecord {
public SuccessRecord(String[] data, AuditFormat format) {
super(data, format);
}
}