summaryrefslogtreecommitdiff
path: root/matlab/lib/+Ice/WSEndpointInfo.m
blob: 689fa07f23087c47e7f1a3acbd4328b964f681cd (plain)
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
classdef WSEndpointInfo < Ice.EndpointInfo
    % WSEndpointInfo   Summary of WSEndpointInfo
    %
    % Provides access to WebSocket endpoint information.
    %
    % WSEndpointInfo Properties:
    %   resource - The URI configured with the endpoint.

    % Copyright (c) ZeroC, Inc. All rights reserved.

    methods
        function obj = WSEndpointInfo(type, secure, underlying, timeout, compress, resource)
            if nargin == 0
                underlying = [];
                timeout = 0;
                compress = false;
                resource = '';
            end
            obj = obj@Ice.EndpointInfo(type, false, secure, underlying, timeout, compress);
            obj.resource = resource;
        end
    end
    properties(SetAccess=private)
        % resource - The URI configured with the endpoint.
        resource char
    end
end