Searched defs:op (Results 1 - 25 of 265) sorted by relevance

1234567891011

/forgerock/opendj-b2.6/src/server/org/opends/server/replication/protocol/
H A DOperationContext.java89 * @param op The operation.
94 public static ChangeNumber getChangeNumber(Operation op) argument
96 OperationContext ctx = (OperationContext)op.getAttachment(SYNCHROCONTEXT);
108 * @param op The operation.
113 public static ChangeNumber getChangeNumber(PluginOperation op) argument
115 OperationContext ctx = (OperationContext)op.getAttachment(SYNCHROCONTEXT);
/forgerock/opendj2/src/server/org/opends/server/authorization/dseecompat/
H A DEnumTargetOperator.java58 * @param op The operator name to check for.
61 public boolean isOperator(String op){ argument
62 return op.equalsIgnoreCase(operator);
67 * @param op The operator type name to create.
71 public static EnumTargetOperator createOperator(String op){ argument
72 if (op != null){
74 if (t.isOperator(op)){
H A DExtOp.java47 private EnumTargetOperator op = EnumTargetOperator.EQUALITY; field in class:ExtOp
52 * @param op The operator of the extop expression (=, !=).
56 private ExtOp(EnumTargetOperator op, Set<String> extOpOIDs) argument
59 this.op=op;
95 if(op.equals(EnumTargetOperator.NOT_EQUALITY))
H A DTargetControl.java47 private EnumTargetOperator op = EnumTargetOperator.EQUALITY; field in class:TargetControl
52 * @param op The operator of the targetcontrol expression (=, !=).
56 private TargetControl(EnumTargetOperator op, Set<String> controlOIDS) argument
59 this.op=op;
95 if(op.equals(EnumTargetOperator.NOT_EQUALITY))
H A DTargetFilter.java44 private EnumTargetOperator op = EnumTargetOperator.EQUALITY; field in class:TargetFilter
53 * @param op The operation of the targetfilter expression (=, !=)
56 private TargetFilter(EnumTargetOperator op, SearchFilter filter) { argument
57 this.op=op;
63 * @param op The operation enumeration of the expression.
68 public static TargetFilter decode(EnumTargetOperator op, String expr) argument
79 return new TargetFilter(op, filter);
90 if(op.equals(EnumTargetOperator.NOT_EQUALITY))
/forgerock/opendj2/src/server/org/opends/server/core/
H A DBoundedWorkQueueStrategy.java121 * @param op
128 protected boolean tryEnqueueRequest(Operation op) throws DirectoryException argument
130 return DirectoryServer.tryEnqueueRequest(op);
/forgerock/opendj-b2.6/src/server/org/opends/server/authorization/dseecompat/
H A DEnumTargetOperator.java59 * @param op The operator name to check for.
62 public boolean isOperator(String op){ argument
63 return op.equalsIgnoreCase(operator);
68 * @param op The operator type name to create.
72 public static EnumTargetOperator createOperator(String op){ argument
73 if (op != null){
75 if (t.isOperator(op)){
H A DExtOp.java51 private EnumTargetOperator op = EnumTargetOperator.EQUALITY; field in class:ExtOp
56 * @param op The operator of the extop expression (=, !=).
60 private ExtOp(EnumTargetOperator op, HashSet<String> extOpOIDs) { argument
62 this.op=op;
100 if(op.equals(EnumTargetOperator.NOT_EQUALITY))
H A DTargetControl.java49 private EnumTargetOperator op = EnumTargetOperator.EQUALITY; field in class:TargetControl
54 * @param op The operator of the targetcontrol expression (=, !=).
58 private TargetControl(EnumTargetOperator op, HashSet<String> controlOIDS) { argument
60 this.op=op;
97 if(op.equals(EnumTargetOperator.NOT_EQUALITY))
H A DTargetFilter.java45 private EnumTargetOperator op = EnumTargetOperator.EQUALITY; field in class:TargetFilter
54 * @param op The operation of the targetfilter expression (=, !=)
57 private TargetFilter(EnumTargetOperator op, SearchFilter filter) { argument
58 this.op=op;
64 * @param op The operation enumeration of the expression.
69 public static TargetFilter decode(EnumTargetOperator op, String expr) argument
80 return new TargetFilter(op, filter);
91 if(op.equals(EnumTargetOperator.NOT_EQUALITY))
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/core/
H A DTestChangeNotificationListener.java86 public PostResponse doPostResponse(PostResponseAddOperation op) argument
88 if (op.getResultCode() == ResultCode.SUCCESS)
97 public PostResponse doPostResponse(PostResponseDeleteOperation op) argument
99 if (op.getResultCode() == ResultCode.SUCCESS)
108 public PostResponse doPostResponse(PostResponseModifyOperation op) argument
110 if (op.getResultCode() == ResultCode.SUCCESS)
119 public PostResponse doPostResponse(PostResponseModifyDNOperation op) argument
121 if (op.getResultCode() == ResultCode.SUCCESS)
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/protocols/ldap/
H A DLdapTestCase.java89 * @param op The op.
92 static void toString(ProtocolOp op) throws Exception argument
95 op.toString(sb);
96 op.toString(sb, 1);
/forgerock/opendj2/src/server/org/opends/server/replication/protocol/
H A DOperationContext.java88 * @param op The operation.
93 public static CSN getCSN(Operation op) argument
95 OperationContext ctx = (OperationContext)op.getAttachment(SYNCHROCONTEXT);
107 * @param op The operation.
112 public static CSN getCSN(PluginOperation op) argument
114 OperationContext ctx = (OperationContext)op.getAttachment(SYNCHROCONTEXT);
/forgerock/opendj2.6.2/src/server/org/opends/server/authorization/dseecompat/
H A DEnumTargetOperator.java59 * @param op The operator name to check for.
62 public boolean isOperator(String op){ argument
63 return op.equalsIgnoreCase(operator);
68 * @param op The operator type name to create.
72 public static EnumTargetOperator createOperator(String op){ argument
73 if (op != null){
75 if (t.isOperator(op)){
H A DExtOp.java51 private EnumTargetOperator op = EnumTargetOperator.EQUALITY; field in class:ExtOp
56 * @param op The operator of the extop expression (=, !=).
60 private ExtOp(EnumTargetOperator op, HashSet<String> extOpOIDs) { argument
62 this.op=op;
100 if(op.equals(EnumTargetOperator.NOT_EQUALITY))
H A DTargetControl.java49 private EnumTargetOperator op = EnumTargetOperator.EQUALITY; field in class:TargetControl
54 * @param op The operator of the targetcontrol expression (=, !=).
58 private TargetControl(EnumTargetOperator op, HashSet<String> controlOIDS) { argument
60 this.op=op;
97 if(op.equals(EnumTargetOperator.NOT_EQUALITY))
H A DTargetFilter.java45 private EnumTargetOperator op = EnumTargetOperator.EQUALITY; field in class:TargetFilter
54 * @param op The operation of the targetfilter expression (=, !=)
57 private TargetFilter(EnumTargetOperator op, SearchFilter filter) { argument
58 this.op=op;
64 * @param op The operation enumeration of the expression.
69 public static TargetFilter decode(EnumTargetOperator op, String expr) argument
80 return new TargetFilter(op, filter);
91 if(op.equals(EnumTargetOperator.NOT_EQUALITY))
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/protocol/
H A DOperationContext.java89 * @param op The operation.
94 public static ChangeNumber getChangeNumber(Operation op) argument
96 OperationContext ctx = (OperationContext)op.getAttachment(SYNCHROCONTEXT);
108 * @param op The operation.
113 public static ChangeNumber getChangeNumber(PluginOperation op) argument
115 OperationContext ctx = (OperationContext)op.getAttachment(SYNCHROCONTEXT);
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/core/
H A DTestChangeNotificationListener.java86 public PostResponse doPostResponse(PostResponseAddOperation op) argument
88 if (op.getResultCode() == ResultCode.SUCCESS)
97 public PostResponse doPostResponse(PostResponseDeleteOperation op) argument
99 if (op.getResultCode() == ResultCode.SUCCESS)
108 public PostResponse doPostResponse(PostResponseModifyOperation op) argument
110 if (op.getResultCode() == ResultCode.SUCCESS)
119 public PostResponse doPostResponse(PostResponseModifyDNOperation op) argument
121 if (op.getResultCode() == ResultCode.SUCCESS)
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/protocols/ldap/
H A DLdapTestCase.java89 * @param op The op.
92 static void toString(ProtocolOp op) throws Exception argument
95 op.toString(sb);
96 op.toString(sb, 1);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/protocol/
H A DOperationContext.java89 * @param op The operation.
94 public static ChangeNumber getChangeNumber(Operation op) argument
96 OperationContext ctx = (OperationContext)op.getAttachment(SYNCHROCONTEXT);
108 * @param op The operation.
113 public static ChangeNumber getChangeNumber(PluginOperation op) argument
115 OperationContext ctx = (OperationContext)op.getAttachment(SYNCHROCONTEXT);
/forgerock/opendj2-hg/src/server/org/opends/server/authorization/dseecompat/
H A DEnumTargetOperator.java58 * @param op The operator name to check for.
61 public boolean isOperator(String op){ argument
62 return op.equalsIgnoreCase(operator);
67 * @param op The operator type name to create.
71 public static EnumTargetOperator createOperator(String op){ argument
72 if (op != null){
74 if (t.isOperator(op)){
H A DExtOp.java47 private EnumTargetOperator op = EnumTargetOperator.EQUALITY; field in class:ExtOp
52 * @param op The operator of the extop expression (=, !=).
56 private ExtOp(EnumTargetOperator op, Set<String> extOpOIDs) argument
59 this.op=op;
95 if(op.equals(EnumTargetOperator.NOT_EQUALITY))
H A DTargetControl.java47 private EnumTargetOperator op = EnumTargetOperator.EQUALITY; field in class:TargetControl
52 * @param op The operator of the targetcontrol expression (=, !=).
56 private TargetControl(EnumTargetOperator op, Set<String> controlOIDS) argument
59 this.op=op;
95 if(op.equals(EnumTargetOperator.NOT_EQUALITY))
H A DTargetFilter.java44 private EnumTargetOperator op = EnumTargetOperator.EQUALITY; field in class:TargetFilter
53 * @param op The operation of the targetfilter expression (=, !=)
56 private TargetFilter(EnumTargetOperator op, SearchFilter filter) { argument
57 this.op=op;
63 * @param op The operation enumeration of the expression.
68 public static TargetFilter decode(EnumTargetOperator op, String expr) argument
79 return new TargetFilter(op, filter);
90 if(op.equals(EnumTargetOperator.NOT_EQUALITY))

Completed in 951 milliseconds

1234567891011