~slub.team/goobi-production/bug-1013622

« back to all changes in this revision

Viewing changes to src/de/unigoettingen/sub/commons/util/datasource/SimpleUrlImage.java

  • Committer: Ralf Claussnitzer
  • Date: 2012-05-29 10:55:34 UTC
  • mfrom: (66.1.1 integrate-util)
  • Revision ID: ralf.claussnitzer@slub-dresden.de-20120529105534-t5u5vxj9x5v2vifb
fixes lp:1005844 integrate sub-commons util library

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is part of the SUB Commons  project.
 
3
 * Visit the websites for more information. 
 
4
 *              - http://gdz.sub.uni-goettingen.de 
 
5
 * 
 
6
 * Copyright 2009, Center for Retrospective Digitization, Göttingen (GDZ),
 
7
 * 
 
8
 * Licensed under the Apache License, Version 2.0 (the “License”);
 
9
 * you may not use this file except in compliance with the License.
 
10
 * You may obtain a copy of the License at
 
11
 * 
 
12
 *  http://www.apache.org/licenses/LICENSE-2.0
 
13
 * 
 
14
 * Unless required by applicable law or agreed to in writing, software
 
15
 * distributed under the License is distributed on an “AS IS” BASIS,
 
16
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
17
 * See the License for the specific language governing permissions and
 
18
 * limitations under the License.
 
19
 */
 
20
package de.unigoettingen.sub.commons.util.datasource;
 
21
 
 
22
import java.net.URL;
 
23
 
 
24
public class SimpleUrlImage extends AbstractUrlImage implements UrlImage {
 
25
        
 
26
        /**
 
27
         * Instantiates a new simple url image.
 
28
         * 
 
29
         * @param pageNumber the page number
 
30
         * @param url the url
 
31
         */
 
32
        public SimpleUrlImage (Integer pageNumber, URL url) {
 
33
                this.pagenumber = pageNumber;
 
34
                this.url = url;
 
35
        }
 
36
        
 
37
        /**
 
38
         * Instantiates a new simple url image.
 
39
         */
 
40
        public SimpleUrlImage () {
 
41
                
 
42
        }
 
43
        
 
44
        /**************************************************************************************
 
45
         * Setter for url
 
46
         *
 
47
         * @param url the imageurl to set
 
48
         **************************************************************************************/
 
49
        public void setURL(URL imageurl) {
 
50
                this.url = imageurl;
 
51
        }
 
52
        
 
53
        /**************************************************************************************
 
54
         * Setter for pdfpagenumber
 
55
         *
 
56
         * @param pagenumber the pdfpagenumber to set
 
57
         **************************************************************************************/
 
58
        public void setPageNumber(Integer pagenumber) {
 
59
                this.pagenumber = pagenumber;
 
60
        }
 
61
        
 
62
 
 
63
}