100+ results for 'email validate lang:java'
Not the results you expected?
ShipmentValidateRequest.java (http://clom2.googlecode.com/svn/trunk/) Java · 509 lines
RegionTest.java (git://pkgs.fedoraproject.org/eclipse-mdt-uml2) Java · 262 lines
31 * The following operations are tested:
32 * <ul>
33 * <li>{@link org.eclipse.uml2.uml.RedefinableElement#validateRedefinitionContextValid(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) <em>Validate Redefinition Context Valid</em>}</li>
34 * <li>{@link org.eclipse.uml2.uml.RedefinableElement#validateRedefinitionConsistent(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) <em>Validate Redefinition Consistent</em>}</li>
35 * <li>{@link org.eclipse.uml2.uml.Region#isConsistentWith(org.eclipse.uml2.uml.RedefinableElement) <em>Is Consistent With</em>}</li>
36 * <li>{@link org.eclipse.uml2.uml.Region#validateInitialVertex(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) <em>Validate Initial Vertex</em>}</li>
37 * <li>{@link org.eclipse.uml2.uml.Region#validateDeepHistoryVertex(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) <em>Validate Deep History Vertex</em>}</li>
38 * <li>{@link org.eclipse.uml2.uml.Region#validateShallowHistoryVertex(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) <em>Validate Shallow History Vertex</em>}</li>
39 * <li>{@link org.eclipse.uml2.uml.Region#validateOwned(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) <em>Validate Owned</em>}</li>
165 /**
166 * Tests the '{@link org.eclipse.uml2.uml.Region#validateInitialVertex(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) <em>Validate Initial Vertex</em>}' operation.
167 * <!-- begin-user-doc -->
168 * <!-- end-user-doc -->
SearchType.java (git://github.com/jersey/jersey.git) Java · 69 lines
SAXParser.java (svn://gcc.gnu.org/svn/gcc/trunk/) Java · 0 lines
ServletConstants.java (http://vt-middleware.googlecode.com/svn/) Java · 109 lines
9 Author: Middleware Services
10 Email: middleware@vt.edu
11 Version: $Revision: 1330 $
12 Updated: $Date: 2010-05-24 00:10:53 +0200 (Mon, 24 May 2010) $
60 public static final String DEFAULT_SESSION_ID = "user";
62 /** Whether to invalidate the user session at logout, value is {@value}. */
63 public static final String INVALIDATE_SESSION = PROPERTIES_DOMAIN +
64 "invalidateSession";
66 /**
68 * {@value}.
69 */
70 public static final String DEFAULT_INVALIDATE_SESSION = "true";
72 /** URL of the page that collects user credentials, value is {@value}. */
LayerTypeMatcher.java (git://github.com/SpringSource/spring-roo.git) Java · 71 lines
4 import java.util.List;
6 import org.apache.commons.lang3.Validate;
7 import org.springframework.roo.classpath.customdata.CustomDataKeys;
8 import org.springframework.roo.classpath.customdata.taggers.AnnotatedTypeMatcher;
42 public LayerTypeMatcher(final JavaType layerAnnotation, final JavaSymbolName domainTypesAttribute) {
43 super(CustomDataKeys.LAYER_TYPE, layerAnnotation);
44 Validate.notNull(layerAnnotation, "Layer annotation is required");
45 Validate.notNull(domainTypesAttribute, "Domain types attribute is required");
BuilderValidators.java (git://github.com/jacek99/javabuilders.git) Java · 503 lines
35 private static String defaultMaxValueMessage = "message.error.maxValue";
36 private static String defaultNumericMessage = "message.error.numeric";
37 private static String defaultEmailAddressMessage = "message.error.emailAddress";
38 private static String defaultRegexMessage = "message.error.regex";
45 private String maxValueMessage = defaultMaxValueMessage;
46 private String numericMessage = defaultNumericMessage;
47 private String emailAddressMessage = defaultEmailAddressMessage;
48 private String regexMessage = defaultRegexMessage;
333 if (validator.isEmailAddress()) {
334 EmailAddressValidator v = new EmailAddressValidator(validator.getProperty(),
335 parsedLabel,
336 getEmailAddressMessage(),result);
391 public void setEmailAddress(String emailAddressMessage) {
392 this.emailAddressMessage = emailAddressMessage;
393 }
DomainsInner.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 2372 lines
593 throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
594 }
595 Validator.validate(parameters);
596 return service.listRecommendations(this.client.subscriptionId(), parameters, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent())
597 .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<NameIdentifierInner>>>>() {
901 throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
902 }
903 Validator.validate(domain);
904 Observable<Response<ResponseBody>> observable = service.createOrUpdate(resourceGroupName, domainName, this.client.subscriptionId(), domain, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent());
905 return client.getAzureClient().getPutOrPatchResultAsync(observable, new TypeToken<DomainInner>() { }.getType());
982 throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
983 }
984 Validator.validate(domain);
985 return service.beginCreateOrUpdate(resourceGroupName, domainName, this.client.subscriptionId(), domain, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent())
986 .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<DomainInner>>>() {
ArraysSolverValidatorTest.java (git://github.com/rinde/RinSim.git) Java · 845 lines
16 package com.github.rinde.rinsim.central.arrays;
18 import static com.github.rinde.rinsim.central.arrays.ArraysSolverValidator.validateInputs;
19 import static com.github.rinde.rinsim.central.arrays.ArraysSolverValidator.validateOutputs;
31 /**
32 * You could see this class as the validator of the validator, so now you might
33 * be thinking, who validates the validator of the validators? Well, that's YOU!
34 * @author Rinde van Lon
35 */
38 /*
39 * VALIDATE SINGLE VEHICLE INPUTS
40 */
42 @Test(expected = IllegalArgumentException.class)
43 public void validateInputsEmptyTravelTimeMatrix() {
44 validateInputs(new int[][] {}, new int[] {}, new int[] {}, new int[][] {},
SolverValidatorTest.java (git://github.com/rinde/RinSim.git) Java · 654 lines
51 @Test
52 public void validateNegativeTime() {
53 final GlobalStateObject state = GlobalStateObject.create(
54 ImmutableSet.<Parcel>of(), ImmutableList.<VehicleStateObject>of(), -1,
56 boolean fail = false;
57 try {
58 SolverValidator.validateInputs(state);
59 } catch (final IllegalArgumentException e) {
60 fail = true;
66 @Test
67 public void validateNegativeRemainingTime() {
68 final VehicleStateObject vs1 =
69 VehicleStateObject.create(vdto(), POINT, absent,
WebSiteManagementClientImpl.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 1712 lines
40 import com.azure.management.appservice.ResourceNameAvailabilityRequest;
41 import com.azure.management.appservice.SkuName;
42 import com.azure.management.appservice.ValidateRequest;
43 import com.azure.management.appservice.VnetParameters;
44 import reactor.core.publisher.Mono;
512 @ExpectedResponses({200})
513 @UnexpectedResponseExceptionType(DefaultErrorResponseException.class)
514 Mono<SimpleResponse<ValidateResponseInner>> validate(
515 @HostParam("$host") String host,
516 @PathParam("resourceGroupName") String resourceGroupName,
517 @PathParam("subscriptionId") String subscriptionId,
518 @QueryParam("api-version") String apiVersion,
519 @BodyParam("application/json") ValidateRequest validateRequest,
520 Context context);
StatsApi.java (git://github.com/jeremybrooks/jinx.git) Java · 463 lines
67 */
68 public Domains getCollectionDomains(Date date, String collectionId, Integer perPage, Integer page) throws JinxException {
69 JinxUtils.validateParams(date);
70 Map<String, String> params = new TreeMap<>();
71 params.put("method", "flickr.stats.getCollectionDomains");
104 public Referrers getCollectionReferrers(Date date, String domain, String collectionId, Integer perPage, Integer page)
105 throws JinxException {
106 JinxUtils.validateParams(date, domain);
107 Map<String, String> params = new TreeMap<>();
108 params.put("method", "flickr.stats.getCollectionReferrers");
135 */
136 public Stats getCollectionStats(Date date, String collectionId) throws JinxException {
137 JinxUtils.validateParams(date, collectionId);
138 Map<String, String> params = new TreeMap<>();
139 params.put("method", "flickr.stats.getCollectionStats");
BinanceAuthenticated.java (git://github.com/timmolter/XChange.git) Java · 505 lines
76 @Path("api/v3/order/test")
77 /**
78 * Test new order creation and signature/recvWindow long. Creates and validates a new order but
79 * does not send it into the matching engine.
80 *
394 @Path("/sapi/v1/sub-account/sub/transfer/history")
395 List<TransferHistory> transferHistory(
396 @QueryParam("fromEmail") String fromEmail,
397 @QueryParam("startTime") Long startTime,
398 @QueryParam("endTime") Long endTime,
FieldMatcher.java (git://github.com/SpringSource/spring-roo.git) Java · 159 lines
33 import java.util.Map;
35 import org.apache.commons.lang3.Validate;
36 import org.springframework.roo.classpath.details.FieldMetadata;
37 import org.springframework.roo.classpath.details.MemberHoldingTypeDetails;
98 public FieldMatcher(final CustomDataKey<FieldMetadata> customDataKey,
99 final Collection<AnnotationMetadata> annotations) {
100 Validate.notNull(customDataKey, "Custom data key is required");
101 this.annotations = new ArrayList<AnnotationMetadata>();
102 this.customDataKey = customDataKey;
CommonServlet.java (http://vt-middleware.googlecode.com/svn/) Java · 106 lines
9 Author: Middleware Services
10 Email: middleware@vt.edu
11 Version: $Revision: 269 $
12 Updated: $Date: 2009-05-28 16:24:37 +0200 (Thu, 28 May 2009) $
93 String invalidateSession = getInitParameter(
94 ServletConstants.INVALIDATE_SESSION);
95 if (invalidateSession == null) {
96 invalidateSession = ServletConstants.DEFAULT_INVALIDATE_SESSION;
97 }
98 if (LOG.isDebugEnabled()) {
99 LOG.debug(
100 ServletConstants.INVALIDATE_SESSION + " = " + invalidateSession);
101 }
102 this.sessionManager.setInvalidateSession(
EmailLicenseRequestType.java (https://bitbucket.org/joolssmith/siemens-schweiz-data-remodelling-poc.git) Java · 276 lines
31 this.ignoreExistingEmailList = ignoreExistingEmailList;
32 this.validateEmailAddresses = validateEmailAddresses;
33 this.emailIdList = emailIdList;
88 /**
89 * Sets the validateEmailAddresses value for this EmailLicenseRequestType.
90 *
91 * @param validateEmailAddresses
93 public void setValidateEmailAddresses(java.lang.Boolean validateEmailAddresses) {
94 this.validateEmailAddresses = validateEmailAddresses;
95 }
154 this.ignoreExistingEmailList.equals(other.getIgnoreExistingEmailList()))) &&
155 ((this.validateEmailAddresses==null && other.getValidateEmailAddresses()==null) ||
156 (this.validateEmailAddresses!=null &&
157 this.validateEmailAddresses.equals(other.getValidateEmailAddresses()))) &&
158 ((this.emailIdList==null && other.getEmailIdList()==null) ||
UserManagerIT.java (git://github.com/springside/springside4.git) Java · 127 lines
ActionThirdPartyHandler.java (https://bitbucket.org/invest/anyoption.git) Java · 159 lines
32 /**
33 * validateAction event handler implementation
34 */
35 @Override
126 if (res){
127 IssueAction emailAction = new IssueAction();
128 emailAction.setIssueId(action.getIssueId());
129 emailAction.setWriterId(Writer.WRITER_ID_AUTO);
130 emailAction.setSignificant(false);
131 emailAction.setActionTypeId(String.valueOf(IssuesManagerBase.ISSUE_ACTION_EMAIL));
132 emailAction.setComments("Sent Unreached call email.");
133 emailAction.setChannelId(String.valueOf(IssuesManagerBase.ISSUE_CHANNEL_EMAIL));
134 emailAction.setActionTime(new Date());
ObjectFactory.java (http://clom2.googlecode.com/svn/trunk/) Java · 421 lines
51 /**
52 * Create an instance of {@link ShipmentValidateRequest }
53 *
54 */
55 public ShipmentValidateRequest createShipmentValidateRequest() {
56 return new ShipmentValidateRequest();
171 /**
172 * Create an instance of {@link Email }
173 *
174 */
175 public Email createEmail() {
176 return new Email();
MqttSubAck.java (git://github.com/eclipse/paho.mqtt.java.git) Java · 134 lines
55 for (int i = 0; i < remainingLength; i++) {
56 int returnCode = inputStream.readUnsignedByte();
57 validateReturnCode(returnCode, validReturnCodes);
58 reasonCodes[i] = returnCode;
59 }
65 super(MqttWireMessage.MESSAGE_TYPE_SUBACK);
66 for (int returnCode : returnCodes) {
67 validateReturnCode(returnCode, validReturnCodes);
68 }
69 this.reasonCodes = returnCodes;
CmsImportFile.java (git://github.com/alkacon/opencms-core.git) Java · 110 lines
SoftLimitLdapPool.java (http://vt-middleware.googlecode.com/svn/) Java · 131 lines
AbstractLdapFactory.java (http://vt-middleware.googlecode.com/svn/) Java · 176 lines
9 Author: Middleware Services
10 Email: middleware@vt.edu
11 Version: $Revision: 930 $
12 Updated: $Date: 2009-10-26 21:44:26 +0100 (Mon, 26 Oct 2009) $
158 /** {@inheritDoc} */
159 public boolean validate(final T t)
160 {
161 boolean success = false;
163 success = true;
164 if (this.logger.isWarnEnabled()) {
165 this.logger.warn("validate called, but no validator configured");
166 }
167 } else {
SoftLimitLdapPool.java (http://vt-middleware.googlecode.com/svn/) Java · 131 lines
SoftLimitLdapPool.java (http://vt-middleware.googlecode.com/svn/) Java · 131 lines
JoinBean.java (http://jcertif-web-app.googlecode.com/svn/trunk/) Java · 150 lines
74 try {
75 validateUser();
76 restService.post(resourceService.getUserCreateContext(), user, User.class);
77 context.getExternalContext().redirect(
86 /**
87 * Validate the user's data.
88 */
89 protected void validateUser() {
90 // Email and Confirmation Email must be equals
91 if (!user.getEmail().equals(user.getConfirmemail())) {
92 throw new ValidationException(resourceService.getLib("join.confirmemail.invalidmsg"));
93 }
ServiceClassMetadata.java (git://github.com/SpringSource/spring-roo.git) Java · 169 lines
8 import java.util.Map.Entry;
10 import org.apache.commons.lang3.Validate;
11 import org.apache.commons.lang3.builder.ToStringBuilder;
12 import org.springframework.roo.classpath.PhysicalTypeIdentifierNamingUtils;
88 final Map<JavaType, String> domainTypePlurals) {
89 super(identifier, aspectName, governorPhysicalTypeMetadata);
90 Validate.notNull(allCrudAdditions, "CRUD additions required");
91 Validate.notNull(annotationValues, "Annotation values required");
92 Validate.notNull(governorDetails, "Governor details required");
93 Validate.notNull(domainTypePlurals, "Domain type plurals required");
UniqueNameValidatorTest.java (http://vt-middleware.googlecode.com/svn/) Java · 165 lines
9 Author: Middleware Services
10 Email: middleware@vt.edu
11 Version: $Revision: 1421 $
12 Updated: $Date: 2010-06-25 18:43:59 +0200 (Fri, 25 Jun 2010) $
87 "cat1",
88 "cat2");
89 Assert.assertTrue(validate(goodProject));
91 final ProjectConfig dupeProject = UnitTestHelper.createProject(
97 "cat1",
98 "cat2");
99 Assert.assertFalse(validate(dupeProject));
100 project2.setName("p1");
101 Assert.assertFalse(validate(project2));
ValidateOp.java
(http://xbird.googlecode.com/svn/trunk/)
Java · 90 lines
✨ Summary
This Java class ValidateOp
represents a validation operation in an XQuery expression. It extends AbstractXQExpression
and takes two parameters: an expression to be validated and a boolean indicating whether strict validation is required. The class provides methods for visiting the expression, getting the underlying expression, checking if strict validation is enabled, and evaluating the expression (which throws an UnsupportedOperationException).
This Java class ValidateOp
represents a validation operation in an XQuery expression. It extends AbstractXQExpression
and takes two parameters: an expression to be validated and a boolean indicating whether strict validation is required. The class provides methods for visiting the expression, getting the underlying expression, checking if strict validation is enabled, and evaluating the expression (which throws an UnsupportedOperationException).
1 /*
2 * @(#)$Id: ValidateOp.java 3619 2008-03-26 07:23:03Z yui $
3 *
4 * Copyright 2006-2008 Makoto YUI
35 *
36 * @author Makoto YUI (yuin405+xbird@gmail.com)
37 * @link http://www.w3.org/TR/xquery/#id-validate
38 * @link http://www.w3.org/TR/xquery-semantics/#sec_validate_expr
39 */
40 public final class ValidateOp extends AbstractXQExpression {
41 private static final long serialVersionUID = 3230093526066669323L;
44 private final XQExpression expr;
46 public ValidateOp(XQExpression expr) {
47 this(expr, true);
48 }
OrganizationStagedModelDataHandlerTest.java (git://github.com/liferay/liferay-portal.git) Java · 314 lines
99 dependentStagedModelsMap, Address.class, address);
101 EmailAddress emailAddress = OrganizationTestUtil.addEmailAddress(
102 _organization);
104 addDependentStagedModel(
105 dependentStagedModelsMap, EmailAddress.class, emailAddress);
107 OrganizationTestUtil.addOrgLabor(_organization);
210 emailAddressDependentStagedModels.size());
212 EmailAddress emailAddress =
213 (EmailAddress)emailAddressDependentStagedModels.get(0);
215 EmailAddress importedEmailAddress =
216 EmailAddressLocalServiceUtil.fetchEmailAddressByUuidAndCompanyId(
217 emailAddress.getUuid(), group.getCompanyId());
XSDConcreteComponent.java (git://pkgs.fedoraproject.org/eclipse-emf) Java · 577 lines
139 * <!-- begin-user-doc -->
140 * <p>
141 * These diagnostics are produced by {@link #validate() validation}.
142 * </p>
143 * <!-- end-user-doc -->
544 /**
545 * Validates whether this component conforms to the constraints defined in the XML Schema standard.
546 * {@link #getDiagnostics() Diagnostics} are produced to report any problems.
547 * The effect of calling this for a component not directly or indirectly contained by a {@link org.eclipse.xsd.XSDSchema schema}
550 * @see #clearDiagnostics()
551 */
552 void validate();
554 /**
VerhoeffUtil.java (http://mailanalyzer.googlecode.com/svn/trunk/) Java · 111 lines
AbstractDictionaryRule.java (http://vt-middleware.googlecode.com/svn/) Java · 150 lines
9 Author: Middleware Services
10 Email: middleware@vt.edu
11 Version: $Revision: 1724 $
12 Updated: $Date: 2010-10-29 19:47:59 +0200 (Fri, 29 Oct 2010) $
81 /**
82 * See {@link Rule#validate(PasswordData)}.
83 *
84 * @param passwordData <code>PasswordData</code> to verify (not null).
89 * @throws NullPointerException if the password data is null.
90 */
91 public DictionaryRuleResult validate(final PasswordData passwordData)
92 {
93 final DictionaryRuleResult result = new DictionaryRuleResult(true);
AbstractDictionaryRule.java (http://vt-middleware.googlecode.com/svn/) Java · 150 lines
9 Author: Middleware Services
10 Email: middleware@vt.edu
11 Version: $Revision: 1841 $
12 Updated: $Date: 2011-02-25 20:05:47 +0100 (Fri, 25 Feb 2011) $
81 /**
82 * See {@link Rule#validate(PasswordData)}.
83 *
84 * @param passwordData <code>PasswordData</code> to verify (not null).
89 * @throws NullPointerException if the password data is null.
90 */
91 public DictionaryRuleResult validate(final PasswordData passwordData)
92 {
93 final DictionaryRuleResult result = new DictionaryRuleResult(true);
IntValidator.java (git://pkgs.fedoraproject.org/castor) Java · 316 lines
78 * fixed value has been configured.
79 *
80 * @return the fixed value to validate against.
81 */
82 public Integer getFixed() {
91 * no maximum has been configured.
92 *
93 * @return the maximum (inclusive) value to validate against.
94 */
95 public Integer getMaxInclusive() {
104 * no minimum has been configured.
105 *
106 * @return the minimum inclusive value to validate against.
107 */
108 public Integer getMinInclusive() {
DownloadInfo.java (git://github.com/chromium/chromium.git) Java · 582 lines
262 break;
263 case OfflineItemState.FAILED:
264 state = DownloadState.INTERRUPTED; // TODO(dtrainor): Validate what this state is.
265 break;
266 case OfflineItemState.PENDING: // TODO(dtrainor): Validate what this state is.
267 case OfflineItemState.IN_PROGRESS:
268 case OfflineItemState.PAUSED: // TODO(dtrainor): Validate what this state is.
269 default:
270 state = DownloadState.IN_PROGRESS;
BlockingLdapPool.java (http://vt-middleware.googlecode.com/svn/) Java · 317 lines
9 Author: Middleware Services
10 Email: middleware@vt.edu
11 Version: $Revision: 282 $
12 Updated: $Date: 2009-05-29 23:57:32 +0200 (Fri, 29 May 2009) $
177 if (l != null) {
178 this.activateAndValidate(l);
179 } else {
180 if (this.logger.isErrorEnabled()) {
285 public void checkIn(final Ldap l)
286 {
287 final boolean valid = this.validateAndPassivate(l);
288 final PooledLdap<Ldap> pl = new PooledLdap<Ldap>(l);
289 if (this.logger.isTraceEnabled()) {
BlockingLdapPool.java (http://vt-middleware.googlecode.com/svn/) Java · 317 lines
9 Author: Middleware Services
10 Email: middleware@vt.edu
11 Version: $Revision: 930 $
12 Updated: $Date: 2009-10-26 21:44:26 +0100 (Mon, 26 Oct 2009) $
177 if (l != null) {
178 this.activateAndValidate(l);
179 } else {
180 if (this.logger.isErrorEnabled()) {
285 public void checkIn(final Ldap l)
286 {
287 final boolean valid = this.validateAndPassivate(l);
288 final PooledLdap<Ldap> pl = new PooledLdap<Ldap>(l);
289 if (this.logger.isTraceEnabled()) {
BlockingLdapPool.java (http://vt-middleware.googlecode.com/svn/) Java · 317 lines
9 Author: Middleware Services
10 Email: middleware@vt.edu
11 Version: $Revision: 1330 $
12 Updated: $Date: 2010-05-24 00:10:53 +0200 (Mon, 24 May 2010) $
177 if (l != null) {
178 this.activateAndValidate(l);
179 } else {
180 if (this.logger.isErrorEnabled()) {
285 public void checkIn(final Ldap l)
286 {
287 final boolean valid = this.validateAndPassivate(l);
288 final PooledLdap<Ldap> pl = new PooledLdap<Ldap>(l);
289 if (this.logger.isTraceEnabled()) {
ActivePersonAuthorization.java (https://HealthVaultJavaLib.svn.codeplex.com/svn) Java · 434 lines
45 * <element name="contact-email" type="{urn:com.microsoft.wc.types}EmailAddress"/>
46 * <element name="contact-email-validated" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
47 * <element name="record-display-name" type="{urn:com.microsoft.wc.types}string255" minOccurs="0"/>
48 * <element name="date-auth-expires" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
69 "contactEmail",
70 "contactEmailValidated",
71 "recordDisplayName",
72 "dateAuthExpires",
241 /**
242 * Gets the value of the contactEmailValidated property.
243 *
244 * @return
261 public void setContactEmailValidated(Boolean value) {
262 this.contactEmailValidated = value;
263 }
BasicSubResource.java (git://github.com/jersey/jersey.git) Java · 110 lines
51 import javax.validation.constraints.NotNull;
52 import javax.validation.executable.ExecutableType;
53 import javax.validation.executable.ValidateOnExecution;
55 import org.hibernate.validator.constraints.Email;
59 */
60 @NonEmptyNames
61 @ValidateOnExecution(type = ExecutableType.ALL)
62 public class BasicSubResource {
81 @FormParam("email")
82 public void setEmail(String email) {
83 this.email = email;
105 final ContactBean contactBean = new ContactBean();
106 contactBean.setName(firstName + " " + lastName);
107 contactBean.setEmail(getEmail());
108 return contactBean;
109 }
DefaultLDAPSettings.java (git://github.com/liferay/liferay-portal.git) Java · 337 lines
48 @Override
49 public String getAuthSearchFilter(
50 long ldapServerId, long companyId, String emailAddress,
51 String screenName, String userId)
52 throws Exception {
65 filter,
66 new String[] {
67 "@company_id@", "@email_address@", "@screen_name@", "@user_id@"
68 },
69 new String[] {
70 String.valueOf(companyId), emailAddress, screenName, userId
71 });
BasicMatchMaker.java (https://code.google.com/p/prime-middleware/) Java · 127 lines
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307,
20 * USA, or send email
21 *
22 * @author Mauro Caporuscio
112 log.debug( "Consistency Check... " );
113 model.prepare();
114 model.validate();
116 log.debug( "DONE" );
XSIdentityConstraintImpl.java (git://pkgs.fedoraproject.org/ws-jaxme) Java · 108 lines
AppServiceCertificateOrder.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 351 lines
RcptPerson.java (https://HealthVaultJavaLib.svn.codeplex.com/svn) Java · 113 lines
27 * <pre>
28 * <?xml version="1.0" encoding="UTF-8"?><remarks xmlns="http://www.w3.org/2001/XMLSchema" xmlns:this="urn:com.microsoft.wc.types">
29 * The validated attribute determines whether the email
30 * address must first be validated by the account owner. If
31 * the validated attribute is true and the email address
32 * hasn't been validated then an error will be returned.
43 * <simpleContent>
44 * <extension base="<urn:com.microsoft.wc.types>guid">
45 * <attribute name="validated" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
46 * </extension>
47 * </simpleContent>
61 @XmlAttribute(name = "validated", required = true)
62 protected boolean validated;
64 /**
BlockingConnectionPool.java (http://vt-middleware.googlecode.com/svn/) Java · 275 lines
9 Author: Middleware Services
10 Email: middleware@vt.edu
11 Version: $Revision: 2197 $
12 Updated: $Date: 2012-01-02 04:40:30 +0100 (Mon, 02 Jan 2012) $
163 if (pc != null) {
164 activateAndValidateConnection(pc);
165 } else {
166 logger.error("Could not service check out request");
251 {
252 final PooledConnectionHandler pc = retrieveInvocationHandler(c);
253 final boolean valid = validateAndPassivateConnection(pc);
254 logger.trace(
255 "waiting on pool lock for check in {}",
BlockingLdapPool.java (http://vt-middleware.googlecode.com/svn/) Java · 324 lines
9 Author: Middleware Services
10 Email: middleware@vt.edu
11 Version: $Revision: 2241 $
12 Updated: $Date: 2012-02-07 21:08:51 +0100 (Tue, 07 Feb 2012) $
184 if (l != null) {
185 this.activateAndValidate(l);
186 } else {
187 if (this.logger.isErrorEnabled()) {
292 public void checkIn(final Ldap l)
293 {
294 final boolean valid = this.validateAndPassivate(l);
295 final PooledLdap<Ldap> pl = new PooledLdap<Ldap>(l);
296 if (this.logger.isTraceEnabled()) {
ApplicationConfigServiceImpl.java (git://github.com/SpringSource/spring-roo.git) Java · 280 lines
9 import org.apache.commons.lang3.StringUtils;
10 import org.apache.commons.lang3.Validate;
11 import org.apache.felix.scr.annotations.Component;
12 import org.apache.felix.scr.annotations.Reference;
263 */
264 private LogicalPath getApplicationConfigFileLocation(String moduleName) {
265 Validate.notNull(moduleName, "Module name is required");
266 LogicalPath location =
267 LogicalPath.getInstance(DEFAULT_APPLICATION_CONFIG_FILE_LOCATION, moduleName);
DOM.java (http://ainotebook.googlecode.com/svn/trunk/) Java · 107 lines
AppServiceCertificateOrders.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 212 lines
100 /**
101 * Resend certificate email.
102 * Resend certificate email.
107 * @return the observable for the request
108 */
109 Completable resendEmailAsync(String resourceGroupName, String certificateOrderName);
111 /**
118 * @return the observable for the request
119 */
120 Completable resendRequestEmailsAsync(String resourceGroupName, String certificateOrderName);
122 /**
163 * @return the observable for the request
164 */
165 Observable<CertificateEmail> retrieveCertificateEmailHistoryAsync(String resourceGroupName, String name);
167 /**
GuestForm.java (http://tourismsystem.googlecode.com/svn/trunk/) Java · 167 lines
27 private String applyrole;
28 private String userphone;
29 private String useremail;
30 private String applyreason;
31 private Guest guest;
46 applyrole="";
47 userphone="";
48 useremail="";
49 applyreason="";
50 guest=new Guest();
129 }
131 public void setUseremail(String useremail)
132 {
133 this.useremail=useremail;
XsEListImpl.java (git://pkgs.fedoraproject.org/ws-jaxme) Java · 96 lines
ProfileComponentValidatorManagementInterfaceTest.java
(http://mobicents.googlecode.com/svn/trunk/)
Java · 323 lines
✨ Summary
This Java code is a test class for validating profile management interface constraints. It tests various scenarios where a management interface class is set to have methods from different sources (e.g., ProfileMBean, ProfileManagement, Profile, DynamicMBean, MBeanRegistration) and checks if the validation passes or fails accordingly.
This Java code is a test class for validating profile management interface constraints. It tests various scenarios where a management interface class is set to have methods from different sources (e.g., ProfileMBean, ProfileManagement, Profile, DynamicMBean, MBeanRegistration) and checks if the validation passes or fails accordingly.
81 validator.setComponent(component);
83 boolean b = validator.validateProfileManagementInterface();
85 assertTrue("Management Interface class has not been validated", b);
106 validator.setComponent(component);
108 boolean b = validator.validateCMPInterface();
110 assertTrue("CMP Interface class has not been validated", b);
129 validator.setComponent(component);
131 boolean b = validator.validateProfileManagementInterface();
133 assertTrue("Management Interface class has not been validated - it does not extend CMP interface, however it is valid to declare CMP method.", b);
ProfileComponentValidatorAbstractClassTest.java
(http://mobicents.googlecode.com/svn/trunk/)
Java · 559 lines
✨ Summary
This Java code is a test class for validating abstract classes in a profiling framework. It tests various scenarios, such as implementing life cycle methods, declaring usage parameters, and lacking life cycles, to ensure compliance with constraints defined in different versions of the framework (e.g., 1.0, 1.1, 10). The code uses mock objects and assertions to verify the correctness of the abstract classes under test.
This Java code is a test class for validating abstract classes in a profiling framework. It tests various scenarios, such as implementing life cycle methods, declaring usage parameters, and lacking life cycles, to ensure compliance with constraints defined in different versions of the framework (e.g., 1.0, 1.1, 10). The code uses mock objects and assertions to verify the correctness of the abstract classes under test.
98 validator.setComponent(component);
100 boolean b = validator.validateAbstractClass();
102 assertTrue("Abstract class class has not been validated", b);
140 validator.setComponent(component);
142 boolean b = validator.validateAbstractClass();
144 assertFalse("Abstract class class has been validated, it should not - since it declared concrete CMP method", b);
178 validator.setComponent(component);
180 boolean b = validator.validateAbstractClass();
182 assertFalse("Abstract class class has been validated, it should not - since it does not implement CMP interface", b);
CommonServlet.java (http://vt-middleware.googlecode.com/svn/) Java · 109 lines
9 Author: Middleware Services
10 Email: middleware@vt.edu
11 Version: $Revision: 1330 $
12 Updated: $Date: 2010-05-24 00:10:53 +0200 (Mon, 24 May 2010) $
96 String invalidateSession = getInitParameter(
97 ServletConstants.INVALIDATE_SESSION);
98 if (invalidateSession == null) {
99 invalidateSession = ServletConstants.DEFAULT_INVALIDATE_SESSION;
100 }
101 if (this.logger.isDebugEnabled()) {
102 this.logger.debug(
103 ServletConstants.INVALIDATE_SESSION + " = " + invalidateSession);
104 }
105 this.sessionManager.setInvalidateSession(
SoftLimitConnectionPool.java (http://vt-middleware.googlecode.com/svn/) Java · 116 lines
RepositoryJpaConfigurationMetadataProviderImpl.java (git://github.com/SpringSource/spring-roo.git) Java · 145 lines
6 import java.util.logging.Logger;
8 import org.apache.commons.lang3.Validate;
9 import org.apache.felix.scr.annotations.Component;
10 import org.apache.felix.scr.annotations.Service;
122 }
123 }
124 Validate.notNull(applicationMainType, "Unable to find a main application class on module %s",
125 repositoryConfigurationModuleName);
AbstractSequenceRule.java (http://vt-middleware.googlecode.com/svn/) Java · 347 lines
9 Author: Middleware Services
10 Email: middleware@vt.edu
11 Version: $Revision: 1930 $
12 Updated: $Date: 2011-04-28 19:06:17 +0200 (Thu, 28 Apr 2011) $
44 /** {@inheritDoc} */
45 @Override
46 public RuleResult validate(final PasswordData passwordData)
47 {
48 final RuleResult result = new RuleResult(true);
CompareValidator.java (http://vt-middleware.googlecode.com/svn/) Java · 100 lines
9 Author: Middleware Services
10 Email: middleware@vt.edu
11 Version: $Revision: 2352 $
12 Updated: $Date: 2012-04-11 16:00:33 +0200 (Wed, 11 Apr 2012) $
23 /**
24 * Validates a connection is healthy by performing a compare operation.
25 *
26 * @author Middleware Services
81 /** {@inheritDoc} */
82 @Override
83 public boolean validate(final Connection c)
84 {
85 boolean success = false;
TerminologyProjectValidator.java (git://github.com/jutzig/jabylon.git) Java · 67 lines
LoginConfigurationActionImpl.java (git://github.com/liferay/liferay-portal.git) Java · 104 lines
59 removeDefaultValue(
60 portletRequest, portletPreferences,
61 "emailPasswordResetBody_" + languageId,
62 ContentUtil.get(
63 PortalClassLoaderUtil.getClassLoader(),
64 PropsValues.ADMIN_EMAIL_PASSWORD_RESET_BODY));
65 removeDefaultValue(
66 portletRequest, portletPreferences,
97 throws Exception {
99 validateEmailFrom(actionRequest);
101 super.processAction(portletConfig, actionRequest, actionResponse);
SearchDialog.java (git://github.com/Illarion-eV/Illarion-Java.git) Java · 175 lines
JsrFlowJob.java (git://github.com/SpringSource/spring-batch.git) Java · 141 lines
Validator.java (git://github.com/joval/jOVAL.git) Java · 115 lines
45 File xsl = new File(argv[1]);
46 Validator v = new Validator(xsl);
47 v.validate(xml);
48 System.out.println("Validation successful");
49 } catch (IOException e) {
71 /**
72 * Validate a file.
73 */
74 public void validate(File xml) throws IOException, ValidationException {
75 validate(new StreamSource(new FileInputStream(xml)));
76 }
80 * or reports.
81 */
82 public void validate(Source source) throws ValidationException {
83 try {
84 DOMResult result = new DOMResult();
LineIterator.java (https://github.com/apache/commons-io.git) Java · 187 lines
JSONMVCResponseService.java (git://github.com/SpringSource/spring-roo.git) Java · 223 lines
1 package org.springframework.roo.addon.web.mvc.controller.addon.responses.json;
3 import org.apache.commons.lang3.Validate;
4 import org.apache.felix.scr.annotations.Component;
5 import org.apache.felix.scr.annotations.Service;
100 public void annotate(JavaType controller) {
102 Validate.notNull(controller, "ERROR: You must provide a valid controller");
104 ClassOrInterfaceTypeDetails controllerDetails =
107 // Check if provided controller exists on current project
108 Validate.notNull(controllerDetails, "ERROR: You must provide an existing controller");
110 // Check if provided controller has been annotated with @RooController
TestExecutor.java (git://github.com/AxonFramework/AxonFramework.git) Java · 215 lines
41 *
42 * @param command The command to execute
43 * @return a ResultValidator that can be used to validate the resulting actions of the command execution
44 */
45 ResultValidator<T> when(Object command);
54 * @param command The command to execute
55 * @param metaData The meta data to attach to the
56 * @return a ResultValidator that can be used to validate the resulting actions of the command execution
57 */
58 ResultValidator<T> when(Object command, Map<String, ?> metaData);
125 *
126 * @param elapsedTime a {@link Duration} specifying the amount of time that will elapse
127 * @return a {@link ResultValidator} that can be used to validate the resulting actions of the command execution
128 *
129 * @deprecated in favor of {@link #whenTimeElapses(Duration)}. This function incorrectly suggests you can
TLDDocBuilderPlugin.java (git://github.com/liferay/liferay-portal.git) Java · 255 lines
59 Configuration tlddocConfiguration = addConfigurationTLDDoc(project);
61 ValidateSchemaTask validateTLDTask = _addTaskValidateTLD(project);
63 Copy copyTLDDocResourcesTask = _addTaskCopyTLDDocResources(project);
122 private TLDDocTask _addTaskTLDDoc(
123 Copy copyTLDDocResourcesTask, ValidateSchemaTask validateTLDTask) {
125 Project project = copyTLDDocResourcesTask.getProject();
151 final ValidateSchemaTask validateSchemaTask = GradleUtil.addTask(
152 project, VALIDATE_TLD_TASK_NAME, ValidateSchemaTask.class);
154 validateSchemaTask.setDescription("Validates TLD files.");
228 private void _configureTaskValidateSchemaForJavaPlugin(
229 ValidateSchemaTask validateSchemaTask) {
231 final Project project = validateSchemaTask.getProject();
SipApplicationSessionAsyncTask.java
(http://mobicents.googlecode.com/svn/trunk/)
Java · 85 lines
✨ Summary
This Java class, SipApplicationSessionAsyncTask
, is a wrapper around an asynchronous work task for SIP (Session Initiation Protocol) sessions. It ensures thread safety by executing the work in a separate thread and handling exceptions, while maintaining context and session information. It finds a matching SIP application session, executes the work, and then exits the session.
This Java class, SipApplicationSessionAsyncTask
, is a wrapper around an asynchronous work task for SIP (Session Initiation Protocol) sessions. It ensures thread safety by executing the work in a separate thread and handling exceptions, while maintaining context and session information. It finds a matching SIP application session, executes the work, and then exits the session.
This Java class, SipApplicationSessionAsyncTask
, is a wrapper around an asynchronous work task for SIP (Session Initiation Protocol) sessions. It ensures thread safety by executing the work in a separate thread and handling exceptions, while maintaining context and session information. It finds a matching SIP application session, executes the work, and then exits the session.
This Java class, SipApplicationSessionAsyncTask
, is a wrapper around an asynchronous work task for SIP (Session Initiation Protocol) sessions. It ensures thread safety by executing the work in a separate thread and handling exceptions, while maintaining context and session information. It finds a matching SIP application session, executes the work, and then exits the session.
CmsSearchWorkplaceBean.java (git://github.com/alkacon/opencms-core.git) Java · 283 lines
195 if (CmsStringUtil.isEmptyOrWhitespaceOnly(fields)) {
196 throw new CmsIllegalStateException(Messages.get().container(Messages.ERR_VALIDATE_SEARCH_PARAMS_0));
197 }
198 m_fields = fields;
258 if (CmsStringUtil.isEmptyOrWhitespaceOnly(query)) {
259 throw new CmsIllegalArgumentException(Messages.get().container(Messages.ERR_VALIDATE_SEARCH_QUERY_0));
260 }
261 m_query = query;
WhitespaceRuleTest.java (http://vt-middleware.googlecode.com/svn/) Java · 82 lines
9 Author: Middleware Services
10 Email: middleware@vt.edu
11 Version: $Revision: 1950 $
12 Updated: $Date: 2011-05-04 18:29:29 +0200 (Wed, 04 May 2011) $
71 throws Exception
72 {
73 final RuleResult result = rule.validate(new PasswordData(SPACE_PASS));
74 for (RuleResultDetail detail : result.getDetails()) {
75 AssertJUnit.assertEquals(
SequenceRulesPerfTest.java (http://vt-middleware.googlecode.com/svn/) Java · 86 lines
EventListTest.java (git://pkgs.fedoraproject.org/glazedlists) Java · 670 lines
30 /**
31 * Validates that removeAll() works.
32 *
33 * @see <a href="https://glazedlists.dev.java.net/issues/show_bug.cgi?id=169">Bug 169</a>
62 /**
63 * Validates that retainAll() works.
64 */
65 public void testRetainAll() {
88 /**
89 * Validates that contains() works with null.
90 */
91 public void testContainsNull() {
SubMap.java (git://pkgs.fedoraproject.org/ice) Java · 696 lines
TestBasicCookieAttribHandlers.java (git://pkgs.fedoraproject.org/httpcomponents-client) Java · 503 lines
76 @Test
77 public void testBasicDomainValidate1() throws Exception {
78 BasicClientCookie cookie = new BasicClientCookie("name", "value");
79 CookieOrigin origin = new CookieOrigin("www.somedomain.com", 80, "/", false);
82 cookie.setDomain(".somedomain.com");
83 h.validate(cookie, origin);
85 cookie.setDomain(".otherdomain.com");
86 try {
87 h.validate(cookie, origin);
88 Assert.fail("MalformedCookieException should have been thrown");
89 } catch (MalformedCookieException ex) {
TestCookieRFC2965Spec.java (git://pkgs.fedoraproject.org/httpcomponents-client) Java · 1015 lines
467 */
468 @Test
469 public void testValidateNoDomain() throws Exception {
470 CookieSpec cookiespec = new RFC2965Spec();
471 CookieOrigin origin = new CookieOrigin("www.domain.com", 80, "/", false);
473 List<Cookie> cookies = cookiespec.parse(header, origin);
474 for (int i = 0; i < cookies.size(); i++) {
475 cookiespec.validate(cookies.get(i), origin);
476 }
477 Assert.assertNotNull(cookies);
487 */
488 @Test
489 public void testValidateDomainLeadingDot() throws Exception {
490 CookieSpec cookiespec = new RFC2965Spec();
491 CookieOrigin origin = new CookieOrigin("www.domain.com", 80, "/", false);
AsymmetricCli.java (http://vt-middleware.googlecode.com/svn/) Java · 277 lines
9 Author: Middleware Services
10 Email: middleware@vt.edu
11 Version: $Revision$
12 Updated: $Date$
147 throws Exception
148 {
149 validateOptions(line);
151 final AsymmetricAlgorithm alg = newAlgorithm(line);
165 throws Exception
166 {
167 validateOptions(line);
169 final AsymmetricAlgorithm alg = newAlgorithm(line);
AbstractSolicitudRegistration.java (https://bitbucket.org/czamorano2/sedecdi.git) Java · 359 lines
5 import javax.validation.constraints.NotNull;
7 import org.hibernate.validator.constraints.Email;
8 import org.jboss.logging.Logger;
129 protected void executePhases() throws RegistrationException, ValidationException {
130 beforeValidation();
131 validate();
132 afterValidation();
179 * @throws RegistrationException
180 */
181 protected void validate() throws ValidationException {
182 registrationPhaseEvent.fire(new RegistrationPhaseEvent(RegistrationPhase.VALIDATION));
183 }
dummy.py
(https://code.google.com/p/mango-py/)
Python · 47 lines
✨ Summary
This Django cache backend implementation provides a dummy cache system, where all cache operations return immediately without storing or retrieving data from a database. It simulates cache behavior by validating keys and making them, but doesn’t actually store or retrieve values. This is useful for testing purposes or when no actual caching is needed.
This Django cache backend implementation provides a dummy cache system, where all cache operations return immediately without storing or retrieving data from a database. It simulates cache behavior by validating keys and making them, but doesn’t actually store or retrieve values. This is useful for testing purposes or when no actual caching is needed.
9 def add(self, key, value, timeout=None, version=None):
10 key = self.make_key(key, version=version)
11 self.validate_key(key)
12 return True
14 def get(self, key, default=None, version=None):
15 key = self.make_key(key, version=version)
16 self.validate_key(key)
17 return default
19 def set(self, key, value, timeout=None, version=None):
20 key = self.make_key(key, version=version)
21 self.validate_key(key)
23 def delete(self, key, version=None):
AbstractTLSSocketFactory.java (http://vt-middleware.googlecode.com/svn/) Java · 372 lines
IgnoreVerifier.java (git://pkgs.fedoraproject.org/isorelax) Java · 93 lines
48 *
49 * @param assignedRules
50 * this Verifier is supposed to validate these rules.
51 * since this IslandVerifier actually does nothing,
52 * all these rules will be reported as satisfied
61 /**
62 * elements in this namespace is validated by this IgnoreVerifier.
63 */
64 private final String namespaceToIgnore;
74 {
75 if( namespaceToIgnore.equals(namespaceURI) )
76 return; // this element is "validated".
78 // try to locate a grammar of this namespace
JettyLogonTestNGTestCase.java (http://aost.googlecode.com/svn/trunk/) Java · 131 lines
User.java (http://spindles.googlecode.com/svn/trunk/) Java · 116 lines
3 import static com.sleepycat.persist.model.Relationship.ONE_TO_ONE;
5 import org.apache.commons.lang.Validate;
7 import spindles.api.util.Util;
32 private String password;
34 private String email;
36 private String comments;
64 }
66 public String getEmail() {
67 return email;
68 }
70 public void setEmail(String email) {
71 this.email = email;
OrganizationStagedModelDataHandlerTest.java (git://github.com/liferay/liferay-portal.git) Java · 315 lines
106 dependentStagedModelsMap, Address.class, address);
108 EmailAddress emailAddress = OrganizationTestUtil.addEmailAddress(
109 _organization);
111 addDependentStagedModel(
112 dependentStagedModelsMap, EmailAddress.class, emailAddress);
114 OrganizationTestUtil.addOrgLabor(_organization);
218 Assert.assertEquals(1, emailAddressDependentStagedModels.size());
220 EmailAddress emailAddress =
221 (EmailAddress)emailAddressDependentStagedModels.get(0);
223 EmailAddress importedEmailAddress =
224 EmailAddressLocalServiceUtil.fetchEmailAddressByUuidAndCompanyId(
225 emailAddress.getUuid(), group.getCompanyId());
RepCurrentUsers.java (https://code.google.com/p/apertum-qsystem/) Java · 87 lines
WInstallStatusPage.java (git://pkgs.fedoraproject.org/pki-console) Java · 106 lines
WebContentsObserverProxy.java (git://github.com/chromium/chromium.git) Java · 308 lines
PersonInfoInternal.java (https://HealthVaultJavaLib.svn.codeplex.com/svn) Java · 392 lines
43 * <element name="contact-email" type="{urn:com.microsoft.wc.types}EmailAddress" minOccurs="0"/>
44 * <element name="contact-email-validated" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
45 * <element name="contact-validation-token" type="{urn:com.microsoft.wc.types}guid" minOccurs="0"/>
46 * <element name="is-eprep-user" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
65 "contactEmail",
66 "contactEmailValidated",
67 "contactValidationToken",
68 "isEprepUser",
223 /**
224 * Gets the value of the contactEmailValidated property.
225 *
226 * @return
243 public void setContactEmailValidated(Boolean value) {
244 this.contactEmailValidated = value;
245 }
KeyboardSequences.as
(http://doomsdayconsole.googlecode.com/svn/trunk/)
ActionScript · 328 lines
✨ Summary
This is a class definition for a KeyboardManager
that manages keyboard input and triggers callbacks when specific key combinations are pressed. It validates keyboard sequences, executes callbacks on successful matches, and provides placeholder functions for custom event handling. The class appears to be designed for use in a larger application or framework.
This is a class definition for a KeyboardManager
that manages keyboard input and triggers callbacks when specific key combinations are pressed. It validates keyboard sequences, executes callbacks on successful matches, and provides placeholder functions for custom event handling. The class appears to be designed for use in a larger application or framework.
This is a class definition for a KeyboardManager
that manages keyboard input and triggers callbacks when specific key combinations are pressed. It validates keyboard sequences, executes callbacks on successful matches, and provides placeholder functions for custom event handling. The class appears to be designed for use in a larger application or framework.
This is a class definition for a KeyboardManager
that manages keyboard input and triggers callbacks when specific key combinations are pressed. It validates keyboard sequences, executes callbacks on successful matches, and provides placeholder functions for custom event handling. The class appears to be designed for use in a larger application or framework.
11 public final class KeyboardSequences implements KeyboardList
12 {
13 // TODO: Add a more robust validator for validateKeyboardSequence
15 /* Constants */
52 * 2. Must satisfy a valid callback.
53 */
54 if (!validateKeyboardSequence(keyCodes))
55 {
56 throw new Error("A keyboard sequence can not have less than " + KEYBOARD_SEQUENCES_MIN_LENGTH + " elements");
172 /**
173 * Validate keyboard sequence
174 * - For the moment only validate on the length.
177 * Returns true or false wether the keyboard sequence is valid or not.
178 */
179 public function validateKeyboardSequence(keyCodes:Array):Boolean
180 {
181 return (keyCodes.length < KEYBOARD_SEQUENCES_MIN_LENGTH ? false : true);
ProvDeserialiser.java (git://github.com/lucmoreau/ProvToolbox.git) Java · 131 lines
64 }
66 public Document validateDocument (String[] schemaFiles, File serialised) throws JAXBException,SAXException, IOException {
67 return validateDocument (schemaFiles, serialised,true);
68 }
70 public Document validateDocument (String[] schemaFiles, File serialised, boolean withCurie)
71 throws JAXBException,SAXException, IOException {
72 SchemaFactory sf = SchemaFactory.newInstance(javax.xml.XMLConstants.W3C_XML_SCHEMA_NS_URI);
106 ProvDeserialiser deserial=ProvDeserialiser.getThreadProvDeserialiser();
107 if ((args==null) || (args.length==0)) {
108 System.out.println("Usage: opmxml-validate <filename> {schemaFiles}*");
109 return;
110 }
115 }
116 try {
117 deserial.validateDocument(schemas,f);
118 System.out.println(args[0] + " IS a valid OPM graph");
119 return ;
FormExampleTestCase.java (http://aost.googlecode.com/svn/trunk/) Java · 115 lines
LdapPoolConfig.java (http://vt-middleware.googlecode.com/svn/) Java · 355 lines
68 /** Whether the ldap object should be validated when returned to the pool. */
69 private boolean validateOnCheckIn = DEFAULT_VALIDATE_ON_CHECKIN;
71 /** Whether the ldap object should be validated when given from the pool. */
74 /** Whether the pool should be validated periodically. */
75 private boolean validatePeriodically = DEFAULT_VALIDATE_PERIODICALLY;
77 /** Time in milliseconds that the validate pool timer should repeat. */
78 private long validateTimerPeriod = DEFAULT_VALIDATE_TIMER_PERIOD;
80 /** Time in milliseconds that the prune pool timer should repeat. */
170 * This returns the validate timer period for the <code>LdapPoolConfig</code>.
171 * Default value is {@link #DEFAULT_VALIDATE_TIMER_PERIOD}. The validate timer
172 * attempts to execute {@link LdapPool#validate()}.
SecondaryResourceFetchThread.java (git://github.com/rhomobile/rhodes.git) Java · 189 lines
LoginServlet.java (http://vt-middleware.googlecode.com/svn/) Java · 216 lines
9 Author: Middleware Services
10 Email: middleware@vt.edu
11 Version: $Revision: 930 $
12 Updated: $Date: 2009-10-26 21:44:26 +0100 (Mon, 26 Oct 2009) $
157 }
158 try {
159 // invalidate existing session
160 HttpSession session = request.getSession(false);
161 if (session != null) {
162 session.invalidate();
163 }
164 session = request.getSession(true);
UsernameRule.java (http://vt-middleware.googlecode.com/svn/) Java · 144 lines
UsernameRule.java (http://vt-middleware.googlecode.com/svn/) Java · 144 lines
Annotation.java (git://pkgs.fedoraproject.org/castor) Java · 146 lines
ObjectFactory.java (git://pkgs.fedoraproject.org/apache-scout) Java · 1667 lines
43 private final static QName _IdentifierBag_QNAME = new QName("urn:uddi-org:api_v2", "identifierBag");
44 private final static QName _SaveService_QNAME = new QName("urn:uddi-org:api_v2", "save_service");
45 private final static QName _ValidateValues_QNAME = new QName("urn:uddi-org:api_v2", "validate_values");
46 private final static QName _Contacts_QNAME = new QName("urn:uddi-org:api_v2", "contacts");
47 private final static QName _Phone_QNAME = new QName("urn:uddi-org:api_v2", "phone");
95 private final static QName _BindingTemplates_QNAME = new QName("urn:uddi-org:api_v2", "bindingTemplates");
96 private final static QName _DeleteTModel_QNAME = new QName("urn:uddi-org:api_v2", "delete_tModel");
97 private final static QName _Email_QNAME = new QName("urn:uddi-org:api_v2", "email");
98 private final static QName _TModelInstanceInfo_QNAME = new QName("urn:uddi-org:api_v2", "tModelInstanceInfo");
99 private final static QName _BusinessEntity_QNAME = new QName("urn:uddi-org:api_v2", "businessEntity");
308 *
309 */
310 public ValidateValues createValidateValues() {
311 return new ValidateValues();
905 @XmlElementDecl(namespace = "urn:uddi-org:api_v2", name = "validate_values")
906 public JAXBElement<ValidateValues> createValidateValues(ValidateValues value) {
907 return new JAXBElement<ValidateValues>(_ValidateValues_QNAME, ValidateValues.class, null, value);
Model.java (git://pkgs.fedoraproject.org/modello) Java · 466 lines
MqttDataTypes.java (git://github.com/eclipse/paho.mqtt.java.git) Java · 253 lines
22 }
24 public static void validateTwoByteInt(Integer value) throws IllegalArgumentException {
25 if (value == null) {
26 return;
33 }
35 public static void validateFourByteInt(Long value) throws IllegalArgumentException {
36 if (value == null) {
37 return;
44 }
46 public static void validateVariableByteInt(int value) throws IllegalArgumentException {
47 if (value >= 0 && value <= VARIABLE_BYTE_INT_MAX) {
48 return;
EmailAddressValidatorFactoryTest.java (git://github.com/liferay/liferay-portal.git) Java · 54 lines
40 public void testValidate() {
41 EmailAddressValidator emailAddressValidator =
42 EmailAddressValidatorFactory.getInstance();
44 Assert.assertTrue(
45 emailAddressValidator.validate(
46 1, "TestEmailAddressValidator@liferay-test.com"));
47 Assert.assertFalse(
48 emailAddressValidator.validate(
49 2, "TestEmailAddressValidator@liferay-test.com"));
50 Assert.assertFalse(
51 emailAddressValidator.validate(1, "not@liferay-test.com"));
52 }
RadioInfoPanel.java (https://code.google.com/p/bjj/) Java · 533 lines
PodcastInfoPanel.java (https://code.google.com/p/bjj/) Java · 678 lines
PolicyIndexInvocationHandler.java (https://github.com/fcrepo/fcrepo.git) Java · 379 lines
lluuid.h
(https://bitbucket.org/lindenlab/viewer-beta/)
C++ Header · 332 lines
✨ Summary
This C++ header file defines a class LLUUID
for representing unique identifiers, typically used in distributed systems and databases. It provides constructors, assignment operators, comparison operators, and utility functions for manipulating UUIDs. The class also includes helper structures and sub-classes for ordering and storing UUIDs in containers.
This C++ header file defines a class LLUUID
for representing unique identifiers, typically used in distributed systems and databases. It provides constructors, assignment operators, comparison operators, and utility functions for manipulating UUIDs. The class also includes helper structures and sub-classes for ordering and storing UUIDs in containers.