Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rajdeeprath/1aa0266dede70a5afa22942f00e99026 to your computer and use it in GitHub Desktop.
Save rajdeeprath/1aa0266dede70a5afa22942f00e99026 to your computer and use it in GitHub Desktop.
package com.flashvisions.server.red5.jsbridge;
/*
* RED5 Open Source Flash Server - http://www.osflash.org/red5
*
* Copyright (c) 2006-2008 by respective authors (see below). All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software
* Foundation; either version 2.1 of the License, or (at your option) any later
* version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along
* with this library; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
import java.util.List;
import org.red5.logging.Red5LoggerFactory;
import org.red5.server.adapter.MultiThreadedApplicationAdapter;
import org.red5.server.api.IConnection;
import org.red5.server.api.scope.IScope;
import org.red5.server.api.so.ISharedObject;
import org.red5.server.api.so.ISharedObjectSecurity;
import org.red5.server.plugin.PluginRegistry;
import org.slf4j.Logger;
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
public class Application extends MultiThreadedApplicationAdapter implements ISharedObjectSecurity {
private static Logger log = Red5LoggerFactory.getLogger(Application.class);
@Override
public boolean isCreationAllowed(IScope scope, String name,
boolean persistent) {
// TODO Auto-generated method stub
return false;
}
@Override
public boolean isConnectionAllowed(ISharedObject so) {
// TODO Auto-generated method stub
return false;
}
@Override
public boolean isWriteAllowed(ISharedObject so, String key, Object value) {
// TODO Auto-generated method stub
return false;
}
@Override
public boolean isDeleteAllowed(ISharedObject so, String key) {
// TODO Auto-generated method stub
return false;
}
@Override
public boolean isSendAllowed(ISharedObject so, String message,
List<?> arguments) {
// TODO Auto-generated method stub
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment