no.digipost.api.handlers.EbmsContextAware Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdp-api-client Show documentation
Show all versions of sdp-api-client Show documentation
Klientfunksjonaltet for Sikker Digital Post
package no.digipost.api.handlers;
import no.digipost.api.representations.EbmsContext;
public abstract class EbmsContextAware {
protected EbmsContext ebmsContext;
public void setContext(final EbmsContext ebmsContext) {
this.ebmsContext = ebmsContext;
}
}