blob: 800eb835335ce0e1f18231d819a9e3b4a2b9ee22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* Copyright 2013 Jesse Morgan
*/
package com.p4square.grow.frontend;
import org.restlet.resource.ServerResource;
import org.restlet.representation.Representation;
/**
*
* @author Jesse Morgan <jesse@jesterpm.net>
*/
public class AuthenticatedResource extends ServerResource {
protected Representation post() {
return null;
}
}
|