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

com.mx.path.gateway.BaseMdxGateway Maven / Gradle / Ivy

The newest version!
package com.mx.path.gateway;

import lombok.experimental.SuperBuilder;

import com.mx.path.core.common.gateway.GatewayBaseClass;
import com.mx.path.model.mdx.accessor.BaseAccessor;

@GatewayBaseClass(namespace = "com.mx.path.gateway.api", target = BaseAccessor.class, className = "Gateway")
@SuperBuilder
public abstract class BaseMdxGateway extends Gateway {
  public BaseMdxGateway() {
    super();
  }

  public BaseMdxGateway(String clientId) {
    super(clientId);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy