1/*
2 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.  Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26package com.sun.xml.internal.ws.util;
27
28import java.util.List;
29import java.util.Set;
30
31import javax.xml.ws.handler.Handler;
32
33/**
34 * Used to hold a list of handlers and a set of roles from an
35 * annotated endpoint. At runtime, these are created by the
36 * HandlerAnnotationProcessor at the request of client and
37 * server code to create the handler chains.
38 *
39 * @see com.sun.xml.internal.ws.util.HandlerAnnotationProcessor
40 *
41 * @author JAX-WS Development Team
42 */
43public class HandlerAnnotationInfo {
44
45    private List<Handler> handlers;
46    private Set<String> roles;
47
48    /**
49     * Return the handlers specified by the handler chain descriptor.
50     *
51     * @return A list of jax-ws handler objects.
52     */
53    public List<Handler> getHandlers() {
54        return handlers;
55    }
56
57    /**
58     * This method should only be called by HandlerAnnotationProcessor.
59     *
60     * @param handlers The handlers specified by the handler chain descriptor.
61     */
62    public void setHandlers(List<Handler> handlers) {
63        this.handlers = handlers;
64    }
65
66    /**
67     * Return the roles contained in the handler chain descriptor.
68     *
69     * @return A set of roles.
70     */
71    public Set<String> getRoles() {
72        return roles;
73    }
74
75    /**
76     * This method should only be called by HandlerAnnotationProcessor.
77     *
78     * @param roles The roles contained in the handler chain descriptor.
79     */
80    public void setRoles(Set<String> roles) {
81        this.roles = roles;
82    }
83
84}
85