org.apache.olingo.commons.api.edm.provider.CsdlAnnotation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odata-v4-lib Show documentation
Show all versions of odata-v4-lib Show documentation
Repackaged OData V4 Olingo Library
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.olingo.commons.api.edm.provider;
import java.util.ArrayList;
import java.util.List;
import org.apache.olingo.commons.api.edm.provider.annotation.CsdlExpression;
/**
* Represents a CSDL annotation
*/
public class CsdlAnnotation extends CsdlAbstractEdmItem implements CsdlAnnotatable {
private String term;
private String qualifier;
private List annotations = new ArrayList();
private CsdlExpression annotationExpression;
/**
* Returns the annotated expression
* @return expression annotated expression
*/
public CsdlExpression getExpression() {
return annotationExpression;
}
/**
* Sets the annotated expression
* @param annotationExpression annotated expression
*/
public CsdlAnnotation setExpression(final CsdlExpression annotationExpression) {
this.annotationExpression = annotationExpression;
return this;
}
/**
* Returns the annotated term
* @return Term term
*/
public String getTerm() {
return term;
}
/**
* Sets the annotated expression
* @param term term
* @return this instance
*/
public CsdlAnnotation setTerm(final String term) {
this.term = term;
return this;
}
/**
* Returns the annotated qualifier
* @return annotated qualifier
*/
public String getQualifier() {
return qualifier;
}
/**
* Sets the annotated qualifier
* @param qualifier annotated qualifier
* @return this instance
*/
public CsdlAnnotation setQualifier(final String qualifier) {
this.qualifier = qualifier;
return this;
}
/**
* Sets a list of annotations
* @param annotations list of annotations
* @return this instance
*/
public CsdlAnnotation setAnnotations(final List annotations) {
this.annotations = annotations;
return this;
}
@Override
public List getAnnotations() {
return annotations;
}
@Override
public boolean equals (Object obj) {
if (obj == null) {
return false;
}
if (!(obj instanceof CsdlAnnotation)) {
return false;
}
CsdlAnnotation csdlAnnot = (CsdlAnnotation) obj;
return (this.getTerm() == null ? csdlAnnot.getTerm() == null :
this.getTerm().equals(csdlAnnot.getTerm()))
&& (this.getQualifier() == null ? csdlAnnot.getQualifier() == null :
this.getQualifier().equals(csdlAnnot.getQualifier()))
&& (this.getExpression() == null ? csdlAnnot.getExpression() == null :
this.getExpression().equals(csdlAnnot.getExpression()))
&& (this.getAnnotations() == null ? csdlAnnot.getAnnotations() == null :
checkAnnotations(csdlAnnot.getAnnotations()));
}
private boolean checkAnnotations(List csdlAnnots) {
if (csdlAnnots == null) {
return false;
}
if (this.getAnnotations().size() == csdlAnnots.size()) {
for (int i = 0; i < this.getAnnotations().size(); i++) {
if (!this.getAnnotations().get(i).equals(csdlAnnots.get(i))) {
return false;
}
}
} else {
return false;
}
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((term == null) ? 0 : term.hashCode());
result = prime * result + ((qualifier == null) ? 0 : qualifier.hashCode());
result = prime * result + ((annotationExpression == null) ? 0 :
annotationExpression.hashCode());
result = prime * result + ((annotations == null) ? 0 : annotations.hashCode());
return result;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy