com.sun.xml.ws.commons.AbstractMOMRegistrationAware Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webservices-rt Show documentation
Show all versions of webservices-rt Show documentation
This module contains the Metro runtime code.
package com.sun.xml.ws.commons;
/**
* Default implementation of {@link MOMRegistrationAware}.
*/
public abstract class AbstractMOMRegistrationAware implements MOMRegistrationAware {
private boolean atMOM = false;
public boolean isRegisteredAtMOM() {
return this.atMOM;
}
public void setRegisteredAtMOM(boolean atMOM) {
this.atMOM = atMOM;
}
}