org.apache.olingo.odata2.api.edm.provider.CustomizableFeedMappings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odata-v2-lib Show documentation
Show all versions of odata-v2-lib Show documentation
Repackaged OData V2 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.odata2.api.edm.provider;
import org.apache.olingo.odata2.api.edm.EdmContentKind;
import org.apache.olingo.odata2.api.edm.EdmCustomizableFeedMappings;
/**
* Objects of this class represent customizable feed mappings.
*
*/
public class CustomizableFeedMappings implements EdmCustomizableFeedMappings {
private Boolean fcKeepInContent;
private EdmContentKind fcContentKind;
private String fcNsPrefix;
private String fcNsUri;
private String fcSourcePath;
private String fcTargetPath;
@Override
public Boolean isFcKeepInContent() {
return fcKeepInContent;
}
@Override
public EdmContentKind getFcContentKind() {
return fcContentKind;
}
@Override
public String getFcNsPrefix() {
return fcNsPrefix;
}
@Override
public String getFcNsUri() {
return fcNsUri;
}
@Override
public String getFcSourcePath() {
return fcSourcePath;
}
@Override
public String getFcTargetPath() {
return fcTargetPath;
}
/**
* @return boolean
*/
public Boolean getFcKeepInContent() {
return fcKeepInContent;
}
/**
* Sets if this is kept in content.
* @param fcKeepInContent
* @return {@link CustomizableFeedMappings} for method chaining
*/
public CustomizableFeedMappings setFcKeepInContent(final Boolean fcKeepInContent) {
this.fcKeepInContent = fcKeepInContent;
return this;
}
/**
* Sets the {@link EdmContentKind}.
* @param fcContentKind
* @return {@link CustomizableFeedMappings} for method chaining
*/
public CustomizableFeedMappings setFcContentKind(final EdmContentKind fcContentKind) {
this.fcContentKind = fcContentKind;
return this;
}
/**
* Sets the prefix.
* @param fcNsPrefix
* @return {@link CustomizableFeedMappings} for method chaining
*/
public CustomizableFeedMappings setFcNsPrefix(final String fcNsPrefix) {
this.fcNsPrefix = fcNsPrefix;
return this;
}
/**
* Sets the Uri.
* @param fcNsUri
* @return {@link CustomizableFeedMappings} for method chaining
*/
public CustomizableFeedMappings setFcNsUri(final String fcNsUri) {
this.fcNsUri = fcNsUri;
return this;
}
/**
* Sets the source path.
* @param fcSourcePath
* @return {@link CustomizableFeedMappings} for method chaining
*/
public CustomizableFeedMappings setFcSourcePath(final String fcSourcePath) {
this.fcSourcePath = fcSourcePath;
return this;
}
/**
* Sets the target path.
* For standard Atom elements, constants are available in {@link org.apache.olingo.odata2.api.edm.EdmTargetPath
* EdmTargetPath}.
* @param fcTargetPath
* @return {@link CustomizableFeedMappings} for method chaining
*/
public CustomizableFeedMappings setFcTargetPath(final String fcTargetPath) {
this.fcTargetPath = fcTargetPath;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy