
au.gov.amsa.sgb.decoder.rotatingfield.Cancellation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sgb-decoder Show documentation
Show all versions of sgb-decoder Show documentation
Decodes second generation Beacon detection messages and Beacon 23 Hex IDs
The newest version!
package au.gov.amsa.sgb.decoder.rotatingfield;
public final class Cancellation implements RotatingField {
private final RotatingFieldType rotatingFieldType = RotatingFieldType.CANCELLATION;
private final DeactivationMethod deactivationMethod;
public Cancellation(DeactivationMethod deactivationMethod) {
this.deactivationMethod = deactivationMethod;
}
@Override
public RotatingFieldType rotatingFieldType() {
return rotatingFieldType;
}
public DeactivationMethod deactivationMethod() {
return deactivationMethod;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy