org.apache.shindig.extras.as.opensocial.model.ActionLink Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shindig-extras Show documentation
Show all versions of shindig-extras Show documentation
Provides extra, deprecated or extended functionality. The items here have unstable APIs and could change at any time.
The newest version!
/*
* 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.shindig.extras.as.opensocial.model;
import org.apache.shindig.protocol.model.Exportablebean;
import org.apache.shindig.extras.as.core.model.ActionLinkImpl;
import com.google.inject.ImplementedBy;
/*
* TODO: comment this class.
*/
/**
* ActionLink interface.
*
*/
@ImplementedBy(ActionLinkImpl.class)
@Exportablebean
public interface ActionLink {
/**
* Fields that represent JSON elements for an activity entry.
*/
public static enum Field {
TARGET("target"),
CAPTION("caption");
/*
* The name of the JSON element.
*/
private final String jsonString;
/*
* Constructs the field base for the JSON element.
*
* @param jsonString the name of the element
*/
private Field(String jsonString) {
this.jsonString = jsonString;
}
/*
* Returns the name of the JSON element.
*
* @return String the name of the JSON element
*/
public String toString() {
return jsonString;
}
}
/**
* Get the target of this action link
*
* @return a target
*/
String getTarget();
/**
* Set the target of this action link
*
* @param target a target
*/
void setTarget(String target);
/**
* Get the caption for this action link.
*
* @return a caption
*/
String getCaption();
/**
* Set the caption for this action link.
*
* @param caption a caption
*/
void setCaption(String caption);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy