Searched defs:props (Results 26 - 50 of 107) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/com/sun/security/sasl/ntlm/
H A DFactoryImpl.java66 Map<String,?> props, CallbackHandler cbh)
71 PolicyUtils.checkPolicy(mechPolicies[0], props)) {
80 protocol, serverName, props, cbh);
94 String protocol, String serverName, Map<String,?> props, CallbackHandler cbh)
98 PolicyUtils.checkPolicy(mechPolicies[0], props)) {
99 if (props != null) {
100 String qop = (String)props.get(Sasl.QOP);
111 return new NTLMServer(mech, protocol, serverName, props, cbh);
64 createSaslClient(String[] mechs, String authorizationId, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh) argument
93 createSaslServer(String mech, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh) argument
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/util/
H A DPolicyUtils.java51 * fits the security policy properties found in props.
53 * @param props The security policy properties to check
56 public static boolean checkPolicy(int flags, Map props) { argument
57 if (props == null) {
61 if ("true".equalsIgnoreCase((String)props.get(Sasl.POLICY_NOPLAINTEXT))
65 if ("true".equalsIgnoreCase((String)props.get(Sasl.POLICY_NOACTIVE))
69 if ("true".equalsIgnoreCase((String)props.get(Sasl.POLICY_NODICTIONARY))
73 if ("true".equalsIgnoreCase((String)props.get(Sasl.POLICY_NOANONYMOUS))
77 if ("true".equalsIgnoreCase((String)props.get(Sasl.POLICY_FORWARD_SECRECY))
81 if ("true".equalsIgnoreCase((String)props
95 filterMechs(String[] mechs, int[] policies, Map props) argument
[all...]
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/
H A DTextReporter.java66 public void writeReport(BenchInfo[] binfo, Properties props) argument
77 props.getProperty(PROPNAMES[i]));
/openjdk7/jdk/test/java/util/logging/
H A DCustomLogManager.java38 Properties props = initConfig(); field in class:CustomLogManager
53 if (props.get(name + ".level") != null) {
54 logger.setLevel(Level.parse(props.getProperty(name + ".level")));
57 if (props.get(name + ".handlers") != null && logger.getHandlers().length == 0) {
68 if (props.get(pname + ".level") != null ||
69 props.get(pname + ".handlers") != null) {
92 return props.getProperty(name);
104 Properties props = new Properties();
105 props.put(".level", "CONFIG");
106 props
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DArguments.java206 Properties props = new Properties ();
209 props.load (stream);
210 addIncludePaths (props);
224 parseOtherArgs (otherArgs, props);
230 private void addIncludePaths (Properties props) argument
232 String paths = props.getProperty ("includes");
/openjdk7/corba/src/share/classes/javax/rmi/
H A DPortableRemoteObject.java188 Properties props = getORBPropertiesFile();
189 if (props != null) {
190 className = props.getProperty(classKey);
257 private void getPropertiesFromFile( Properties props, String fileName ) argument
267 props.load( in ) ;
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DJPEGImageDecoder.java71 Hashtable props = new Hashtable(); field in class:JPEGImageDecoder
90 setProperties(props);
H A DImageDecoder.java86 protected int setProperties(Hashtable props) { argument
90 cq.consumer.setProperties(props);
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DCropImageFilter.java81 public void setProperties(Hashtable<?,?> props) { argument
82 Hashtable<Object,Object> p = (Hashtable<Object,Object>)props.clone();
H A DReplicateScaleFilter.java123 public void setProperties(Hashtable<?,?> props) { argument
124 Hashtable<Object,Object> p = (Hashtable<Object,Object>)props.clone();
H A DImageConsumer.java51 * @param props the list of properties to be associated with this
54 void setProperties(Hashtable<?,?> props); argument
H A DImageFilter.java103 * @param props the properties from the source object
104 * @exception NullPointerException if <code>props</code> is null
106 public void setProperties(Hashtable<?,?> props) { argument
107 Hashtable<Object,Object> p = (Hashtable<Object,Object>)props.clone();
/openjdk7/jdk/src/share/classes/java/util/
H A DXMLUtils.java69 static void load(Properties props, InputStream in) argument
86 importProperties(props, propertiesElement);
108 static void importProperties(Properties props, Element propertiesElement) { argument
118 props.setProperty(entry.getAttribute("key"), val);
123 static void save(Properties props, OutputStream os, String comment, argument
144 synchronized (props) {
145 for (String key : props.stringPropertyNames()) {
149 entry.appendChild(doc.createTextNode(props.getProperty(key)));
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DTLGlobals.java50 final PropMap props; field in class:TLGlobals
67 props = new PropMap();
71 return props;
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DIIOPProxy.java77 Object createOrb(String[] args, Properties props); argument
H A DIIOPHelper.java134 public static Object createOrb(String[] args, Properties props) { argument
136 return proxy.createOrb(args, props);
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/gsskerb/
H A DGssKrb5Base.java52 protected GssKrb5Base(Map props, String className) throws SaslException { argument
53 super(props, className);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/
H A DXMLWriter.java113 public void writeProperties(Properties props) throws IOException { argument
114 if (props.getProperties().hasNext() == false) {
120 for (Property p : props) {
/openjdk7/langtools/make/tools/SelectTool/
H A DSelectToolTask.java109 Properties props = readProperties(propertyFile);
110 toolName = props.getProperty("tool.name");
112 toolArgs = props.getProperty(toolName + ".args", "");
118 showGUI(props);
149 JOptionPane createPane(final Properties props) { argument
175 argsField.setText(getDefaultArgsForTool(props, tn));
182 argsField = new JTextField(getDefaultArgsForTool(props, toolName), 40);
193 props.put(toolName + ".args", argsField.getText());
265 String getDefaultArgsForTool(Properties props, String tn) { argument
266 return (tn == null || tn.equals("")) ? "" : props
[all...]
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUCharacter.java235 int props = getProperty(ch);
237 if (getNumericType(props) == NumericType.DECIMAL) {
238 value = UCharacterProperty.getUnsignedValue(props);
375 * @param props 32 bit property
378 private static int getNumericType(int props) argument
380 return (props & NUMERIC_TYPE_MASK_) >> NUMERIC_TYPE_SHIFT_;
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/
H A DResultSet.java53 // Preferred props - will be listed even if undefined
71 // Ignored props - will not be copied to results file
93 * Other props, as of 1.4.0, not classified as "preferred" or "ignored"
128 Hashtable props; field in class:ResultSet
137 props = (Hashtable) preferprops.clone();
142 props.put(key, sysprops.get(key));
175 "\" value=\""+props.get(key)+"\"/>");
177 Enumeration enum_ = props.keys();
182 "\" value=\""+props.get(key)+"\"/>");
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DArguments.java245 protected void packageFromProps (Properties props) throws InvalidArgument argument
247 Enumeration propsEnum = props.propertyNames ();
254 String pkg = props.getProperty (prop);
/openjdk7/jdk/src/share/classes/javax/security/sasl/
H A DSasl.java49 * authorizationId, protocol, serverName, props, callbackHandler);
56 * protocol, serverName, props, callbackHandler);
313 * @param props The possibly null set of properties used to
316 * For example, if <tt>props</tt> contains the
346 Map<String,?> props,
374 protocol, serverName, props, cbh);
453 * @param props The possibly null set of properties used to
456 * For example, if <tt>props</tt> contains the
485 Map<String,?> props,
510 mechanism, protocol, serverName, props, cb
341 createSaslClient( String[] mechanisms, String authorizationId, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh) argument
482 createSaslServer(String mechanism, String protocol, String serverName, Map<String,?> props, javax.security.auth.callback.CallbackHandler cbh) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DDebugSettings.java49 * 'awtdebug' props as system properties on the command line.
92 private Properties props = new Properties(); field in class:DebugSettings
137 Enumeration enum_ = props.propertyNames();
143 String value = props.getProperty(key, "");
158 props.load(in);
185 props.load(fin);
195 * load properties from system props (command line spec'd usually),
207 props.setProperty(key, value);
242 String value = props.getProperty(actualKeyName, defval);
249 Enumeration enum_ = props
[all...]
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivationGroupDesc.java86 private Properties props; field in class:ActivationGroupDesc
140 this.props = overrides;
182 return (props != null) ? (Properties) props.clone() : null;
342 (props == null ? desc.props == null :
343 props.equals(desc.props)));
356 // but omit props (may be expensive)

Completed in 85 milliseconds

12345