io.connectedhealth_idaas.eventbuilder.builders.hl7.MFN_M12 Maven / Gradle / Ivy
package io.connectedhealth_idaas.eventbuilder.builders.hl7;
import io.connectedhealth_idaas.eventbuilder.dataobjects.clinical.hl7.*;
import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
public class MFN_M12 {
private MSH messageHeader;
private SFT softwareSegment;
private UAC userAuthenticationCredentialSegment;
private MFI masterFileIdentification;
private MFE masterFileEntry;
private OM1 generalSegment;
private PRT participationInformation;
private OM7 additionalBasicAttributes;
private PRT participationInformation1;
public MSH getMessageHeader() {
return messageHeader;
}
public void setMessageHeader(MSH messageHeader) {
this.messageHeader = messageHeader;
}
public SFT getSoftwareSegment() {
return softwareSegment;
}
public void setSoftwareSegment(SFT softwareSegment) {
this.softwareSegment = softwareSegment;
}
public UAC getUserAuthenticationCredentialSegment() {
return userAuthenticationCredentialSegment;
}
public void setUserAuthenticationCredentialSegment(UAC userAuthenticationCredentialSegment) {
this.userAuthenticationCredentialSegment = userAuthenticationCredentialSegment;
}
public MFI getMasterFileIdentification() {
return masterFileIdentification;
}
public void setMasterFileIdentification(MFI masterFileIdentification) {
this.masterFileIdentification = masterFileIdentification;
}
public MFE getMasterFileEntry() {
return masterFileEntry;
}
public void setMasterFileEntry(MFE masterFileEntry) {
this.masterFileEntry = masterFileEntry;
}
public OM1 getGeneralSegment() {
return generalSegment;
}
public void setGeneralSegment(OM1 generalSegment) {
this.generalSegment = generalSegment;
}
public PRT getParticipationInformation() {
return participationInformation;
}
public void setParticipationInformation(PRT participationInformation) {
this.participationInformation = participationInformation;
}
public OM7 getAdditionalBasicAttributes() {
return additionalBasicAttributes;
}
public void setAdditionalBasicAttributes(OM7 additionalBasicAttributes) {
this.additionalBasicAttributes = additionalBasicAttributes;
}
public PRT getParticipationInformation1() {
return participationInformation1;
}
public void setParticipationInformation1(PRT participationInformation1) {
this.participationInformation1 = participationInformation1;
}
public String toString() {
return ReflectionToStringBuilder.toString(this);
}
}