blob: 1af98dfc4911a3ed3fcc7db956cd656abd96f071 [file] [log] [blame]
/*
* 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.server.api.edmx;
import java.net.URI;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
/**
* POJO for Edmx Reference.
*/
public class EdmxReference {
private final URI uri;
private final List<EdmxReferenceInclude> edmxIncludes;
private final List<EdmxReferenceIncludeAnnotation> edmxIncludeAnnotations;
/**
* Create reference with given uri
*
* @param uri of reference
*/
public EdmxReference(URI uri) {
this.uri = uri;
edmxIncludes = new ArrayList<EdmxReferenceInclude>();
edmxIncludeAnnotations = new ArrayList<EdmxReferenceIncludeAnnotation>();
}
/**
* Get URI for the reference
* @return uri for the reference
*/
public URI getUri() {
return uri;
}
/**
* edmx:Include elements that specify the schemas to include from the target document
*
* @return list of {@link EdmxReferenceInclude} in reference or null if none specified
*/
public List<EdmxReferenceInclude> getIncludes() {
return Collections.unmodifiableList(edmxIncludes);
}
/**
* Add include element to current list.
*
* @param include to be added
* @return this EdmxReference object
*/
public EdmxReference addInclude(EdmxReferenceInclude include) {
edmxIncludes.add(include);
return this;
}
/**
* edmx:IncludeAnnotations elements that specify the annotations to include from the target document.
*
* @return List of {@link EdmxReferenceIncludeAnnotation} or null if none specified
*/
public List<EdmxReferenceIncludeAnnotation> getIncludeAnnotations() {
return Collections.unmodifiableList(edmxIncludeAnnotations);
}
/**
* Add include annotation element to current list.
*
* @param includeAnnotation to be added
* @return this EdmxReference object
*/
public EdmxReference addIncludeAnnotation(EdmxReferenceIncludeAnnotation includeAnnotation) {
edmxIncludeAnnotations.add(includeAnnotation);
return this;
}
}