All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opencastproject.assetmanager.impl.persistence.QAssetDto Maven / Gradle / Ivy

There is a newer version: 16.7
Show newest version
package org.opencastproject.assetmanager.impl.persistence;

import static com.mysema.query.types.PathMetadataFactory.*;

import com.mysema.query.types.path.*;

import com.mysema.query.types.PathMetadata;
import javax.annotation.Generated;
import com.mysema.query.types.Path;
import com.mysema.query.types.path.PathInits;


/**
 * QAssetDto is a Querydsl query type for AssetDto
 */
@Generated("com.mysema.query.codegen.EntitySerializer")
public class QAssetDto extends EntityPathBase {

    private static final long serialVersionUID = 1287620099L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QAssetDto assetDto = new QAssetDto("assetDto");

    public final StringPath checksum = createString("checksum");

    public final NumberPath id = createNumber("id", Long.class);

    public final StringPath mediaPackageElementId = createString("mediaPackageElementId");

    public final StringPath mimeType = createString("mimeType");

    public final NumberPath size = createNumber("size", Long.class);

    public final QSnapshotDto snapshot;

    public final StringPath storageId = createString("storageId");

    public QAssetDto(String variable) {
        this(AssetDto.class, forVariable(variable), INITS);
    }

    public QAssetDto(Path path) {
        this(path.getType(), path.getMetadata(), path.getMetadata().isRoot() ? INITS : PathInits.DEFAULT);
    }

    public QAssetDto(PathMetadata metadata) {
        this(metadata, metadata.isRoot() ? INITS : PathInits.DEFAULT);
    }

    public QAssetDto(PathMetadata metadata, PathInits inits) {
        this(AssetDto.class, metadata, inits);
    }

    public QAssetDto(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this.snapshot = inits.isInitialized("snapshot") ? new QSnapshotDto(forProperty("snapshot")) : null;
    }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy