All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.threatconnect.sdk.parser.service.writer.EmailAddressWriter Maven / Gradle / Ivy

There is a newer version: 2.9.0
Show newest version
package com.threatconnect.sdk.parser.service.writer;

import com.threatconnect.sdk.conn.Connection;
import com.threatconnect.sdk.model.EmailAddress;
import com.threatconnect.sdk.server.entity.Indicator.Type;

public class EmailAddressWriter extends TypedIndicatorWriter
{
	public EmailAddressWriter(final Connection connection, final EmailAddress emailAddress)
	{
		super(connection, emailAddress, com.threatconnect.sdk.server.entity.EmailAddress.class, Type.EmailAddress);
	}
	
	@Override
	protected String buildID()
	{
		return indicatorSource.getAddress();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy