EmbeddedRepresentation.java 475 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.reef.siren;

import com.adobe.reef.siren.Entity;
import com.adobe.reef.siren.SubEntity;

public final class EmbeddedRepresentation
extends Entity
implements SubEntity {
    public EmbeddedRepresentation(String[] rel) throws IllegalArgumentException {
        if (rel == null || rel.length == 0) {
            throw new IllegalArgumentException("rel cannot be null or empty.");
        }
        this.rel = rel;
    }
}