Searched refs:value (Results 1 - 25 of 1116) sorted by relevance

1234567891011>>

/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/pi/
H A DInvocationPolicyImpl.java51 * This is the InvocationPolicy object which holds an appropriate policy value.
59 private short value = EITHER.value; field in class:InvocationPolicyImpl
62 this.value = EITHER.value;
65 public InvocationPolicyImpl(short value) { argument
66 this.value = value;
71 public short value() { method in class:InvocationPolicyImpl
72 return this.value;
[all...]
H A DOTSPolicyImpl.java53 * This is the OTSPolicy object which holds an appropriate policy value.
62 public static final OTSPolicy _ADAPTS = new OTSPolicyImpl(ADAPTS.value);
63 public static final OTSPolicy _FORBIDS = new OTSPolicyImpl(FORBIDS.value);
64 public static final OTSPolicy _REQUIRES = new OTSPolicyImpl(REQUIRES.value);
68 private short value = FORBIDS.value; field in class:OTSPolicyImpl
73 this.value = FORBIDS.value;
76 public OTSPolicyImpl(short value) { argument
77 this.value
82 public short value() { method in class:OTSPolicyImpl
[all...]
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/security/integration/
H A DAppClientSSL.java58 * Gets the value of the certNickname property.
68 * Sets the value of the certNickname property.
70 * @param value allowed object is
73 public void setCertNickname(String value) { argument
74 this.certNickName = value;
78 * Gets the value of the ssl2Enabled property.
88 * Sets the value of the ssl2Enabled property.
90 * @param value allowed object is
93 public void setSsl2Enabled(String value) { argument
94 this.ssl2Enabled = Boolean.parseBoolean(value);
96 setSsl2Enabled(boolean value) argument
117 setSsl2Ciphers(String value) argument
137 setSsl3Enabled(String value) argument
141 setSsl3Enabled(boolean value) argument
163 setSsl3TlsCiphers(String value) argument
183 setTlsEnabled(String value) argument
187 setTlsEnabled(boolean value) argument
207 setTlsRollbackEnabled(String value) argument
210 setTlsRollbackEnabled(boolean value) argument
230 setClientAuthEnabled(String value) argument
233 setClientAuthEnabled(boolean value) argument
[all...]
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/constraint/
H A DConstraintConstant.java54 public Object value; field in class:ConstraintConstant
56 public ConstraintConstant(Object value) { argument
59 this.value = value;
H A DConstraintValue.java56 private Object value; field in class:ConstraintValue
58 /** The local field to which this value constraint is bound. Please note
60 * expressions ( like <field> <op> <value | param> ) in query filter.
65 public ConstraintValue(Object value, LocalFieldDesc localField) { argument
68 this.value = value;
73 return value;
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DNameValuePairDescriptor.java44 * This descriptor describes a name value pair association
50 private String value=null; field in class:NameValuePairDescriptor
57 value = other.value;
68 * set the value
70 public void setValue(String value) { argument
71 this.value = value;
75 * @return the value
78 return value;
[all...]
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/generator/
H A DInputValue.java55 private Object value; field in class:InputValue
59 public InputValue(Object value, ColumnElement columnElement) { argument
60 this.value = value;
65 return value;
68 public void setValue(Object value) { argument
69 this.value = value;
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/query/util/type/
H A DMathType.java80 * Converts the specified value into a value of this numeric type.
83 * @param value value to be converted
84 * @return converted value
86 public Number getValue(Number value) argument
90 if (value == null)
94 if (value instanceof BigDecimal)
95 ret = value;
96 else if (value instanceo
125 negate(Number value) argument
[all...]
/glassfish-3.1.2/admin/util/src/main/java/com/sun/enterprise/admin/remote/
H A DHeader.java45 * The Header class stores a name/value pair to represent headers.
58 * The value of the header.
60 private final String value; field in class:Header
66 * @param value value of the header
68 public Header(String name, String value) { argument
70 this.value = value;
83 * Returns the value of this header.
85 * @return value o
[all...]
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/runtime/web/
H A DSunWebApp.java82 public void setSecurityRoleMapping(int index, SecurityRoleMapping value) argument
84 this.setValue(SECURITY_ROLE_MAPPING, index, value);
94 public void setSecurityRoleMapping(SecurityRoleMapping[] value) argument
96 this.setValue(SECURITY_ROLE_MAPPING, value);
112 public int addSecurityRoleMapping(SecurityRoleMapping value) argument
114 return this.addValue(SECURITY_ROLE_MAPPING, value);
121 public int removeSecurityRoleMapping(SecurityRoleMapping value) argument
123 return this.removeValue(SECURITY_ROLE_MAPPING, value);
127 public void setWLSecurityRoleAssignment(int index, WLSecurityRoleAssignment value) argument
129 this.setValue(WL_SECURITY_ROLE_ASSIGNMENT, index, value);
139 setWLSecurityRoleAssignment(WLSecurityRoleAssignment[] value) argument
157 addWLSecurityRoleAssignment(WLSecurityRoleAssignment value) argument
166 removeWLSecurityRoleAssignment(WLSecurityRoleAssignment value) argument
172 setServlet(int index, Servlet value) argument
184 setServlet(Servlet[] value) argument
202 addServlet(Servlet value) argument
211 removeServlet(Servlet value) argument
217 setIdempotentUrlPattern(int index, IdempotentUrlPattern value) argument
229 setIdempotentUrlPatterns(IdempotentUrlPattern[] value) argument
247 addIdempotentUrlPattern(IdempotentUrlPattern value) argument
255 removeIdempotentUrlPattern(IdempotentUrlPattern value) argument
261 setSessionConfig(SessionConfig value) argument
273 setResourceEnvRef(int index, ResourceEnvRef value) argument
285 setResourceEnvRef(ResourceEnvRef[] value) argument
303 addResourceEnvRef(ResourceEnvRef value) argument
312 removeResourceEnvRef(ResourceEnvRef value) argument
318 setResourceRef(int index, ResourceRef value) argument
330 setResourceRef(ResourceRef[] value) argument
348 addResourceRef(ResourceRef value) argument
357 removeResourceRef(ResourceRef value) argument
363 setEjbRef(int index, EjbRef value) argument
375 setEjbRef(EjbRef[] value) argument
394 addEjbRef(EjbRef value) argument
403 removeEjbRef(EjbRef value) argument
409 setCache(Cache value) argument
421 setClassLoader(ClassLoader value) argument
434 setJspConfig(JspConfig value) argument
446 setLocaleCharsetInfo(LocaleCharsetInfo value) argument
464 setParameterEncoding(boolean value) argument
480 setValve(int index, Valve value) argument
490 setValve(Valve[] value) argument
505 addValve(Valve value) argument
510 removeValve(Valve value) argument
[all...]
H A DCache.java69 public void setCacheHelper(int index, CacheHelper value) argument
71 setValue(CACHE_HELPER, index, value);
81 public void setCacheHelper(CacheHelper[] value) argument
83 setValue(CACHE_HELPER, value);
99 public int addCacheHelper(CacheHelper value) argument
101 return addValue(CACHE_HELPER, value);
105 public void addNewCacheHelper(CacheHelper value) argument
107 addCacheHelper(value);
114 public int removeCacheHelper(CacheHelper value) argument
116 return removeValue(CACHE_HELPER, value);
120 setDefaultHelper(DefaultHelper value) argument
132 setCacheMapping(int index, CacheMapping value) argument
144 setCacheMapping(CacheMapping[] value) argument
162 addCacheMapping(CacheMapping value) argument
168 addNewCacheMapping(CacheMapping value) argument
177 removeCacheMapping(CacheMapping value) argument
[all...]
H A DSessionConfig.java60 public void setSessionManager(SessionManager value) argument
62 this.setValue(SESSION_MANAGER, value);
72 public void setSessionProperties(SessionProperties value) argument
74 this.setValue(SESSION_PROPERTIES, value);
84 public void setCookieProperties(CookieProperties value) argument
86 this.setValue(COOKIE_PROPERTIES, value);
/glassfish-3.1.2/orb/orb-iiop/src/main/java/org/glassfish/enterprise/iiop/impl/
H A DOTSPolicyImpl.java58 public static final OTSPolicyImpl _ADAPTS = new OTSPolicyImpl(ADAPTS.value);
59 public static final OTSPolicyImpl _FORBIDS = new OTSPolicyImpl(FORBIDS.value);
60 public static final OTSPolicyImpl _REQUIRES = new OTSPolicyImpl(REQUIRES.value);
64 private short value = FORBIDS.value; field in class:OTSPolicyImpl
69 this.value = ADAPTS.value;
72 public OTSPolicyImpl(short value) { argument
73 this.value = value;
78 public short value() { method in class:OTSPolicyImpl
[all...]
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/
H A DObjectUtil.java53 public static int hashCode(final boolean value) argument
55 return value ? 1 : 0;
74 public static int hashCode(final long value) argument
76 return (int) value ^ (int) (value >> 32);
79 public static int hashCode(final double value) argument
81 return new Double(value).hashCode();
/glassfish-3.1.2/common/glassfish-naming/src/main/java/com/sun/enterprise/naming/util/
H A DSimpleNamingObjectFactory.java54 private Object value; field in class:SimpleNamingObjectFactory
56 public SimpleNamingObjectFactory(String name, Object value) { argument
58 this.value = value;
66 return value;
/glassfish-3.1.2/connectors/connectors-internal-api/src/main/java/com/sun/appserv/connectors/internal/api/
H A DApplicationScopedResourceBinding.java54 private Object value; field in class:ApplicationScopedResourceBinding
55 public ApplicationScopedResourceBinding(String name, Object value){ argument
61 this.value = value;
68 return value;
H A DModuleScopedResourceBinding.java54 private Object value; field in class:ModuleScopedResourceBinding
55 public ModuleScopedResourceBinding(String name, Object value){ argument
61 this.value = value;
68 return value;
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/modeler/
H A DFieldInfo.java88 * <p>The field value for this field of a descriptor.</p>
90 protected Object value = null; field in class:FieldInfo
93 return (this.value);
96 public void setValue(Object value) { argument
97 this.value = value;
/glassfish-3.1.2/deployment/javax.enterprise.deploy/src/main/java/javax/enterprise/deploy/shared/
H A DActionType.java51 private int value; // This enumeration value's int value field in class:ActionType
83 * Construct a new enumeration value with the given integer value.
85 * @param value Integer value.
87 protected ActionType(int value) argument
88 { this.value = value;
120 getActionType(int value) argument
[all...]
H A DCommandType.java51 private int value; // This enumeration value's int value field in class:CommandType
93 * Construct a new enumeration value with the given integer value.
95 * @param value Integer value.
97 protected CommandType(int value) argument
99 this.value = value;
130 getCommandType(int value) argument
[all...]
H A DDConfigBeanVersionType.java51 private int value; // This enumeration value's int value field in class:DConfigBeanVersionType
94 * Construct a new enumeration value with the given integer value.
96 * @param value Integer value.
98 protected DConfigBeanVersionType(int value) argument
99 { this.value = value;
131 getDConfigBeanVersionType(int value) argument
[all...]
H A DModuleType.java51 private int value; // This enumeration value's int value field in class:ModuleType
104 * Construct a new enumeration value with the given integer value.
106 * @param value Integer value.
108 protected ModuleType(int value) argument
109 { this.value = value;
146 getModuleType(int value) argument
[all...]
H A DStateType.java51 private int value; // This enumeration value's int value field in class:StateType
86 * Construct a new enumeration value with the given integer value.
88 * @param value Integer value.
90 protected StateType(int value) argument
91 { this.value = value;
122 getStateType(int value) argument
[all...]
/glassfish-3.1.2/web/gui-plugin-common/src/main/java/org/glassfish/web/plugin/common/
H A DEnvEntry.java59 public void setDescription(String value); argument
63 public void setEnvEntryName(String value); argument
67 public void setEnvEntryType(String value); argument
71 public void setEnvEntryValue(String value); argument
76 public void setIgnoreDescriptorItem(String value); argument
79 * Validates the value in the env-entry-value subelement against the
83 * @throws NumberFormatException if the value cannot be parsed according to the type
91 String value = me.getEnvEntryValue();
92 Util.validateValue(type, value);
121 validateValue(final String type, final String value) argument
[all...]
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/runtime/common/
H A DResourceRef.java59 public void setResRefName(String value) argument
61 this.setValue(RES_REF_NAME, value);
71 public void setJndiName(String value) argument
73 this.setValue(JNDI_NAME, value);
83 public void setDefaultResourcePrincipal(DefaultResourcePrincipal value) argument
85 this.setValue(DEFAULT_RESOURCE_PRINCIPAL, value);

Completed in 991 milliseconds

1234567891011>>