<?php
namespace Vn\Web;
class Security {
const DEFINER = 1;
const INVOKER = 2;
}
/**
* Base class for REST services.
**/
abstract class RestRequest extends \Vn\Lib\Method {
const PARAMS = NULL;
const SECURITY = Security::DEFINER;
var $service;