Regened services.
git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@628 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
@@ -29,7 +29,7 @@ import com.threerings.presents.server.InvocationException;
|
||||
/**
|
||||
* Dispatches requests to the {@link LobbyProvider}.
|
||||
*/
|
||||
public class LobbyDispatcher extends InvocationDispatcher
|
||||
public class LobbyDispatcher extends InvocationDispatcher<LobbyMarshaller>
|
||||
{
|
||||
/**
|
||||
* Creates a dispatcher that may be registered to dispatch invocation
|
||||
@@ -41,7 +41,7 @@ public class LobbyDispatcher extends InvocationDispatcher
|
||||
}
|
||||
|
||||
@Override // documentation inherited
|
||||
public InvocationMarshaller createMarshaller ()
|
||||
public LobbyMarshaller createMarshaller ()
|
||||
{
|
||||
return new LobbyMarshaller();
|
||||
}
|
||||
|
||||
@@ -31,7 +31,7 @@ import com.threerings.presents.server.InvocationException;
|
||||
/**
|
||||
* Dispatches requests to the {@link SimulatorProvider}.
|
||||
*/
|
||||
public class SimulatorDispatcher extends InvocationDispatcher
|
||||
public class SimulatorDispatcher extends InvocationDispatcher<SimulatorMarshaller>
|
||||
{
|
||||
/**
|
||||
* Creates a dispatcher that may be registered to dispatch invocation
|
||||
@@ -43,7 +43,7 @@ public class SimulatorDispatcher extends InvocationDispatcher
|
||||
}
|
||||
|
||||
@Override // documentation inherited
|
||||
public InvocationMarshaller createMarshaller ()
|
||||
public SimulatorMarshaller createMarshaller ()
|
||||
{
|
||||
return new SimulatorMarshaller();
|
||||
}
|
||||
|
||||
@@ -31,7 +31,7 @@ import com.threerings.presents.server.InvocationException;
|
||||
/**
|
||||
* Dispatches requests to the {@link TrickCardGameProvider}.
|
||||
*/
|
||||
public class TrickCardGameDispatcher extends InvocationDispatcher
|
||||
public class TrickCardGameDispatcher extends InvocationDispatcher<TrickCardGameMarshaller>
|
||||
{
|
||||
/**
|
||||
* Creates a dispatcher that may be registered to dispatch invocation
|
||||
@@ -43,7 +43,7 @@ public class TrickCardGameDispatcher extends InvocationDispatcher
|
||||
}
|
||||
|
||||
@Override // documentation inherited
|
||||
public InvocationMarshaller createMarshaller ()
|
||||
public TrickCardGameMarshaller createMarshaller ()
|
||||
{
|
||||
return new TrickCardGameMarshaller();
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ import com.threerings.util.Name;
|
||||
/**
|
||||
* Dispatches requests to the {@link ParlorProvider}.
|
||||
*/
|
||||
public class ParlorDispatcher extends InvocationDispatcher
|
||||
public class ParlorDispatcher extends InvocationDispatcher<ParlorMarshaller>
|
||||
{
|
||||
/**
|
||||
* Creates a dispatcher that may be registered to dispatch invocation
|
||||
@@ -46,7 +46,7 @@ public class ParlorDispatcher extends InvocationDispatcher
|
||||
}
|
||||
|
||||
@Override // documentation inherited
|
||||
public InvocationMarshaller createMarshaller ()
|
||||
public ParlorMarshaller createMarshaller ()
|
||||
{
|
||||
return new ParlorMarshaller();
|
||||
}
|
||||
|
||||
@@ -33,7 +33,7 @@ import com.threerings.presents.server.InvocationException;
|
||||
/**
|
||||
* Dispatches requests to the {@link TableProvider}.
|
||||
*/
|
||||
public class TableDispatcher extends InvocationDispatcher
|
||||
public class TableDispatcher extends InvocationDispatcher<TableMarshaller>
|
||||
{
|
||||
/**
|
||||
* Creates a dispatcher that may be registered to dispatch invocation
|
||||
@@ -45,7 +45,7 @@ public class TableDispatcher extends InvocationDispatcher
|
||||
}
|
||||
|
||||
@Override // documentation inherited
|
||||
public InvocationMarshaller createMarshaller ()
|
||||
public TableMarshaller createMarshaller ()
|
||||
{
|
||||
return new TableMarshaller();
|
||||
}
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
@@ -31,7 +31,7 @@ import com.threerings.puzzle.data.PuzzleGameMarshaller;
|
||||
/**
|
||||
* Dispatches requests to the {@link PuzzleGameProvider}.
|
||||
*/
|
||||
public class PuzzleGameDispatcher extends InvocationDispatcher
|
||||
public class PuzzleGameDispatcher extends InvocationDispatcher<PuzzleGameMarshaller>
|
||||
{
|
||||
/**
|
||||
* Creates a dispatcher that may be registered to dispatch invocation
|
||||
@@ -43,7 +43,7 @@ public class PuzzleGameDispatcher extends InvocationDispatcher
|
||||
}
|
||||
|
||||
@Override // documentation inherited
|
||||
public InvocationMarshaller createMarshaller ()
|
||||
public PuzzleGameMarshaller createMarshaller ()
|
||||
{
|
||||
return new PuzzleGameMarshaller();
|
||||
}
|
||||
|
||||
@@ -32,7 +32,7 @@ import com.threerings.stage.data.StageSceneMarshaller;
|
||||
/**
|
||||
* Dispatches requests to the {@link StageSceneProvider}.
|
||||
*/
|
||||
public class StageSceneDispatcher extends InvocationDispatcher
|
||||
public class StageSceneDispatcher extends InvocationDispatcher<StageSceneMarshaller>
|
||||
{
|
||||
/**
|
||||
* Creates a dispatcher that may be registered to dispatch invocation
|
||||
@@ -44,7 +44,7 @@ public class StageSceneDispatcher extends InvocationDispatcher
|
||||
}
|
||||
|
||||
@Override // documentation inherited
|
||||
public InvocationMarshaller createMarshaller ()
|
||||
public StageSceneMarshaller createMarshaller ()
|
||||
{
|
||||
return new StageSceneMarshaller();
|
||||
}
|
||||
|
||||
@@ -31,7 +31,7 @@ import com.threerings.whirled.data.SceneMarshaller;
|
||||
/**
|
||||
* Dispatches requests to the {@link SceneProvider}.
|
||||
*/
|
||||
public class SceneDispatcher extends InvocationDispatcher
|
||||
public class SceneDispatcher extends InvocationDispatcher<SceneMarshaller>
|
||||
{
|
||||
/**
|
||||
* Creates a dispatcher that may be registered to dispatch invocation
|
||||
@@ -43,7 +43,7 @@ public class SceneDispatcher extends InvocationDispatcher
|
||||
}
|
||||
|
||||
@Override // documentation inherited
|
||||
public InvocationMarshaller createMarshaller ()
|
||||
public SceneMarshaller createMarshaller ()
|
||||
{
|
||||
return new SceneMarshaller();
|
||||
}
|
||||
|
||||
@@ -33,7 +33,7 @@ import com.threerings.whirled.spot.data.SpotMarshaller;
|
||||
/**
|
||||
* Dispatches requests to the {@link SpotProvider}.
|
||||
*/
|
||||
public class SpotDispatcher extends InvocationDispatcher
|
||||
public class SpotDispatcher extends InvocationDispatcher<SpotMarshaller>
|
||||
{
|
||||
/**
|
||||
* Creates a dispatcher that may be registered to dispatch invocation
|
||||
@@ -45,7 +45,7 @@ public class SpotDispatcher extends InvocationDispatcher
|
||||
}
|
||||
|
||||
@Override // documentation inherited
|
||||
public InvocationMarshaller createMarshaller ()
|
||||
public SpotMarshaller createMarshaller ()
|
||||
{
|
||||
return new SpotMarshaller();
|
||||
}
|
||||
|
||||
@@ -31,7 +31,7 @@ import com.threerings.whirled.zone.data.ZoneMarshaller;
|
||||
/**
|
||||
* Dispatches requests to the {@link ZoneProvider}.
|
||||
*/
|
||||
public class ZoneDispatcher extends InvocationDispatcher
|
||||
public class ZoneDispatcher extends InvocationDispatcher<ZoneMarshaller>
|
||||
{
|
||||
/**
|
||||
* Creates a dispatcher that may be registered to dispatch invocation
|
||||
@@ -43,7 +43,7 @@ public class ZoneDispatcher extends InvocationDispatcher
|
||||
}
|
||||
|
||||
@Override // documentation inherited
|
||||
public InvocationMarshaller createMarshaller ()
|
||||
public ZoneMarshaller createMarshaller ()
|
||||
{
|
||||
return new ZoneMarshaller();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user