Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Add manifest to source control

Code Block

git add META-INF
or
svn add META-INF

Make any manual modifications as necessary

Converting your extension model

...

Your extension model needs to provide a new getType method

Code Block

public interface JSONRPCBinding extends Binding {
   QName TYPE = new QName(SCA11_TUSCANY_NS, "binding.jsonrpc");
   ...
}

public class JSONRPCBindingImpl implements JSONRPCBinding {
   private String name;
   private String uri;

   public QName getType() {
	return TYPE;
   }

    ...
}