JVMCIPermission.java revision 12651:6ef01bd40ce2
1184588Sdfr/*
2184588Sdfr * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
3184588Sdfr * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4184588Sdfr *
5184588Sdfr * This code is free software; you can redistribute it and/or modify it
6184588Sdfr * under the terms of the GNU General Public License version 2 only, as
7184588Sdfr * published by the Free Software Foundation.
8184588Sdfr *
9184588Sdfr * This code is distributed in the hope that it will be useful, but WITHOUT
10184588Sdfr * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11184588Sdfr * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12184588Sdfr * version 2 for more details (a copy is included in the LICENSE file that
13184588Sdfr * accompanied this code).
14184588Sdfr *
15184588Sdfr * You should have received a copy of the GNU General Public License version
16184588Sdfr * 2 along with this work; if not, write to the Free Software Foundation,
17184588Sdfr * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18184588Sdfr *
19184588Sdfr * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20184588Sdfr * or visit www.oracle.com if you need additional information or have any
21184588Sdfr * questions.
22184588Sdfr */
23184588Sdfrpackage jdk.vm.ci.services;
24184588Sdfr
25184588Sdfrimport java.security.BasicPermission;
26184588Sdfr
27184588Sdfr/**
28184588Sdfr * This class represents the permission to access JVMCI services.
29184588Sdfr */
30184588Sdfrpublic class JVMCIPermission extends BasicPermission {
31184588Sdfr
32184588Sdfr    private static final long serialVersionUID = 6346818963934448226L;
33184588Sdfr
34184588Sdfr    public JVMCIPermission() {
35184588Sdfr        super("jvmci");
36244331Srmacklem    }
37184588Sdfr}
38244604Srmacklem