1/*2 * Licensed to the Apache Software Foundation (ASF) under one3 * or more contributor license agreements. See the NOTICE file4 * distributed with this work for additional information5 * regarding copyright ownership. The ASF licenses this file6 * to you under the Apache License, Version 2.0 (the7 * "License"); you may not use this file except in compliance8 * with the License. You may obtain a copy of the License at9 *10 * http://www.apache.org/licenses/LICENSE-2.011 *12 * Unless required by applicable law or agreed to in writing,13 * software distributed under the License is distributed on an14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY15 * KIND, either express or implied. See the License for the16 * specific language governing permissions and limitations17 * under the License.18 */19package org.apache.chemistry.opencmis.client.runtime;
2021import java.io.Serializable;
2223import org.apache.chemistry.opencmis.client.api.ObjectId;
2425/**26 * Implementation of <code>ObjectId</code>.27 */28publicclassObjectIdImplimplements ObjectId, Serializable {
2930privatestaticfinallong serialVersionUID = 1L;
3132private String id;
3334/**35 * Constructor.36 */37publicObjectIdImpl(String id) {
38if (id == null || id.length() == 0) {
39thrownew IllegalArgumentException("Id must be set!");
40 }
4142this.id = id;
43 }
4445 @Override
46public String getId() {
47return id;
48 }
4950/**51 * Sets the id.52 */53publicvoid setId(String id) {
54if (id == null || id.length() == 0) {
55thrownew IllegalArgumentException("Id must be set!");
56 }
5758this.id = id;
59 }
6061 @Override
62public String toString() {
63return"Object Id: " + id;
64 }
6566 @Override
67publicint hashCode() {
68return id.hashCode();
69 }
7071 @Override
72publicboolean equals(Object obj) {
73if (this == obj) {
74returntrue;
75 }
7677if (obj == null || getClass() != obj.getClass()) {
78return false;
79 }
8081return id.equals(((ObjectIdImpl) obj).id);
82 }
83 }