blob: 9739bf728b2489b80b74aec7899033ddbace8ad0 [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.juneau.dto.atom;
import static org.apache.juneau.xml.annotation.XmlFormat.*;
import org.apache.juneau.annotation.*;
import org.apache.juneau.xml.annotation.*;
/**
* Represents an <c>atomId</c> construct in the RFC4287 specification.
*
* <h5 class='figure'>Schema</h5>
* <p class='bcode w800'>
* atomId = element atom:id {
* atomCommonAttributes,
* (atomUri)
* }
* </p>
*
* <ul class='seealso'>
* <li class='link'>{@doc juneau-dto.Atom}
* <li class='jp'>{@doc package-summary.html#TOC}
* </ul>
*/
@Bean(typeName="id")
public class Id extends Common {
private String text;
/**
* Normal constructor.
*
* @param text The id element contents.
*/
public Id(String text) {
text(text);
}
/** Bean constructor. */
public Id() {}
//-----------------------------------------------------------------------------------------------------------------
// Bean properties
//-----------------------------------------------------------------------------------------------------------------
/**
* Returns the content of this identifier.
*
* @return The content of this identifier.
*/
@Xml(format=TEXT)
public String getText() {
return text;
}
/**
* Sets the content of this identifier.
*
* @param text The content of this identifier.
* @return This object (for method chaining).
*/
@Beanp("text")
public Id text(String text) {
this.text = text;
return this;
}
//-----------------------------------------------------------------------------------------------------------------
// Overridden setters (to simplify method chaining)
//-----------------------------------------------------------------------------------------------------------------
@Override /* Common */
public Id base(Object base) {
super.base(base);
return this;
}
@Override /* Common */
public Id lang(String lang) {
super.lang(lang);
return this;
}
}