Regened services.
git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@628 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
@@ -31,7 +31,7 @@ import com.threerings.presents.server.InvocationException;
|
||||
/**
|
||||
* Dispatches requests to the {@link TourneyProvider}.
|
||||
*/
|
||||
public class TourneyDispatcher extends InvocationDispatcher
|
||||
public class TourneyDispatcher extends InvocationDispatcher<TourneyMarshaller>
|
||||
{
|
||||
/**
|
||||
* Creates a dispatcher that may be registered to dispatch invocation
|
||||
@@ -43,7 +43,7 @@ public class TourneyDispatcher extends InvocationDispatcher
|
||||
}
|
||||
|
||||
@Override // documentation inherited
|
||||
public InvocationMarshaller createMarshaller ()
|
||||
public TourneyMarshaller createMarshaller ()
|
||||
{
|
||||
return new TourneyMarshaller();
|
||||
}
|
||||
|
||||
@@ -32,7 +32,7 @@ import com.threerings.presents.server.InvocationException;
|
||||
/**
|
||||
* Dispatches requests to the {@link TourniesProvider}.
|
||||
*/
|
||||
public class TourniesDispatcher extends InvocationDispatcher
|
||||
public class TourniesDispatcher extends InvocationDispatcher<TourniesMarshaller>
|
||||
{
|
||||
/**
|
||||
* Creates a dispatcher that may be registered to dispatch invocation
|
||||
@@ -44,7 +44,7 @@ public class TourniesDispatcher extends InvocationDispatcher
|
||||
}
|
||||
|
||||
@Override // documentation inherited
|
||||
public InvocationMarshaller createMarshaller ()
|
||||
public TourniesMarshaller createMarshaller ()
|
||||
{
|
||||
return new TourniesMarshaller();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user