org.apache.juneau.dto.atom.Common Maven / Gradle / Ivy
// ***************************************************************************************************************************
// * 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.juneau.dto.atom;
import static org.apache.juneau.common.internal.StringUtils.*;
import static org.apache.juneau.xml.annotation.XmlFormat.*;
import java.net.*;
import org.apache.juneau.internal.*;
import org.apache.juneau.xml.*;
import org.apache.juneau.xml.annotation.*;
/**
* Represents an atomCommonAttributes construct in the RFC4287 specification.
*
* Schema
*
* atomCommonAttributes =
* attribute xml:base { atomUri }?,
* attribute xml:lang { atomLanguageTag }?,
* undefinedAttribute*
*
*
* See Also:
*/
@FluentSetters
public abstract class Common {
private URI base;
private String lang;
//-----------------------------------------------------------------------------------------------------------------
// Bean properties
//-----------------------------------------------------------------------------------------------------------------
/**
* Bean property getter: base .
*
*
* The URI base of this object.
*
* @return The property value, or null if it is not set.
*/
@Xml(prefix="xml", format=ATTR)
public URI getBase() {
return base;
}
/**
* Bean property setter: term .
*
*
* The URI base of this object.
*
*
* The value can be of any of the following types: {@link URI}, {@link URL}, {@link String}.
* Strings must be valid URIs.
*
* @param value
* The new value for this property.
*
Can be null to unset the property.
* @return This object
*/
@FluentSetter
public Common setBase(Object value) {
this.base = toURI(value);
return this;
}
/**
* Bean property getter: lang .
*
*
* The language of this object.
*
* @return The property value, or null if it is not set.
*/
@Xml(prefix="xml", format=ATTR)
public String getLang() {
return lang;
}
/**
* Bean property setter: lang .
*
*
* The language of this object.
*
* @param value
* The new value for this property.
*
Can be null to unset the property.
* @return This object
*/
@FluentSetter
public Common setLang(String value) {
this.lang = value;
return this;
}
//
//
@Override /* Object */
public String toString() {
return XmlSerializer.DEFAULT_SQ.toString(this);
}
}