⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cosfiletransfer_directory.erl

📁 OTP是开放电信平台的简称
💻 ERL
📖 第 1 页 / 共 2 页
字号:
%%------------------------------------------------------------%%%% Implementation stub file%% %% Target: CosFileTransfer_Directory%% Source: /ldisk/daily_build/otp_prebuild_r11b.2007-06-11_19/otp_src_R11B-5/lib/cosFileTransfer/src/CosFileTransfer.idl%% IC vsn: 4.2.13%% %% This file is automatically generated. DO NOT EDIT IT.%%%%-------------------------------------------------------------module('CosFileTransfer_Directory').-ic_compiled("4_2_13").%% Interface functions-export([list/2, list/3]).%% Exports from "CosFileTransfer::File"-export(['_get_name'/1, '_get_name'/2, '_get_complete_file_name'/1]).-export(['_get_complete_file_name'/2, '_get_parent'/1, '_get_parent'/2]).-export(['_get_associated_session'/1, '_get_associated_session'/2]).%% Exports from "CosPropertyService::PropertySetDef"-export([get_allowed_property_types/1, get_allowed_property_types/2, get_allowed_properties/1]).-export([get_allowed_properties/2, define_property_with_mode/4, define_property_with_mode/5]).-export([define_properties_with_modes/2, define_properties_with_modes/3, get_property_mode/2]).-export([get_property_mode/3, get_property_modes/2, get_property_modes/3]).-export([set_property_mode/3, set_property_mode/4, set_property_modes/2]).-export([set_property_modes/3]).%% Exports from "CosPropertyService::PropertySet"-export([define_property/3, define_property/4, define_properties/2]).-export([define_properties/3, get_number_of_properties/1, get_number_of_properties/2]).-export([get_all_property_names/2, get_all_property_names/3, get_property_value/2]).-export([get_property_value/3, get_properties/2, get_properties/3]).-export([get_all_properties/2, get_all_properties/3, delete_property/2]).-export([delete_property/3, delete_properties/2, delete_properties/3]).-export([delete_all_properties/1, delete_all_properties/2, is_property_defined/2]).-export([is_property_defined/3]).%% Type identification function-export([typeID/0]).%% Used to start server-export([oe_create/0, oe_create_link/0, oe_create/1]).-export([oe_create_link/1, oe_create/2, oe_create_link/2]).%% TypeCode Functions and inheritance-export([oe_tc/1, oe_is_a/1, oe_get_interface/0]).%% gen server export stuff-behaviour(gen_server).-export([init/1, terminate/2, handle_call/3]).-export([handle_cast/2, handle_info/2, code_change/3]).-include_lib("orber/include/corba.hrl").%%------------------------------------------------------------%%%% Object interface functions.%%%%------------------------------------------------------------%%%% Operation: list%% %%   Returns: RetVal, Fl, Fi%%list(OE_THIS, How_many) ->    corba:call(OE_THIS, list, [How_many], ?MODULE).list(OE_THIS, OE_Options, How_many) ->    corba:call(OE_THIS, list, [How_many], ?MODULE, OE_Options).%%%% Operation: '_get_name'%% %%   Returns: RetVal%%'_get_name'(OE_THIS) ->    corba:call(OE_THIS, '_get_name', [], ?MODULE).'_get_name'(OE_THIS, OE_Options) ->    corba:call(OE_THIS, '_get_name', [], ?MODULE, OE_Options).%%%% Operation: '_get_complete_file_name'%% %%   Returns: RetVal%%'_get_complete_file_name'(OE_THIS) ->    corba:call(OE_THIS, '_get_complete_file_name', [], ?MODULE).'_get_complete_file_name'(OE_THIS, OE_Options) ->    corba:call(OE_THIS, '_get_complete_file_name', [], ?MODULE, OE_Options).%%%% Operation: '_get_parent'%% %%   Returns: RetVal%%'_get_parent'(OE_THIS) ->    corba:call(OE_THIS, '_get_parent', [], ?MODULE).'_get_parent'(OE_THIS, OE_Options) ->    corba:call(OE_THIS, '_get_parent', [], ?MODULE, OE_Options).%%%% Operation: '_get_associated_session'%% %%   Returns: RetVal%%'_get_associated_session'(OE_THIS) ->    corba:call(OE_THIS, '_get_associated_session', [], ?MODULE).'_get_associated_session'(OE_THIS, OE_Options) ->    corba:call(OE_THIS, '_get_associated_session', [], ?MODULE, OE_Options).%%%% Operation: get_allowed_property_types%% %%   Returns: RetVal, Property_types%%get_allowed_property_types(OE_THIS) ->    corba:call(OE_THIS, get_allowed_property_types, [], ?MODULE).get_allowed_property_types(OE_THIS, OE_Options) ->    corba:call(OE_THIS, get_allowed_property_types, [], ?MODULE, OE_Options).%%%% Operation: get_allowed_properties%% %%   Returns: RetVal, Property_defs%%get_allowed_properties(OE_THIS) ->    corba:call(OE_THIS, get_allowed_properties, [], ?MODULE).get_allowed_properties(OE_THIS, OE_Options) ->    corba:call(OE_THIS, get_allowed_properties, [], ?MODULE, OE_Options).%%%% Operation: define_property_with_mode%% %%   Returns: RetVal%%   Raises:  CosPropertyService::InvalidPropertyName, CosPropertyService::ConflictingProperty, CosPropertyService::UnsupportedTypeCode, CosPropertyService::UnsupportedProperty, CosPropertyService::UnsupportedMode, CosPropertyService::ReadOnlyProperty%%define_property_with_mode(OE_THIS, Property_name, Property_value, Property_mode) ->    corba:call(OE_THIS, define_property_with_mode, [Property_name, Property_value, Property_mode], ?MODULE).define_property_with_mode(OE_THIS, OE_Options, Property_name, Property_value, Property_mode) ->    corba:call(OE_THIS, define_property_with_mode, [Property_name, Property_value, Property_mode], ?MODULE, OE_Options).%%%% Operation: define_properties_with_modes%% %%   Returns: RetVal%%   Raises:  CosPropertyService::MultipleExceptions%%define_properties_with_modes(OE_THIS, Property_defs) ->    corba:call(OE_THIS, define_properties_with_modes, [Property_defs], ?MODULE).define_properties_with_modes(OE_THIS, OE_Options, Property_defs) ->    corba:call(OE_THIS, define_properties_with_modes, [Property_defs], ?MODULE, OE_Options).%%%% Operation: get_property_mode%% %%   Returns: RetVal%%   Raises:  CosPropertyService::PropertyNotFound, CosPropertyService::InvalidPropertyName%%get_property_mode(OE_THIS, Property_name) ->    corba:call(OE_THIS, get_property_mode, [Property_name], ?MODULE).get_property_mode(OE_THIS, OE_Options, Property_name) ->    corba:call(OE_THIS, get_property_mode, [Property_name], ?MODULE, OE_Options).%%%% Operation: get_property_modes%% %%   Returns: RetVal, Property_modes%%get_property_modes(OE_THIS, Property_names) ->    corba:call(OE_THIS, get_property_modes, [Property_names], ?MODULE).get_property_modes(OE_THIS, OE_Options, Property_names) ->    corba:call(OE_THIS, get_property_modes, [Property_names], ?MODULE, OE_Options).%%%% Operation: set_property_mode%% %%   Returns: RetVal%%   Raises:  CosPropertyService::InvalidPropertyName, CosPropertyService::PropertyNotFound, CosPropertyService::UnsupportedMode%%set_property_mode(OE_THIS, Property_name, Property_mode) ->    corba:call(OE_THIS, set_property_mode, [Property_name, Property_mode], ?MODULE).set_property_mode(OE_THIS, OE_Options, Property_name, Property_mode) ->    corba:call(OE_THIS, set_property_mode, [Property_name, Property_mode], ?MODULE, OE_Options).%%%% Operation: set_property_modes%% %%   Returns: RetVal%%   Raises:  CosPropertyService::MultipleExceptions%%set_property_modes(OE_THIS, Property_modes) ->    corba:call(OE_THIS, set_property_modes, [Property_modes], ?MODULE).set_property_modes(OE_THIS, OE_Options, Property_modes) ->    corba:call(OE_THIS, set_property_modes, [Property_modes], ?MODULE, OE_Options).%%%% Operation: define_property%% %%   Returns: RetVal%%   Raises:  CosPropertyService::InvalidPropertyName, CosPropertyService::ConflictingProperty, CosPropertyService::UnsupportedTypeCode, CosPropertyService::UnsupportedProperty, CosPropertyService::ReadOnlyProperty%%define_property(OE_THIS, Property_name, Property_value) ->    corba:call(OE_THIS, define_property, [Property_name, Property_value], ?MODULE).define_property(OE_THIS, OE_Options, Property_name, Property_value) ->    corba:call(OE_THIS, define_property, [Property_name, Property_value], ?MODULE, OE_Options).%%%% Operation: define_properties%% %%   Returns: RetVal%%   Raises:  CosPropertyService::MultipleExceptions%%define_properties(OE_THIS, Nproperties) ->    corba:call(OE_THIS, define_properties, [Nproperties], ?MODULE).define_properties(OE_THIS, OE_Options, Nproperties) ->    corba:call(OE_THIS, define_properties, [Nproperties], ?MODULE, OE_Options).%%%% Operation: get_number_of_properties%% %%   Returns: RetVal%%get_number_of_properties(OE_THIS) ->    corba:call(OE_THIS, get_number_of_properties, [], ?MODULE).get_number_of_properties(OE_THIS, OE_Options) ->    corba:call(OE_THIS, get_number_of_properties, [], ?MODULE, OE_Options).%%%% Operation: get_all_property_names%% %%   Returns: RetVal, Property_names, Rest%%get_all_property_names(OE_THIS, How_many) ->    corba:call(OE_THIS, get_all_property_names, [How_many], ?MODULE).get_all_property_names(OE_THIS, OE_Options, How_many) ->    corba:call(OE_THIS, get_all_property_names, [How_many], ?MODULE, OE_Options).%%%% Operation: get_property_value%% %%   Returns: RetVal%%   Raises:  CosPropertyService::PropertyNotFound, CosPropertyService::InvalidPropertyName%%get_property_value(OE_THIS, Property_name) ->    corba:call(OE_THIS, get_property_value, [Property_name], ?MODULE).get_property_value(OE_THIS, OE_Options, Property_name) ->    corba:call(OE_THIS, get_property_value, [Property_name], ?MODULE, OE_Options).%%%% Operation: get_properties%% %%   Returns: RetVal, Nproperties%%get_properties(OE_THIS, Property_names) ->    corba:call(OE_THIS, get_properties, [Property_names], ?MODULE).get_properties(OE_THIS, OE_Options, Property_names) ->    corba:call(OE_THIS, get_properties, [Property_names], ?MODULE, OE_Options).%%%% Operation: get_all_properties%% %%   Returns: RetVal, Nproperties, Rest%%get_all_properties(OE_THIS, How_many) ->    corba:call(OE_THIS, get_all_properties, [How_many], ?MODULE).get_all_properties(OE_THIS, OE_Options, How_many) ->    corba:call(OE_THIS, get_all_properties, [How_many], ?MODULE, OE_Options).%%%% Operation: delete_property%% %%   Returns: RetVal%%   Raises:  CosPropertyService::PropertyNotFound, CosPropertyService::InvalidPropertyName, CosPropertyService::FixedProperty%%delete_property(OE_THIS, Property_name) ->    corba:call(OE_THIS, delete_property, [Property_name], ?MODULE).delete_property(OE_THIS, OE_Options, Property_name) ->    corba:call(OE_THIS, delete_property, [Property_name], ?MODULE, OE_Options).%%%% Operation: delete_properties%% %%   Returns: RetVal%%   Raises:  CosPropertyService::MultipleExceptions%%delete_properties(OE_THIS, Property_names) ->    corba:call(OE_THIS, delete_properties, [Property_names], ?MODULE).delete_properties(OE_THIS, OE_Options, Property_names) ->    corba:call(OE_THIS, delete_properties, [Property_names], ?MODULE, OE_Options).%%%% Operation: delete_all_properties%% %%   Returns: RetVal%%delete_all_properties(OE_THIS) ->    corba:call(OE_THIS, delete_all_properties, [], ?MODULE).delete_all_properties(OE_THIS, OE_Options) ->    corba:call(OE_THIS, delete_all_properties, [], ?MODULE, OE_Options).%%%% Operation: is_property_defined%% %%   Returns: RetVal%%   Raises:  CosPropertyService::InvalidPropertyName%%is_property_defined(OE_THIS, Property_name) ->    corba:call(OE_THIS, is_property_defined, [Property_name], ?MODULE).is_property_defined(OE_THIS, OE_Options, Property_name) ->    corba:call(OE_THIS, is_property_defined, [Property_name], ?MODULE, OE_Options).%%------------------------------------------------------------%%%% Inherited Interfaces%%%%------------------------------------------------------------oe_is_a("IDL:omg.org/CosFileTransfer/Directory:1.0") -> true;oe_is_a("IDL:omg.org/CosFileTransfer/File:1.0") -> true;oe_is_a("IDL:omg.org/CosPropertyService/PropertySetDef:1.0") -> true;oe_is_a("IDL:omg.org/CosPropertyService/PropertySet:1.0") -> true;oe_is_a(_) -> false.%%------------------------------------------------------------%%%% Interface TypeCode%%%%------------------------------------------------------------oe_tc(list) -> 	{tk_void,

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -