Searched refs:QueryElement (Results 1 - 25 of 32) sorted by relevance

12

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/log/
H A DQueryElement.java25 * $Id: QueryElement.java,v 1.3 2008/06/25 05:43:35 qcheng Exp $
38 public class QueryElement { class
111 public QueryElement(String fld, String val, int rel) method in class:QueryElement
115 if ((rel >= QueryElement.MIN_REL) && (rel <= QueryElement.MAX_REL)) {
119 "rel param should be >= QueryElement.GT and <= QueryElement.EW");
127 public QueryElement() { method in class:QueryElement
130 this.relation = QueryElement.EQ;
190 if ((value >= QueryElement
[all...]
H A DLogQuery.java73 private ArrayList queries; /* list of QueryElement object */
182 public void addQuery(QueryElement qryElement) {
/forgerock/openam/openam-core/src/main/java/com/sun/identity/log/
H A DQueryElement.java25 * $Id: QueryElement.java,v 1.3 2008/06/25 05:43:35 qcheng Exp $
38 public class QueryElement { class
111 public QueryElement(String fld, String val, int rel) method in class:QueryElement
115 if ((rel >= QueryElement.MIN_REL) && (rel <= QueryElement.MAX_REL)) {
119 "rel param should be >= QueryElement.GT and <= QueryElement.EW");
127 public QueryElement() { method in class:QueryElement
130 this.relation = QueryElement.EQ;
190 if ((value >= QueryElement
[all...]
H A DLogQuery.java73 private ArrayList queries; /* list of QueryElement object */
182 public void addQuery(QueryElement qryElement) {
/forgerock/openam-v13/openam-schema/openam-liberty-schema/src/main/java/com/sun/identity/liberty/ws/disco/jaxb/
H A DQueryElement.java21 public interface QueryElement interface in inherits:javax.xml.bind.Element,com.sun.identity.liberty.ws.disco.jaxb.QueryType
/forgerock/openam-v13/openam-schema/openam-liberty-schema/src/main/java/com/sun/identity/liberty/ws/idpp/jaxb/
H A DQueryElement.java21 public interface QueryElement interface in inherits:javax.xml.bind.Element,com.sun.identity.liberty.ws.idpp.jaxb.QueryType
/forgerock/openam/openam-schema/openam-liberty-schema/src/main/java/com/sun/identity/liberty/ws/disco/jaxb/
H A DQueryElement.java21 public interface QueryElement interface in inherits:javax.xml.bind.Element,com.sun.identity.liberty.ws.disco.jaxb.QueryType
/forgerock/openam/openam-schema/openam-liberty-schema/src/main/java/com/sun/identity/liberty/ws/idpp/jaxb/
H A DQueryElement.java21 public interface QueryElement interface in inherits:javax.xml.bind.Element,com.sun.identity.liberty.ws.idpp.jaxb.QueryType
/forgerock/openam-v13/openam-schema/openam-liberty-schema/src/main/java/com/sun/identity/liberty/ws/common/jaxb/protocol/
H A DQueryElement.java21 public interface QueryElement interface in inherits:javax.xml.bind.Element,com.sun.identity.liberty.ws.common.jaxb.protocol.QueryAbstractType
H A DObjectFactory.java58 defaultImplementations.put((com.sun.identity.liberty.ws.common.jaxb.protocol.QueryElement.class), "com.sun.identity.liberty.ws.common.jaxb.protocol.impl.QueryElementImpl");
69 rootTagMap.put(new javax.xml.namespace.QName("urn:oasis:names:tc:SAML:1.0:protocol", "Query"), (com.sun.identity.liberty.ws.common.jaxb.protocol.QueryElement.class));
439 * Create an instance of QueryElement
444 public com.sun.identity.liberty.ws.common.jaxb.protocol.QueryElement createQueryElement()
/forgerock/openam/openam-schema/openam-liberty-schema/src/main/java/com/sun/identity/liberty/ws/common/jaxb/protocol/
H A DQueryElement.java21 public interface QueryElement interface in inherits:javax.xml.bind.Element,com.sun.identity.liberty.ws.common.jaxb.protocol.QueryAbstractType
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/log/handlers/
H A DLogReadDBHandler.java50 import com.sun.identity.log.QueryElement;
1455 QueryElement qe;
1472 qe = (QueryElement)queries.get(i);
1483 case QueryElement.GT:
1486 case QueryElement.LT:
1489 case QueryElement.EQ:
1492 case QueryElement.NE:
1495 case QueryElement.GE:
1498 case QueryElement.LE:
1501 case QueryElement
[all...]
H A DLogReadFileHandler.java44 import com.sun.identity.log.QueryElement;
578 isMatch = doMatch(recordToBeQueried, (QueryElement) queries.get(i));
596 private boolean doMatch(String[] record, QueryElement elem) {
617 case QueryElement.CN: // contains
619 case QueryElement.SW: // starts with
621 case QueryElement.EW: // ends with
628 case QueryElement.EQ:
633 case QueryElement.LT:
638 case QueryElement.GT:
643 case QueryElement
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/log/handlers/
H A DLogReadDBHandler.java50 import com.sun.identity.log.QueryElement;
1455 QueryElement qe;
1472 qe = (QueryElement)queries.get(i);
1483 case QueryElement.GT:
1486 case QueryElement.LT:
1489 case QueryElement.EQ:
1492 case QueryElement.NE:
1495 case QueryElement.GE:
1498 case QueryElement.LE:
1501 case QueryElement
[all...]
H A DLogReadFileHandler.java44 import com.sun.identity.log.QueryElement;
578 isMatch = doMatch(recordToBeQueried, (QueryElement) queries.get(i));
596 private boolean doMatch(String[] record, QueryElement elem) {
617 case QueryElement.CN: // contains
619 case QueryElement.SW: // starts with
621 case QueryElement.EW: // ends with
628 case QueryElement.EQ:
633 case QueryElement.LT:
638 case QueryElement.GT:
643 case QueryElement
[all...]
/forgerock/openam-v13/openam-test/src/test/java/com/sun/identity/log/
H A DAMLogTest.java44 import com.sun.identity.log.QueryElement;
108 * LogQuery and QueryElement classes.
397 * use lq.addQuery(QueryElement qryElement) to
399 * QueryElement(String fld, String val, int rel)
403 * QueryElement()
406 * relation = QueryElement.EQ
408 * QueryElement.setFieldName(String field)
409 * QueryElement.setFieldValue(String value)
410 * QueryElement.setRelation(int value)
507 QueryElement q
[all...]
/forgerock/openam/openam-test/src/test/java/com/sun/identity/log/
H A DAMLogTest.java44 import com.sun.identity.log.QueryElement;
108 * LogQuery and QueryElement classes.
397 * use lq.addQuery(QueryElement qryElement) to
399 * QueryElement(String fld, String val, int rel)
403 * QueryElement()
406 * relation = QueryElement.EQ
408 * QueryElement.setFieldName(String field)
409 * QueryElement.setFieldValue(String value)
410 * QueryElement.setRelation(int value)
507 QueryElement q
[all...]
/forgerock/openam-v13/openam-schema/openam-liberty-schema/src/main/java/com/sun/identity/liberty/ws/common/jaxb/protocol/impl/
H A DQueryElementImpl.java13 implements com.sun.identity.liberty.ws.common.jaxb.protocol.QueryElement, com.sun.xml.bind.RIElement, com.sun.xml.bind.JAXBObject, com.sun.identity.federation.jaxb.entityconfig.impl.runtime.UnmarshallableObject, com.sun.identity.federation.jaxb.entityconfig.impl.runtime.XMLSerializable, com.sun.identity.federation.jaxb.entityconfig.impl.runtime.ValidatableObject
20 return (com.sun.identity.liberty.ws.common.jaxb.protocol.QueryElement.class);
58 return (com.sun.identity.liberty.ws.common.jaxb.protocol.QueryElement.class);
/forgerock/openam/openam-schema/openam-liberty-schema/src/main/java/com/sun/identity/liberty/ws/common/jaxb/protocol/impl/
H A DQueryElementImpl.java13 implements com.sun.identity.liberty.ws.common.jaxb.protocol.QueryElement, com.sun.xml.bind.RIElement, com.sun.xml.bind.JAXBObject, com.sun.identity.federation.jaxb.entityconfig.impl.runtime.UnmarshallableObject, com.sun.identity.federation.jaxb.entityconfig.impl.runtime.XMLSerializable, com.sun.identity.federation.jaxb.entityconfig.impl.runtime.ValidatableObject
20 return (com.sun.identity.liberty.ws.common.jaxb.protocol.QueryElement.class);
58 return (com.sun.identity.liberty.ws.common.jaxb.protocol.QueryElement.class);
/forgerock/openam-v13/openam-schema/openam-liberty-schema/src/main/java/com/sun/identity/liberty/ws/disco/jaxb/impl/
H A DQueryElementImpl.java13 implements com.sun.identity.liberty.ws.disco.jaxb.QueryElement, com.sun.xml.bind.RIElement, com.sun.xml.bind.JAXBObject, com.sun.identity.federation.jaxb.entityconfig.impl.runtime.UnmarshallableObject, com.sun.identity.federation.jaxb.entityconfig.impl.runtime.XMLSerializable, com.sun.identity.federation.jaxb.entityconfig.impl.runtime.ValidatableObject
20 return (com.sun.identity.liberty.ws.disco.jaxb.QueryElement.class);
58 return (com.sun.identity.liberty.ws.disco.jaxb.QueryElement.class);
/forgerock/openam-v13/openam-schema/openam-liberty-schema/src/main/java/com/sun/identity/liberty/ws/idpp/jaxb/impl/
H A DQueryElementImpl.java13 implements com.sun.identity.liberty.ws.idpp.jaxb.QueryElement, com.sun.xml.bind.RIElement, com.sun.xml.bind.JAXBObject, com.sun.identity.federation.jaxb.entityconfig.impl.runtime.UnmarshallableObject, com.sun.identity.federation.jaxb.entityconfig.impl.runtime.XMLSerializable, com.sun.identity.federation.jaxb.entityconfig.impl.runtime.ValidatableObject
20 return (com.sun.identity.liberty.ws.idpp.jaxb.QueryElement.class);
58 return (com.sun.identity.liberty.ws.idpp.jaxb.QueryElement.class);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/idpp/common/
H A DIDPPUtils.java46 import com.sun.identity.liberty.ws.idpp.jaxb.QueryElement;
184 * @return QueryElement JAXB object.
186 public static QueryElement createQueryElement(List queryExpressions,
190 QueryElement query = idppFactory.createQueryElement();
/forgerock/openam/openam-schema/openam-liberty-schema/src/main/java/com/sun/identity/liberty/ws/disco/jaxb/impl/
H A DQueryElementImpl.java13 implements com.sun.identity.liberty.ws.disco.jaxb.QueryElement, com.sun.xml.bind.RIElement, com.sun.xml.bind.JAXBObject, com.sun.identity.federation.jaxb.entityconfig.impl.runtime.UnmarshallableObject, com.sun.identity.federation.jaxb.entityconfig.impl.runtime.XMLSerializable, com.sun.identity.federation.jaxb.entityconfig.impl.runtime.ValidatableObject
20 return (com.sun.identity.liberty.ws.disco.jaxb.QueryElement.class);
58 return (com.sun.identity.liberty.ws.disco.jaxb.QueryElement.class);
/forgerock/openam/openam-schema/openam-liberty-schema/src/main/java/com/sun/identity/liberty/ws/idpp/jaxb/impl/
H A DQueryElementImpl.java13 implements com.sun.identity.liberty.ws.idpp.jaxb.QueryElement, com.sun.xml.bind.RIElement, com.sun.xml.bind.JAXBObject, com.sun.identity.federation.jaxb.entityconfig.impl.runtime.UnmarshallableObject, com.sun.identity.federation.jaxb.entityconfig.impl.runtime.XMLSerializable, com.sun.identity.federation.jaxb.entityconfig.impl.runtime.ValidatableObject
20 return (com.sun.identity.liberty.ws.idpp.jaxb.QueryElement.class);
58 return (com.sun.identity.liberty.ws.idpp.jaxb.QueryElement.class);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/idpp/common/
H A DIDPPUtils.java46 import com.sun.identity.liberty.ws.idpp.jaxb.QueryElement;
184 * @return QueryElement JAXB object.
186 public static QueryElement createQueryElement(List queryExpressions,
190 QueryElement query = idppFactory.createQueryElement();

Completed in 61 milliseconds

12