com.backendless.rt.RTMethodRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-common Show documentation
Show all versions of java-sdk-common Show documentation
Provides access to Backendless API
The newest version!
package com.backendless.rt;
public class RTMethodRequest extends AbstractRequest
{
private final MethodTypes methodType;
public RTMethodRequest( MethodTypes methodType, RTCallback callback )
{
super( callback );
this.methodType = methodType;
}
@Override
public String getName()
{
return methodType.name();
}
public MethodTypes getMethodType()
{
return methodType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy