Credit.java
/*
* Credit.java
*
* Created on April 18, 2006, 7:34 PM
*
* This code is currently released under the Mozilla Public License.
* http://www.mozilla.org/MPL/
*
* Alternately you may apply the terms of the Apache Software License
*
* Licensed 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 com.rometools.modules.mediarss.types;
import java.io.Serializable;
import com.rometools.rome.feed.impl.EqualsBean;
import com.rometools.rome.feed.impl.ToStringBean;
/**
*
* <strong><media:credit></strong></p>
*
* <p>
* Notable entity and the contribution to the creation of the media object. Current entities can
* include people, companies, locations, etc. Specific entities can have multiple roles, and several
* entities can have the same role. These should appear as distinct <media:credit> elements.
* It has 2 optional attributes.
* </p>
*
* <pre>
* <media:credit role="producer" scheme="urn:ebu">entity name</media:credit>
* </pre>
* <p>
* role specifies the role the entity played. Must be lowercase. It is an optional attribute.
* </p>
*
* <p>
* <em>scheme</em> is the URI that identifies the role scheme. It is an optional attribute. If this
* attribute is not included, the default scheme is 'urn:ebu'. See: European Broadcasting Union Role
* Codes.
* </p>
*
*
* <p>
* Example roles:
* </p>
*
* <pre>
* actor
* anchor person
* author
* choreographer
* composer
* conductor
* director
* editor
* graphic designer
* grip
* illustrator
* lyricist
* music arranger
* music group
* musician
* orchestra
* performer
* photographer
* producer
* reporter
* vocalist
* </pre>
* <p>
* Additional roles: <a
* href="http://www.ebu.ch/en/technical/metadata/specifications/role_codes.php">European
* Broadcasting Union Role Codes</a>
*/
public class Credit implements Serializable {
private static final long serialVersionUID = 1L;
/**
* Scheme value for the EBU credits.
*/
public static final String SCHEME_EBU = "urn:ebu";
private final String name;
private final String role;
private final String scheme;
/**
* @param scheme schem used
* @param role role name
* @param name persons name
*/
public Credit(final String scheme, final String role, final String name) {
if (name == null) {
throw new NullPointerException("A credit name cannot be null.");
}
this.scheme = scheme == null ? SCHEME_EBU : scheme;
this.role = role == null ? null : role.toLowerCase();
this.name = name;
}
/**
* Person/organizations name
*
* @return Person/organizations name
*/
public String getName() {
return name;
}
/**
* Role name
*
* @return Role name
*/
public String getRole() {
return role;
}
/**
* Scheme used.
*
* @return Scheme used.
*/
public String getScheme() {
return scheme;
}
@Override
public boolean equals(final Object obj) {
return EqualsBean.beanEquals(this.getClass(), this, obj);
}
@Override
public int hashCode() {
return EqualsBean.beanHashCode(this);
}
@Override
public String toString() {
return ToStringBean.toString(this.getClass(), this);
}
}