summaryrefslogtreecommitdiff
path: root/qpid/java/broker-core/src/main/java/org/apache/qpid/server/model/Connection.java
blob: a7350f528ceee820ba5336ba535fb27b3af0ba2c (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
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
/*
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 *
 */
package org.apache.qpid.server.model;

import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;

@AmqpManagement(
        attributes = {
                Connection.ID,
                Connection.NAME,
                Connection.STATE,
                Connection.DURABLE,
                Connection.LIFETIME_POLICY,
                Connection.TIME_TO_LIVE,
                Connection.CREATED,
                Connection.UPDATED,
                Connection.CLIENT_ID,
                Connection.CLIENT_VERSION,
                Connection.INCOMING,
                Connection.LOCAL_ADDRESS,
                Connection.PRINCIPAL,
                Connection.PROPERTIES,
                Connection.REMOTE_ADDRESS,
                Connection.REMOTE_PROCESS_NAME,
                Connection.REMOTE_PROCESS_PID,
                Connection.SESSION_COUNT_LIMIT,
                Connection.TRANSPORT,
                Connection.PORT
        },
        operations = {},
        creatable = false
)
public interface Connection extends ConfiguredObject
{

    // Statistics

    String BYTES_IN = "bytesIn";
    String BYTES_OUT = "bytesOut";
    String LAST_IO_TIME = "lastIoTime";
    String LOCAL_TRANSACTION_BEGINS = "localTransactionBegins";
    String LOCAL_TRANSACTION_ROLLBACKS = "localTransactionRollbacks";
    String MESSAGES_IN                 = "messagesIn";
    String MESSAGES_OUT                = "messagesOut";
    String SESSION_COUNT               = "sessionCount";
    String STATE_CHANGED               = "stateChanged";
    String XA_TRANSACTION_BRANCH_ENDS  = "xaTransactionBranchEnds";
    String XA_TRANSACTION_BRANCH_STARTS = "xaTransactionBranchStarts";
    String XA_TRANSACTION_BRANCH_SUSPENDS = "xaTransactionBranchSuspends";

    public static final Collection<String> AVAILABLE_STATISTICS =
            Collections.unmodifiableCollection(
                    Arrays.asList(BYTES_IN,
                                  BYTES_OUT,
                                  LAST_IO_TIME,
                                  LOCAL_TRANSACTION_BEGINS,
                                  LOCAL_TRANSACTION_ROLLBACKS,
                                  MESSAGES_IN,
                                  MESSAGES_OUT,
                                  SESSION_COUNT,
                                  STATE_CHANGED,
                                  XA_TRANSACTION_BRANCH_ENDS,
                                  XA_TRANSACTION_BRANCH_STARTS,
                                  XA_TRANSACTION_BRANCH_SUSPENDS));

                            // Attributes

    public static final String STATE = "state";
    public static final String DURABLE = "durable";
    public static final String LIFETIME_POLICY = "lifetimePolicy";
    public static final String TIME_TO_LIVE = "timeToLive";
    public static final String CREATED = "created";
    public static final String UPDATED = "updated";

    public static final String CLIENT_ID = "clientId";
    public static final String CLIENT_VERSION = "clientVersion";
    public static final String INCOMING = "incoming";
    public static final String LOCAL_ADDRESS = "localAddress";
    public static final String PRINCIPAL = "principal";
    public static final String PROPERTIES = "properties";
    public static final String REMOTE_ADDRESS = "remoteAddress";
    public static final String REMOTE_PROCESS_NAME = "remoteProcessName";
    public static final String REMOTE_PROCESS_PID = "remoteProcessPid";
    public static final String SESSION_COUNT_LIMIT = "sessionCountLimit";
    public static final String TRANSPORT = "transport";
    /** Name of port associated with the connection */
    public static final String PORT = "port";


    public static final Collection<String> AVAILABLE_ATTRIBUTES =
            Collections.unmodifiableCollection(
                    Arrays.asList(  ID,
                                    NAME,
                                    STATE,
                                    DURABLE,
                                    LIFETIME_POLICY,
                                    TIME_TO_LIVE,
                                    CREATED,
                                    UPDATED,
                                    CLIENT_ID,
                                    CLIENT_VERSION,
                                    INCOMING,
                                    LOCAL_ADDRESS,
                                    PRINCIPAL,
                                    PROPERTIES,
                                    REMOTE_ADDRESS,
                                    REMOTE_PROCESS_NAME,
                                    REMOTE_PROCESS_PID,
                                    SESSION_COUNT_LIMIT,
                                    TRANSPORT,
                                    PORT));

    //children
    Collection<Session> getSessions();

    void delete();
}