AT&T 2.0.19 Code drop, stage 5
[aaf/authz.git] / authz-gui / src / main / java / com / att / authz / gui / NamedCode.java
diff --git a/authz-gui/src/main/java/com/att/authz/gui/NamedCode.java b/authz-gui/src/main/java/com/att/authz/gui/NamedCode.java
deleted file mode 100644 (file)
index 90e1170..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2016 AT&T Intellectual Property. All rights reserved.
- *******************************************************************************/
-package com.att.authz.gui;
-
-import com.att.xgen.Code;
-import com.att.xgen.html.HTMLGen;
-
-
-
-public abstract class NamedCode implements Code<HTMLGen> {
-       public final boolean no_cache;
-       protected String[] idattrs;
-       
-       /*
-        *  Mark whether this code should not be cached, and any attributes 
-        */
-       public NamedCode(final boolean no_cache, String ... idattrs) {
-               this.idattrs = idattrs;
-               this.no_cache = no_cache;
-       }
-       
-       /**
-        * Return ID and Any Attributes needed to create a "div" section of this code
-        * @return
-        */
-       public String[] idattrs() {
-               return idattrs;
-       }
-
-}