Salome HOME
Merge branch 'V9_9_BR'
[modules/kernel.git] / src / NamingService / SALOME_Embedded_NamingService.py
1 #! /usr/bin/env python3
2 #  -*- coding: iso-8859-1 -*-
3 # Copyright (C) 2021-2022  CEA/DEN, EDF R&D
4 #
5 # This library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License, or (at your option) any later version.
9 #
10 # This library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # Lesser General Public License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with this library; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18 #
19 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #
21
22 import Engines__POA
23
24 import NamingService
25
26 class SALOME_Embedded_NamingService(Engines__POA.EmbeddedNamingService):
27
28     def __init__(self):
29         self._impl = NamingService.NamingService()
30         pass
31
32     def Register(self, ObjRef, Path):
33         self._impl._RegisterInternal(ObjRef.decode(),Path)
34         pass
35
36     def Resolve(self, Path):
37         ret = self._impl._ResolveInternal(Path)
38         return ret.encode()
39
40
41