com.backendless.rt.rso.SharedObjectFactory 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.rso;
import com.backendless.rt.AbstractListenerFactory;
public class SharedObjectFactory extends AbstractListenerFactory
{
private static final SharedObjectFactory instance = new SharedObjectFactory();
public static SharedObjectFactory getInstance()
{
return instance;
}
public SharedObject get( final String name )
{
return create( name );
}
@Override
protected SharedObject create( String name )
{
return new SharedObjectImpl( name );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy