1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763
|
/*----- PROTECTED REGION ID(DataBaseStateMachine.cpp) ENABLED START -----*/
//=============================================================================
//
// file : DataBaseStateMachine.cpp
//
// description : C++ source for the �name� and its alowed
// methods for commands and attributes
//
// project : TANGO.
//
// Copyright (C) : 2004,2005,2006,2007,2008,2009,2010,2011,2012,2013
// European Synchrotron Radiation Facility
// BP 220, Grenoble 38043
// FRANCE
//
// This file is part of Tango.
//
// Tango is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Tango 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Tango. If not, see <http://www.gnu.org/licenses/>.
//
//=============================================================================
// This file is generated by POGO
// (Program Obviously used to Generate tango Object)
//=============================================================================
#include "DataBase.h"
#include "DataBaseClass.h"
/* The address_allowed, key and acl_enabled variables are defined in main.cpp */
#ifndef _TG_WINDOWS_
#include <unordered_set>
extern std::unordered_set<std::string> addresses_allowed;
std::unordered_set<std::string>::const_iterator cit;
extern omni_thread::key_t key;
extern int acl_enabled;
#endif
/*----- PROTECTED REGION END -----*/ // DataBase::DataBaseStateMachine.cpp
//================================================================
// States | Description
//================================================================
namespace DataBase_ns
{
//=================================================
// Attributes Allowed Methods
//=================================================
//--------------------------------------------------------
/**
* Method : DataBase::is_StoredProcedureRelease_allowed()
* Description : Execution allowed for StoredProcedureRelease attribute
*/
//--------------------------------------------------------
bool DataBase::is_StoredProcedureRelease_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for StoredProcedureRelease attribute in read access.
/*----- PROTECTED REGION ID(DataBase::StoredProcedureReleaseStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::StoredProcedureReleaseStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_Timing_average_allowed()
* Description : Execution allowed for Timing_average attribute
*/
//--------------------------------------------------------
bool DataBase::is_Timing_average_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for Timing_average attribute in read access.
/*----- PROTECTED REGION ID(DataBase::Timing_averageStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::Timing_averageStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_Timing_minimum_allowed()
* Description : Execution allowed for Timing_minimum attribute
*/
//--------------------------------------------------------
bool DataBase::is_Timing_minimum_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for Timing_minimum attribute in read access.
/*----- PROTECTED REGION ID(DataBase::Timing_minimumStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::Timing_minimumStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_Timing_maximum_allowed()
* Description : Execution allowed for Timing_maximum attribute
*/
//--------------------------------------------------------
bool DataBase::is_Timing_maximum_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for Timing_maximum attribute in read access.
/*----- PROTECTED REGION ID(DataBase::Timing_maximumStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::Timing_maximumStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_Timing_calls_allowed()
* Description : Execution allowed for Timing_calls attribute
*/
//--------------------------------------------------------
bool DataBase::is_Timing_calls_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for Timing_calls attribute in read access.
/*----- PROTECTED REGION ID(DataBase::Timing_callsStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::Timing_callsStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_Timing_index_allowed()
* Description : Execution allowed for Timing_index attribute
*/
//--------------------------------------------------------
bool DataBase::is_Timing_index_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for Timing_index attribute in read access.
/*----- PROTECTED REGION ID(DataBase::Timing_indexStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::Timing_indexStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_Timing_info_allowed()
* Description : Execution allowed for Timing_info attribute
*/
//--------------------------------------------------------
bool DataBase::is_Timing_info_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for Timing_info attribute in read access.
/*----- PROTECTED REGION ID(DataBase::Timing_infoStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::Timing_infoStateAllowed_READ
return true;
}
//=================================================
// Commands Allowed Methods
//=================================================
//--------------------------------------------------------
/**
* Method : DataBase::is_DbAddDevice_allowed()
* Description : Execution allowed for DbAddDevice attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbAddDevice_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbAddDevice command.
/*----- PROTECTED REGION ID(DataBase::DbAddDeviceStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbAddDeviceStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbAddServer_allowed()
* Description : Execution allowed for DbAddServer attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbAddServer_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbAddServer command.
/*----- PROTECTED REGION ID(DataBase::DbAddServerStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbAddServerStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbDeleteAttributeAlias_allowed()
* Description : Execution allowed for DbDeleteAttributeAlias attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbDeleteAttributeAlias_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbDeleteAttributeAlias command.
/*----- PROTECTED REGION ID(DataBase::DbDeleteAttributeAliasStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbDeleteAttributeAliasStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbDeleteClassAttribute_allowed()
* Description : Execution allowed for DbDeleteClassAttribute attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbDeleteClassAttribute_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbDeleteClassAttribute command.
/*----- PROTECTED REGION ID(DataBase::DbDeleteClassAttributeStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbDeleteClassAttributeStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbDeleteClassAttributeProperty_allowed()
* Description : Execution allowed for DbDeleteClassAttributeProperty attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbDeleteClassAttributeProperty_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbDeleteClassAttributeProperty command.
/*----- PROTECTED REGION ID(DataBase::DbDeleteClassAttributePropertyStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbDeleteClassAttributePropertyStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbDeleteClassProperty_allowed()
* Description : Execution allowed for DbDeleteClassProperty attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbDeleteClassProperty_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbDeleteClassProperty command.
/*----- PROTECTED REGION ID(DataBase::DbDeleteClassPropertyStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbDeleteClassPropertyStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbDeleteDevice_allowed()
* Description : Execution allowed for DbDeleteDevice attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbDeleteDevice_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbDeleteDevice command.
/*----- PROTECTED REGION ID(DataBase::DbDeleteDeviceStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbDeleteDeviceStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbDeleteDeviceAlias_allowed()
* Description : Execution allowed for DbDeleteDeviceAlias attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbDeleteDeviceAlias_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbDeleteDeviceAlias command.
/*----- PROTECTED REGION ID(DataBase::DbDeleteDeviceAliasStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbDeleteDeviceAliasStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbDeleteDeviceAttribute_allowed()
* Description : Execution allowed for DbDeleteDeviceAttribute attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbDeleteDeviceAttribute_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbDeleteDeviceAttribute command.
/*----- PROTECTED REGION ID(DataBase::DbDeleteDeviceAttributeStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbDeleteDeviceAttributeStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbDeleteDeviceAttributeProperty_allowed()
* Description : Execution allowed for DbDeleteDeviceAttributeProperty attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbDeleteDeviceAttributeProperty_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbDeleteDeviceAttributeProperty command.
/*----- PROTECTED REGION ID(DataBase::DbDeleteDeviceAttributePropertyStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbDeleteDeviceAttributePropertyStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbDeleteDeviceProperty_allowed()
* Description : Execution allowed for DbDeleteDeviceProperty attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbDeleteDeviceProperty_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbDeleteDeviceProperty command.
/*----- PROTECTED REGION ID(DataBase::DbDeleteDevicePropertyStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbDeleteDevicePropertyStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbDeleteProperty_allowed()
* Description : Execution allowed for DbDeleteProperty attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbDeleteProperty_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbDeleteProperty command.
/*----- PROTECTED REGION ID(DataBase::DbDeletePropertyStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbDeletePropertyStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbDeleteServer_allowed()
* Description : Execution allowed for DbDeleteServer attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbDeleteServer_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbDeleteServer command.
/*----- PROTECTED REGION ID(DataBase::DbDeleteServerStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbDeleteServerStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbDeleteServerInfo_allowed()
* Description : Execution allowed for DbDeleteServerInfo attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbDeleteServerInfo_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbDeleteServerInfo command.
/*----- PROTECTED REGION ID(DataBase::DbDeleteServerInfoStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbDeleteServerInfoStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbExportDevice_allowed()
* Description : Execution allowed for DbExportDevice attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbExportDevice_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbExportDevice command.
/*----- PROTECTED REGION ID(DataBase::DbExportDeviceStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbExportDeviceStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbExportEvent_allowed()
* Description : Execution allowed for DbExportEvent attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbExportEvent_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbExportEvent command.
/*----- PROTECTED REGION ID(DataBase::DbExportEventStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbExportEventStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetAliasDevice_allowed()
* Description : Execution allowed for DbGetAliasDevice attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetAliasDevice_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetAliasDevice command.
/*----- PROTECTED REGION ID(DataBase::DbGetAliasDeviceStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetAliasDeviceStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetAttributeAlias_allowed()
* Description : Execution allowed for DbGetAttributeAlias attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetAttributeAlias_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetAttributeAlias command.
/*----- PROTECTED REGION ID(DataBase::DbGetAttributeAliasStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetAttributeAliasStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetAttributeAliasList_allowed()
* Description : Execution allowed for DbGetAttributeAliasList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetAttributeAliasList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetAttributeAliasList command.
/*----- PROTECTED REGION ID(DataBase::DbGetAttributeAliasListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetAttributeAliasListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetClassAttributeList_allowed()
* Description : Execution allowed for DbGetClassAttributeList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetClassAttributeList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetClassAttributeList command.
/*----- PROTECTED REGION ID(DataBase::DbGetClassAttributeListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetClassAttributeListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetClassAttributeProperty_allowed()
* Description : Execution allowed for DbGetClassAttributeProperty attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetClassAttributeProperty_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetClassAttributeProperty command.
/*----- PROTECTED REGION ID(DataBase::DbGetClassAttributePropertyStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetClassAttributePropertyStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetClassAttributeProperty2_allowed()
* Description : Execution allowed for DbGetClassAttributeProperty2 attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetClassAttributeProperty2_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetClassAttributeProperty2 command.
/*----- PROTECTED REGION ID(DataBase::DbGetClassAttributeProperty2StateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetClassAttributeProperty2StateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetClassAttributePropertyHist_allowed()
* Description : Execution allowed for DbGetClassAttributePropertyHist attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetClassAttributePropertyHist_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetClassAttributePropertyHist command.
/*----- PROTECTED REGION ID(DataBase::DbGetClassAttributePropertyHistStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetClassAttributePropertyHistStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetClassForDevice_allowed()
* Description : Execution allowed for DbGetClassForDevice attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetClassForDevice_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetClassForDevice command.
/*----- PROTECTED REGION ID(DataBase::DbGetClassForDeviceStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetClassForDeviceStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetClassInheritanceForDevice_allowed()
* Description : Execution allowed for DbGetClassInheritanceForDevice attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetClassInheritanceForDevice_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetClassInheritanceForDevice command.
/*----- PROTECTED REGION ID(DataBase::DbGetClassInheritanceForDeviceStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetClassInheritanceForDeviceStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetClassList_allowed()
* Description : Execution allowed for DbGetClassList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetClassList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetClassList command.
/*----- PROTECTED REGION ID(DataBase::DbGetClassListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetClassListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetClassProperty_allowed()
* Description : Execution allowed for DbGetClassProperty attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetClassProperty_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetClassProperty command.
/*----- PROTECTED REGION ID(DataBase::DbGetClassPropertyStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetClassPropertyStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetClassPropertyHist_allowed()
* Description : Execution allowed for DbGetClassPropertyHist attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetClassPropertyHist_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetClassPropertyHist command.
/*----- PROTECTED REGION ID(DataBase::DbGetClassPropertyHistStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetClassPropertyHistStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetClassPropertyList_allowed()
* Description : Execution allowed for DbGetClassPropertyList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetClassPropertyList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetClassPropertyList command.
/*----- PROTECTED REGION ID(DataBase::DbGetClassPropertyListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetClassPropertyListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetDeviceAlias_allowed()
* Description : Execution allowed for DbGetDeviceAlias attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetDeviceAlias_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetDeviceAlias command.
/*----- PROTECTED REGION ID(DataBase::DbGetDeviceAliasStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetDeviceAliasStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetDeviceAliasList_allowed()
* Description : Execution allowed for DbGetDeviceAliasList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetDeviceAliasList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetDeviceAliasList command.
/*----- PROTECTED REGION ID(DataBase::DbGetDeviceAliasListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetDeviceAliasListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetDeviceAttributeList_allowed()
* Description : Execution allowed for DbGetDeviceAttributeList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetDeviceAttributeList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetDeviceAttributeList command.
/*----- PROTECTED REGION ID(DataBase::DbGetDeviceAttributeListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetDeviceAttributeListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetDeviceAttributeProperty_allowed()
* Description : Execution allowed for DbGetDeviceAttributeProperty attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetDeviceAttributeProperty_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetDeviceAttributeProperty command.
/*----- PROTECTED REGION ID(DataBase::DbGetDeviceAttributePropertyStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetDeviceAttributePropertyStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetDeviceAttributeProperty2_allowed()
* Description : Execution allowed for DbGetDeviceAttributeProperty2 attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetDeviceAttributeProperty2_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetDeviceAttributeProperty2 command.
/*----- PROTECTED REGION ID(DataBase::DbGetDeviceAttributeProperty2StateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetDeviceAttributeProperty2StateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetDeviceAttributePropertyHist_allowed()
* Description : Execution allowed for DbGetDeviceAttributePropertyHist attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetDeviceAttributePropertyHist_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetDeviceAttributePropertyHist command.
/*----- PROTECTED REGION ID(DataBase::DbGetDeviceAttributePropertyHistStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetDeviceAttributePropertyHistStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetDeviceClassList_allowed()
* Description : Execution allowed for DbGetDeviceClassList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetDeviceClassList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetDeviceClassList command.
/*----- PROTECTED REGION ID(DataBase::DbGetDeviceClassListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetDeviceClassListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetDeviceDomainList_allowed()
* Description : Execution allowed for DbGetDeviceDomainList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetDeviceDomainList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetDeviceDomainList command.
/*----- PROTECTED REGION ID(DataBase::DbGetDeviceDomainListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetDeviceDomainListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetDeviceExportedList_allowed()
* Description : Execution allowed for DbGetDeviceExportedList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetDeviceExportedList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetDeviceExportedList command.
/*----- PROTECTED REGION ID(DataBase::DbGetDeviceExportedListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetDeviceExportedListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetDeviceFamilyList_allowed()
* Description : Execution allowed for DbGetDeviceFamilyList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetDeviceFamilyList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetDeviceFamilyList command.
/*----- PROTECTED REGION ID(DataBase::DbGetDeviceFamilyListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetDeviceFamilyListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetDeviceInfo_allowed()
* Description : Execution allowed for DbGetDeviceInfo attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetDeviceInfo_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetDeviceInfo command.
/*----- PROTECTED REGION ID(DataBase::DbGetDeviceInfoStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetDeviceInfoStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetDeviceList_allowed()
* Description : Execution allowed for DbGetDeviceList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetDeviceList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetDeviceList command.
/*----- PROTECTED REGION ID(DataBase::DbGetDeviceListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetDeviceListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetDeviceWideList_allowed()
* Description : Execution allowed for DbGetDeviceWideList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetDeviceWideList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetDeviceWideList command.
/*----- PROTECTED REGION ID(DataBase::DbGetDeviceWideListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetDeviceWideListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetDeviceMemberList_allowed()
* Description : Execution allowed for DbGetDeviceMemberList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetDeviceMemberList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetDeviceMemberList command.
/*----- PROTECTED REGION ID(DataBase::DbGetDeviceMemberListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetDeviceMemberListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetDeviceProperty_allowed()
* Description : Execution allowed for DbGetDeviceProperty attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetDeviceProperty_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetDeviceProperty command.
/*----- PROTECTED REGION ID(DataBase::DbGetDevicePropertyStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetDevicePropertyStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetDevicePropertyHist_allowed()
* Description : Execution allowed for DbGetDevicePropertyHist attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetDevicePropertyHist_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetDevicePropertyHist command.
/*----- PROTECTED REGION ID(DataBase::DbGetDevicePropertyHistStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetDevicePropertyHistStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetDevicePropertyList_allowed()
* Description : Execution allowed for DbGetDevicePropertyList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetDevicePropertyList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetDevicePropertyList command.
/*----- PROTECTED REGION ID(DataBase::DbGetDevicePropertyListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetDevicePropertyListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetDeviceServerClassList_allowed()
* Description : Execution allowed for DbGetDeviceServerClassList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetDeviceServerClassList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetDeviceServerClassList command.
/*----- PROTECTED REGION ID(DataBase::DbGetDeviceServerClassListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetDeviceServerClassListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetExportdDeviceListForClass_allowed()
* Description : Execution allowed for DbGetExportdDeviceListForClass attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetExportdDeviceListForClass_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetExportdDeviceListForClass command.
/*----- PROTECTED REGION ID(DataBase::DbGetExportdDeviceListForClassStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetExportdDeviceListForClassStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetHostList_allowed()
* Description : Execution allowed for DbGetHostList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetHostList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetHostList command.
/*----- PROTECTED REGION ID(DataBase::DbGetHostListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetHostListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetHostServerList_allowed()
* Description : Execution allowed for DbGetHostServerList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetHostServerList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetHostServerList command.
/*----- PROTECTED REGION ID(DataBase::DbGetHostServerListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetHostServerListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetHostServersInfo_allowed()
* Description : Execution allowed for DbGetHostServersInfo attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetHostServersInfo_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetHostServersInfo command.
/*----- PROTECTED REGION ID(DataBase::DbGetHostServersInfoStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetHostServersInfoStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetInstanceNameList_allowed()
* Description : Execution allowed for DbGetInstanceNameList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetInstanceNameList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetInstanceNameList command.
/*----- PROTECTED REGION ID(DataBase::DbGetInstanceNameListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetInstanceNameListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetObjectList_allowed()
* Description : Execution allowed for DbGetObjectList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetObjectList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetObjectList command.
/*----- PROTECTED REGION ID(DataBase::DbGetObjectListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetObjectListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetProperty_allowed()
* Description : Execution allowed for DbGetProperty attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetProperty_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetProperty command.
/*----- PROTECTED REGION ID(DataBase::DbGetPropertyStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetPropertyStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetPropertyHist_allowed()
* Description : Execution allowed for DbGetPropertyHist attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetPropertyHist_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetPropertyHist command.
/*----- PROTECTED REGION ID(DataBase::DbGetPropertyHistStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetPropertyHistStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetPropertyList_allowed()
* Description : Execution allowed for DbGetPropertyList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetPropertyList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetPropertyList command.
/*----- PROTECTED REGION ID(DataBase::DbGetPropertyListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetPropertyListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetServerInfo_allowed()
* Description : Execution allowed for DbGetServerInfo attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetServerInfo_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetServerInfo command.
/*----- PROTECTED REGION ID(DataBase::DbGetServerInfoStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetServerInfoStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetServerList_allowed()
* Description : Execution allowed for DbGetServerList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetServerList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetServerList command.
/*----- PROTECTED REGION ID(DataBase::DbGetServerListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetServerListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetServerNameList_allowed()
* Description : Execution allowed for DbGetServerNameList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetServerNameList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetServerNameList command.
/*----- PROTECTED REGION ID(DataBase::DbGetServerNameListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetServerNameListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbImportDevice_allowed()
* Description : Execution allowed for DbImportDevice attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbImportDevice_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbImportDevice command.
/*----- PROTECTED REGION ID(DataBase::DbImportDeviceStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbImportDeviceStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbImportEvent_allowed()
* Description : Execution allowed for DbImportEvent attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbImportEvent_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbImportEvent command.
/*----- PROTECTED REGION ID(DataBase::DbImportEventStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbImportEventStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbInfo_allowed()
* Description : Execution allowed for DbInfo attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbInfo_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbInfo command.
/*----- PROTECTED REGION ID(DataBase::DbInfoStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbInfoStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbPutAttributeAlias_allowed()
* Description : Execution allowed for DbPutAttributeAlias attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbPutAttributeAlias_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbPutAttributeAlias command.
/*----- PROTECTED REGION ID(DataBase::DbPutAttributeAliasStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbPutAttributeAliasStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbPutClassAttributeProperty_allowed()
* Description : Execution allowed for DbPutClassAttributeProperty attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbPutClassAttributeProperty_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbPutClassAttributeProperty command.
/*----- PROTECTED REGION ID(DataBase::DbPutClassAttributePropertyStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbPutClassAttributePropertyStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbPutClassAttributeProperty2_allowed()
* Description : Execution allowed for DbPutClassAttributeProperty2 attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbPutClassAttributeProperty2_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbPutClassAttributeProperty2 command.
/*----- PROTECTED REGION ID(DataBase::DbPutClassAttributeProperty2StateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbPutClassAttributeProperty2StateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbPutClassProperty_allowed()
* Description : Execution allowed for DbPutClassProperty attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbPutClassProperty_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbPutClassProperty command.
/*----- PROTECTED REGION ID(DataBase::DbPutClassPropertyStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbPutClassPropertyStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbPutDeviceAlias_allowed()
* Description : Execution allowed for DbPutDeviceAlias attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbPutDeviceAlias_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbPutDeviceAlias command.
/*----- PROTECTED REGION ID(DataBase::DbPutDeviceAliasStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbPutDeviceAliasStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbPutDeviceAttributeProperty_allowed()
* Description : Execution allowed for DbPutDeviceAttributeProperty attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbPutDeviceAttributeProperty_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbPutDeviceAttributeProperty command.
/*----- PROTECTED REGION ID(DataBase::DbPutDeviceAttributePropertyStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbPutDeviceAttributePropertyStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbPutDeviceAttributeProperty2_allowed()
* Description : Execution allowed for DbPutDeviceAttributeProperty2 attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbPutDeviceAttributeProperty2_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbPutDeviceAttributeProperty2 command.
/*----- PROTECTED REGION ID(DataBase::DbPutDeviceAttributeProperty2StateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbPutDeviceAttributeProperty2StateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbPutDeviceProperty_allowed()
* Description : Execution allowed for DbPutDeviceProperty attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbPutDeviceProperty_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbPutDeviceProperty command.
/*----- PROTECTED REGION ID(DataBase::DbPutDevicePropertyStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbPutDevicePropertyStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbPutProperty_allowed()
* Description : Execution allowed for DbPutProperty attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbPutProperty_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbPutProperty command.
/*----- PROTECTED REGION ID(DataBase::DbPutPropertyStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbPutPropertyStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbPutServerInfo_allowed()
* Description : Execution allowed for DbPutServerInfo attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbPutServerInfo_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbPutServerInfo command.
/*----- PROTECTED REGION ID(DataBase::DbPutServerInfoStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbPutServerInfoStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbUnExportDevice_allowed()
* Description : Execution allowed for DbUnExportDevice attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbUnExportDevice_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbUnExportDevice command.
/*----- PROTECTED REGION ID(DataBase::DbUnExportDeviceStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbUnExportDeviceStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbUnExportEvent_allowed()
* Description : Execution allowed for DbUnExportEvent attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbUnExportEvent_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbUnExportEvent command.
/*----- PROTECTED REGION ID(DataBase::DbUnExportEventStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbUnExportEventStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbUnExportServer_allowed()
* Description : Execution allowed for DbUnExportServer attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbUnExportServer_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbUnExportServer command.
/*----- PROTECTED REGION ID(DataBase::DbUnExportServerStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbUnExportServerStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_ResetTimingValues_allowed()
* Description : Execution allowed for ResetTimingValues attribute
*/
//--------------------------------------------------------
bool DataBase::is_ResetTimingValues_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for ResetTimingValues command.
/*----- PROTECTED REGION ID(DataBase::ResetTimingValuesStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::ResetTimingValuesStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetDataForServerCache_allowed()
* Description : Execution allowed for DbGetDataForServerCache attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetDataForServerCache_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetDataForServerCache command.
/*----- PROTECTED REGION ID(DataBase::DbGetDataForServerCacheStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetDataForServerCacheStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbDeleteAllDeviceAttributeProperty_allowed()
* Description : Execution allowed for DbDeleteAllDeviceAttributeProperty attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbDeleteAllDeviceAttributeProperty_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbDeleteAllDeviceAttributeProperty command.
/*----- PROTECTED REGION ID(DataBase::DbDeleteAllDeviceAttributePropertyStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbDeleteAllDeviceAttributePropertyStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbMySqlSelect_allowed()
* Description : Execution allowed for DbMySqlSelect attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbMySqlSelect_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbMySqlSelect command.
/*----- PROTECTED REGION ID(DataBase::DbMySqlSelectStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbMySqlSelectStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetCSDbServerList_allowed()
* Description : Execution allowed for DbGetCSDbServerList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetCSDbServerList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetCSDbServerList command.
/*----- PROTECTED REGION ID(DataBase::DbGetCSDbServerListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetCSDbServerListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetAttributeAlias2_allowed()
* Description : Execution allowed for DbGetAttributeAlias2 attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetAttributeAlias2_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetAttributeAlias2 command.
/*----- PROTECTED REGION ID(DataBase::DbGetAttributeAlias2StateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetAttributeAlias2StateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetAliasAttribute_allowed()
* Description : Execution allowed for DbGetAliasAttribute attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetAliasAttribute_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetAliasAttribute command.
/*----- PROTECTED REGION ID(DataBase::DbGetAliasAttributeStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetAliasAttributeStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbRenameServer_allowed()
* Description : Execution allowed for DbRenameServer attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbRenameServer_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbRenameServer command.
/*----- PROTECTED REGION ID(DataBase::DbRenameServerStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbRenameServerStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetClassPipeProperty_allowed()
* Description : Execution allowed for DbGetClassPipeProperty attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetClassPipeProperty_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetClassPipeProperty command.
/*----- PROTECTED REGION ID(DataBase::DbGetClassPipePropertyStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetClassPipePropertyStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetDevicePipeProperty_allowed()
* Description : Execution allowed for DbGetDevicePipeProperty attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetDevicePipeProperty_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetDevicePipeProperty command.
/*----- PROTECTED REGION ID(DataBase::DbGetDevicePipePropertyStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetDevicePipePropertyStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbDeleteClassPipe_allowed()
* Description : Execution allowed for DbDeleteClassPipe attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbDeleteClassPipe_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbDeleteClassPipe command.
/*----- PROTECTED REGION ID(DataBase::DbDeleteClassPipeStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbDeleteClassPipeStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbDeleteDevicePipe_allowed()
* Description : Execution allowed for DbDeleteDevicePipe attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbDeleteDevicePipe_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbDeleteDevicePipe command.
/*----- PROTECTED REGION ID(DataBase::DbDeleteDevicePipeStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbDeleteDevicePipeStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbDeleteClassPipeProperty_allowed()
* Description : Execution allowed for DbDeleteClassPipeProperty attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbDeleteClassPipeProperty_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbDeleteClassPipeProperty command.
/*----- PROTECTED REGION ID(DataBase::DbDeleteClassPipePropertyStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbDeleteClassPipePropertyStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbDeleteDevicePipeProperty_allowed()
* Description : Execution allowed for DbDeleteDevicePipeProperty attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbDeleteDevicePipeProperty_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbDeleteDevicePipeProperty command.
/*----- PROTECTED REGION ID(DataBase::DbDeleteDevicePipePropertyStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbDeleteDevicePipePropertyStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetClassPipeList_allowed()
* Description : Execution allowed for DbGetClassPipeList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetClassPipeList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetClassPipeList command.
/*----- PROTECTED REGION ID(DataBase::DbGetClassPipeListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetClassPipeListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetDevicePipeList_allowed()
* Description : Execution allowed for DbGetDevicePipeList attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetDevicePipeList_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetDevicePipeList command.
/*----- PROTECTED REGION ID(DataBase::DbGetDevicePipeListStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetDevicePipeListStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbDeleteAllDevicePipeProperty_allowed()
* Description : Execution allowed for DbDeleteAllDevicePipeProperty attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbDeleteAllDevicePipeProperty_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbDeleteAllDevicePipeProperty command.
/*----- PROTECTED REGION ID(DataBase::DbDeleteAllDevicePipePropertyStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbDeleteAllDevicePipePropertyStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbPutClassPipeProperty_allowed()
* Description : Execution allowed for DbPutClassPipeProperty attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbPutClassPipeProperty_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbPutClassPipeProperty command.
/*----- PROTECTED REGION ID(DataBase::DbPutClassPipePropertyStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbPutClassPipePropertyStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbPutDevicePipeProperty_allowed()
* Description : Execution allowed for DbPutDevicePipeProperty attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbPutDevicePipeProperty_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbPutDevicePipeProperty command.
/*----- PROTECTED REGION ID(DataBase::DbPutDevicePipePropertyStateAllowed) ENABLED START -----*/
check_authorization();
/*----- PROTECTED REGION END -----*/ // DataBase::DbPutDevicePipePropertyStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetClassPipePropertyHist_allowed()
* Description : Execution allowed for DbGetClassPipePropertyHist attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetClassPipePropertyHist_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetClassPipePropertyHist command.
/*----- PROTECTED REGION ID(DataBase::DbGetClassPipePropertyHistStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetClassPipePropertyHistStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetDevicePipePropertyHist_allowed()
* Description : Execution allowed for DbGetDevicePipePropertyHist attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetDevicePipePropertyHist_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetDevicePipePropertyHist command.
/*----- PROTECTED REGION ID(DataBase::DbGetDevicePipePropertyHistStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetDevicePipePropertyHistStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetForwardedAttributeListForDevice_allowed()
* Description : Execution allowed for DbGetForwardedAttributeListForDevice attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetForwardedAttributeListForDevice_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetForwardedAttributeListForDevice command.
/*----- PROTECTED REGION ID(DataBase::DbGetForwardedAttributeListForDeviceStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetForwardedAttributeListForDeviceStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : DataBase::is_DbGetClassPropertyListWildcard_allowed()
* Description : Execution allowed for DbGetClassPropertyListWildcard attribute
*/
//--------------------------------------------------------
bool DataBase::is_DbGetClassPropertyListWildcard_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for DbGetClassPropertyListWildcard command.
/*----- PROTECTED REGION ID(DataBase::DbGetClassPropertyListWildcardStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // DataBase::DbGetClassPropertyListWildcardStateAllowed
return true;
}
/*----- PROTECTED REGION ID(DataBase::DataBaseStateAllowed.AdditionalMethods) ENABLED START -----*/
// We call check_authorization() from a subset of the available is_*_allowed() functions because if we call it
// from always_executed_hook(), which is equivalent to call check_authorization() from any is_*_allowed() functions,
// would block any type of access.
void DataBase::check_authorization()
{
#ifndef _TG_WINDOWS_
if (acl_enabled) {
DEBUG_STREAM << "DataBase::check_authorization()" << std::endl;
Value_t *v = (Value_t*)omni_thread::self()->get_value(key);
/* In case of the Tango poller thread the pointer v is NULL due the fact
* that v points to the thread local storage (TLS) memory which is initialized
* for main thread but not for the poller thread. In any case we don't need
* to check authorization because poller must be always allowed */
if (v) {
std::string transport = v->addr.substr(0, MIN_TRANSPORT_STRING_LENGTH);
if (transport == "giop:uni" /* giop:unix */) {
/* UNIX domain sockets are always allowed */
} else if (transport == "giop:tcp" || transport == "giop:ssl") {
/* Remove port because we don't use it */
std::string address = v->addr.substr(0, v->addr.rfind(':'));
cit = addresses_allowed.find(address);
if (cit == addresses_allowed.end()) {
Tango::Except::throw_exception(
Tango::API_CommandNotAllowed,
"Unauthorized access by " + v->addr,
"DataBase::check_authorization()");
}
} else {
/* giop:htt, giop:fd: or a future yet no-existing transport layer */
Tango::Except::throw_exception(
Tango::API_CommandNotAllowed,
"Check authorization for transport layer in address " + v->addr
+ " is not supported yet",
"DataBase::check_authorization()");
}
}
}
#endif
}
/*----- PROTECTED REGION END -----*/ // DataBase::DataBaseStateAllowed.AdditionalMethods
} // End of namespace
|