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 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
|
/*___INFO__MARK_BEGIN__*/
/*************************************************************************
*
* The Contents of this file are made available subject to the terms of
* the Sun Industry Standards Source License Version 1.2
*
* Sun Microsystems Inc., March, 2001
*
*
* Sun Industry Standards Source License Version 1.2
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.2 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2001 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
************************************************************************/
/*___INFO__MARK_END__*/
package com.sun.grid.ca;
import java.io.File;
import java.io.Serializable;
/**
* Configuration of a <code>GridCA</code>.
*
* An object of this class holds all necessary information for a GridCA configuration
* The <code>validate</code> method determines wheter the configuration is valid
*/
public class GridCAConfiguration implements Serializable {
private File sgeCaScript;
private File caTop;
private File caLocalTop;
private File configDir;
private File tmpDir;
private String adminUser;
private String caHost;
private int daysValid = 365;
/** Creates a new instance of GridCAConfiguration */
public GridCAConfiguration() {
}
/**
* Validate the configuration of the <code>GridCA</code>.
*
* @throws GridCAException if the <code>GridCA</code> is not proper configured
*/
public void validate() throws GridCAException {
if(sgeCaScript == null ) {
throw RB.newGridCAException("gridCAConf.missing", "sgeCaScript");
}
if(caTop == null ) {
throw RB.newGridCAException("gridCAConf.missing", "caTop");
}
if(caLocalTop == null ) {
throw RB.newGridCAException("gridCAConf.missing", "caLocalTop");
}
if(configDir == null ) {
configDir = new File(caTop, "util/sgeCA".replace('/', File.separatorChar));
}
if(tmpDir == null ) {
tmpDir = new File(System.getProperty("java.io.tmpdir"));
}
if(adminUser == null) {
adminUser = System.getProperty("user.name");
}
if(caHost == null) {
throw RB.newGridCAException("gridCAConf.missing", "caHost");
}
}
/**
* Get the sge_ca script. This script will be executed to perform the
* ca actions
*
* @return the sge_ca script
*/
public File getSgeCaScript() {
return sgeCaScript;
}
/**
* Set the sge_ca script.
*
* @param sgeCaScript the sge_ca script
*/
public void setSgeCaScript(File sgeCaScript) {
this.sgeCaScript = sgeCaScript;
}
/**
* Get the catop directory (shared directory which holds public parts of the ca).
*
* @return the catop directory
*/
public File getCaTop() {
return caTop;
}
/**
* Set the catop directory
* @param caTop the catop directory
*/
public void setCaTop(File caTop) {
this.caTop = caTop;
}
/**
* Get the calocaltop directory (local directory which holds the private parts of the ca).
*
* @return the callocaltop directory
*/
public File getCaLocalTop() {
return caLocalTop;
}
/**
* Set the calocaltop directory
* @param caLocalTop the calocaltop directory
*/
public void setCaLocalTop(File caLocalTop) {
this.caLocalTop = caLocalTop;
}
/**
* Get the configuration directory of the ca.
*
* The configuration directory holds the configuration files of the ca. In
* a standard Gridengine installation the configuration directory is
* $SGE_ROOT/util/sgeCA
*
* @return the configuration directory
*/
public File getConfigDir() {
return configDir;
}
/**
* Set the configuration directory of the ca.
*
* @param configDir the configuration directory
*/
public void setConfigDir(File configDir) {
this.configDir = configDir;
}
/**
* Get the tmp directory of the ca.
*
* For security reasons the tmp directory should be on a local file system
* only root and the adminuser of the CA should have access on this directory.
*
* @return the tmp directory of the ca
*/
public File getTmpDir() {
return tmpDir;
}
/**
* Set the tmp directory of the ca.
*
* @param tmpDir the tmp directory
*/
public void setTmpDir(File tmpDir) {
this.tmpDir = tmpDir;
}
/**
* Get the days the certificates are valid
*
* @return the days of validity
*/
public int getDaysValid() {
return daysValid;
}
/**
* Set the days the certificates are valid
* @param daysValid the days the certificates are valid
*/
public void setDaysValid(int daysValid) {
this.daysValid = daysValid;
}
/**
* Get the admin user of the ca.
*
* Most of the files are owned by the admin user. This user needs write
* write access on the catop directory.
*
* @return the admin user
*/
public String getAdminUser() {
return adminUser;
}
/**
* Set the admin user of the ca
* @param adminUser the admin user
*/
public void setAdminUser(String adminUser) {
this.adminUser = adminUser;
}
/**
* Get the host with the filesystem where the private parts of the
* ca are exists.
* Most action can only be executed in the ca host
* @return the the ca host
* @see #getCaLocalTop
*/
public String getCaHost() {
return caHost;
}
/**
* Set the ca host
* @param caHost the ca hsot
* @see #getCaHost
*/
public void setCaHost(String caHost) {
this.caHost = caHost;
}
}
|