From 84adefa331c4159d432d22840663c38f155cd4c1 Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Fri, 20 Nov 2009 14:54:40 +0000 Subject: The R13B03 release. --- lib/cosProperty/doc/src/cosProperty.xml | 149 ++++++++++++++++++++++++++++++++ 1 file changed, 149 insertions(+) create mode 100644 lib/cosProperty/doc/src/cosProperty.xml (limited to 'lib/cosProperty/doc/src/cosProperty.xml') diff --git a/lib/cosProperty/doc/src/cosProperty.xml b/lib/cosProperty/doc/src/cosProperty.xml new file mode 100644 index 0000000000..4dbbbad794 --- /dev/null +++ b/lib/cosProperty/doc/src/cosProperty.xml @@ -0,0 +1,149 @@ + + + + +
+ + 20002009 + Ericsson AB. All Rights Reserved. + + + The contents of this file are subject to the Erlang Public License, + Version 1.1, (the "License"); you may not use this file except in + compliance with the License. You should have received a copy of the + Erlang Public License along with this software. If not, it can be + retrieved online at http://www.erlang.org/. + + Software distributed under the License is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See + the License for the specific language governing rights and limitations + under the License. + + + + cosProperty + + + + 2000-06-07 + PA1 +
+ cosProperty + The main module of the cosProperty application + +

To get access to the record definitions for the structures use:

+-include_lib("cosProperty/include/*.hrl").

+

This module contains the functions for starting and stopping the application.

+
+ + + install() -> Return + Install the cosProperty application in the IFR + + Return = ok | {'EXIT', Reason} + + +

This operation installs the cosProperty application in the IFR.

+
+
+ + install_db() -> Return + Install data in mnesia necessary for running the cosProperty application + + Return = ok | {'EXIT', Reason} + + +

This operation installs data in mnesia necessary for running the + cosProperty application.

+
+
+ + uninstall() -> Return + Remove all data in the IFR related to the cosProperty application + + Return = ok | {'EXIT', Reason} + + +

This operation removes all data in the IFR related to the cosProperty + application.

+
+
+ + uninstall_db() -> Return + Remove all data from mnesia related to the cosProperty application + + Return = ok | {'EXIT', Reason} + + +

This operation removes all data from mnesia related to the cosProperty + application.

+
+
+ + start() -> Return + Start the cosProperty application + + Return = ok | {error, Reason} + + +

This operation starts the cosProperty application.

+
+
+ + start_SetDefFactory() -> Return + Start a PropertySetDef Factory + + Return = Factory | {'EXCEPTION', E} + Factory = CosPropertyService::PropertySetDefFactory reference. + + +

This operation starts a PropertySetDef Factory.

+
+
+ + start_SetFactory() -> Return + Start a PropertySet Factory + + Return = Factory | {'EXCEPTION', E} + Factory = CosPropertyService::PropertySetDefFactory reference. + + +

This operation starts a PropertySet Factory.

+
+
+ + stop_SetDefFactory(Factory) -> Return + Stop the given PropertySetDef Factory + + Factory = CosPropertyService::PropertySetDefFactory reference. + Return = ok | {'EXCEPTION', E} + + +

This operation stops the supplied PropertySetDef Factory.

+
+
+ + stop_SetFactory(Factory) -> Return + Stop the given PropertySet Factory + + Factory = CosPropertyService::PropertySetFactory reference. + Return = ok | {'EXCEPTION', E} + + +

This operation stops the supplied PropertySet Factory.

+
+
+ + stop() -> Return + Stop the cosProperty application + + Return = ok | {error, Reason} + + +

This operation stops the cosProperty application.

+
+
+
+ +
+ -- cgit v1.2.3