Ice 3.6 Slice API Reference
All Classes Interfaces Structs Exceptions Modules Files Operations Constants Sequences Dictionaries Enumerations Enumerator Pages
FileParser.ice
Go to the documentation of this file.
1 // **********************************************************************
2 //
3 // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
4 //
5 // This copy of Ice is licensed to you under the terms described in the
6 // ICE_LICENSE file included in this distribution.
7 //
8 // **********************************************************************
9 
10 #pragma once
11 
12 [["cpp:header-ext:h", "objc:header-dir:objc", "js:ice-build"]]
13 [["cpp:include:IceGrid/Config.h"]]
14 
15 #include <IceGrid/Admin.ice>
16 
17 ["objc:prefix:ICEGRID"]
18 module IceGrid
19 {
20 
26 exception ParseException
27 {
29  string reason;
30 };
31 
39 interface FileParser
40 {
41 
57  idempotent ApplicationDescriptor parse(string xmlFile, Admin* adminProxy)
58  throws ParseException;
59 };
60 
61 };
62 
This exception is raised if an error occurs during parsing.
Definition: FileParser.ice:26
The IceGrid administrative interface.
Definition: Admin.ice:391
icegridadmin provides a FileParser object to transform XML files into ApplicationDescriptor objects...
Definition: FileParser.ice:39
An application descriptor.
Definition: Descriptor.ice:781
IceGrid is a server activation and deployment tool.
Definition: Admin.ice:24
string reason
The reason for the failure.
Definition: FileParser.ice:29