1 /*
2  * Copyright (c) 2017, 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.
8  *
9  * This code is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12  * version 2 for more details (a copy is included in the LICENSE file that
13  * accompanied this code).
14  *
15  * You should have received a copy of the GNU General Public License version
16  * 2 along with this work; if not, write to the Free Software Foundation,
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18  *
19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20  * or visit www.oracle.com if you need additional information or have any
21  * questions.
22  */
23 package jdk.test.lib.cds;
24 
25 import java.util.ArrayList;
26 
27 // This class represents options used
28 // during creation of CDS archive and/or running JVM with a CDS archive
29 public class CDSOptions {
30     public String xShareMode = "on";
31     public String archiveName;
32     public ArrayList<String> prefix = new ArrayList<String>();
33     public ArrayList<String> suffix = new ArrayList<String>();
34 
35     // Indicate whether to append "-version" when using CDS Archive.
36     // Most of tests will use '-version'
37     public boolean useVersion = true;
38 
39 
CDSOptions()40     public CDSOptions() {
41     }
42 
43 
addPrefix(String... prefix)44     public CDSOptions addPrefix(String... prefix) {
45         for (String s : prefix) this.prefix.add(s);
46         return this;
47     }
48 
49 
addSuffix(String... suffix)50     public CDSOptions addSuffix(String... suffix) {
51         for (String s : suffix) this.suffix.add(s);
52         return this;
53     }
54 
setXShareMode(String mode)55     public CDSOptions setXShareMode(String mode) {
56         this.xShareMode = mode;
57         return this;
58     }
59 
60 
setArchiveName(String name)61     public CDSOptions setArchiveName(String name) {
62         this.archiveName = name;
63         return this;
64     }
65 
66 
setUseVersion(boolean use)67     public CDSOptions setUseVersion(boolean use) {
68         this.useVersion = use;
69         return this;
70     }
71 }
72