com.stackmob.core.jar
Class JarEntryObject

java.lang.Object
  extended by com.stackmob.core.jar.JarEntryObject

public abstract class JarEntryObject
extends Object

One class in the JAR must implement this interface, and that same class should be marked as the entry point in the manifest for the custom code JAR file. Note: Classes extending JarEntryObject must use a parameterless no-arg constructor.


Constructor Summary
JarEntryObject()
           
 
Method Summary
abstract  List<CustomCodeMethod> methods()
          Get all custom code methods the API may use for responding to API requests.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

JarEntryObject

public JarEntryObject()
Method Detail

methods

public abstract List<CustomCodeMethod> methods()
Get all custom code methods the API may use for responding to API requests. These CustomCodeMethod objects should be properly instantiated as the instances returned by this method will be used to respond to API requests. Classes extending CustomCodeMethod, but not instantiated and returned by this method, will not be available via the API.

Returns:
the list of custom code methods available to the API


Copyright © 2012 StackMob. All Rights Reserved.