summaryrefslogblamecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/thrift/ImageDetailsActions.java
blob: 716157234e9cfbb8d84c1fd39e88974d51d26001 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13

                                  










                                                              


                                                                 

                                                                                                

                                                                                                                                                                                                          

                                                                                                         
 
package org.openslx.dozmod.thrift;

import java.util.Map;

import org.apache.thrift.TException;
import org.openslx.bwlp.thrift.iface.ImageBaseWrite;
import org.openslx.bwlp.thrift.iface.ImagePermissions;
import org.openslx.bwlp.thrift.iface.ImageVersionDetails;
import org.openslx.bwlp.thrift.iface.TAuthorizationException;
import org.openslx.bwlp.thrift.iface.TInvocationException;
import org.openslx.bwlp.thrift.iface.TNotFoundException;
import org.openslx.bwlp.thrift.iface.UserInfo;
import org.openslx.dozmod.thrift.ThriftActions.DeleteCallback;
import org.openslx.dozmod.thrift.ThriftActions.ImageMetaCallback;

public interface ImageDetailsActions {
	public void getImageDetails(final String imageBaseId, final ImageMetaCallback callback);
	public boolean setImageOwner(final String imageBaseId, final UserInfo user);
	public void updateImageBase(final String imageBaseId, final ImageBaseWrite data) throws TException, TAuthorizationException, TNotFoundException, TInvocationException;
	public void writeImagePermissions(final String imageBaseId, Map<String, ImagePermissions> customPermissions) throws TException, TAuthorizationException, TNotFoundException, TInvocationException;
	public void deleteImageVersion(final ImageVersionDetails version, final DeleteCallback callback);
	public boolean canPublish();
}