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

com.sun.xml.ws.commons.AbstractMOMRegistrationAware Maven / Gradle / Ivy

There is a newer version: 4.0.4
Show newest version
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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy