public static function deleteAppInterface($appInterfaceId)
 {
     if (Config::get('pga_config.airavata')['enable-app-catalog-cache']) {
         if (Cache::has('APP-' . $appInterfaceId)) {
             Cache::forget('APP-' . $appInterfaceId);
         }
     }
     return Airavata::deleteApplicationInterface(Session::get('authz-token'), $appInterfaceId);
 }
	public static function deleteAppInterface( $appInterfaceId){
		return Airavata::deleteApplicationInterface( $appInterfaceId);
	}