01: /**
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */package org.apache.solr.update;
17:
18: import org.apache.lucene.document.Document;
19:
20: /**
21: * @author yonik
22: * @version $Id: AddUpdateCommand.java 472574 2006-11-08 18:25:52Z yonik $
23: */
24: public class AddUpdateCommand extends UpdateCommand {
25: // optional id in "internal" indexed form... if it is needed and not supplied,
26: // it will be obtained from the doc.
27: public String indexedId;
28:
29: public Document doc;
30: public boolean allowDups;
31: public boolean overwritePending;
32: public boolean overwriteCommitted;
33:
34: public AddUpdateCommand() {
35: super ("add");
36: }
37:
38: public String toString() {
39: StringBuilder sb = new StringBuilder(commandName);
40: sb.append(':');
41: if (indexedId != null)
42: sb.append("id=").append(indexedId);
43: sb.append(",allowDups=").append(allowDups);
44: sb.append(",overwritePending=").append(overwritePending);
45: sb.append(",overwriteCommitted=").append(overwriteCommitted);
46: return sb.toString();
47: }
48: }
|